/* ============================================================
   MADEMOISELLE BOBÙN — commande à emporter (partagé 2 pages)
   ============================================================ */

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 237, 224, .1);
}

.choix-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--caramel);
  font-variant-numeric: tabular-nums;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(244, 237, 224, .22);
  border-radius: 999px;
  padding: 4px;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ivoire);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.qty-btn:hover { background: var(--caramel); color: var(--noir); }

.qty-n {
  min-width: 26px;
  text-align: center;
  font-family: var(--mono);
  font-size: .95rem;
}

.choix-card.in-cart { border-color: rgba(232, 145, 45, .55); }

/* --- panier --- */

.order-box {
  max-width: 560px;
  margin: 0 auto 6vh;
  background: var(--glass-bg);
  border: 1px solid rgba(232, 145, 45, .35);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.order-pickup-note {
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, .85);
  background: rgba(232, 145, 45, .08);
  border: 1px solid rgba(232, 145, 45, .25);
  border-radius: 12px;
  padding: 12px 16px;
}

.order-pickup-note strong { color: var(--caramel); font-weight: 600; }

.order-lines { display: flex; flex-direction: column; gap: 8px; }

.order-line-sup { color: rgba(244, 237, 224, .65); font-size: .88rem; }

.order-sups-label {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .14em;
  color: rgba(244, 237, 224, .55);
  margin-top: 6px;
}

.order-sups { display: flex; flex-direction: column; gap: 6px; }

.order-sup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sup-name {
  font-weight: 300;
  font-size: .9rem;
  color: rgba(244, 237, 224, .85);
}

.sup-name em { font-style: normal; color: var(--caramel); font-weight: 600; }

.qty-s { padding: 2px; }
.qty-s .qty-btn { width: 28px; height: 28px; font-size: 1rem; }
.qty-s .qty-n { min-width: 20px; font-size: .85rem; }

#order-wa {
  width: 100%;
  background: rgba(244, 237, 224, .06);
  border: 1px solid rgba(244, 237, 224, .16);
  border-radius: 12px;
  color: var(--ivoire);
  font-family: var(--mono);
  font-size: .95rem;
  letter-spacing: .06em;
  padding: 12px 14px;
}

#order-wa:focus-visible { outline: 2px solid var(--caramel); outline-offset: 2px; }

.order-line {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: .95rem;
  color: rgba(244, 237, 224, .88);
  font-variant-numeric: tabular-nums;
}

.order-note-label {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .14em;
  color: rgba(244, 237, 224, .55);
  margin-top: 4px;
}

#order-note {
  width: 100%;
  background: rgba(244, 237, 224, .06);
  border: 1px solid rgba(244, 237, 224, .16);
  border-radius: 12px;
  color: var(--ivoire);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .92rem;
  line-height: 1.5;
  padding: 12px 14px;
  resize: vertical;
  min-height: 52px;
}

#order-note:focus-visible { outline: 2px solid var(--caramel); outline-offset: 2px; }

.btn-stripe {
  justify-content: center;
  background: var(--caramel);
  color: var(--noir);
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-stripe:disabled { opacity: .6; cursor: wait; transform: none; }

.btn-stripe.is-loading::after { content: '…'; }

.order-hint {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .13em;
  color: rgba(244, 237, 224, .45);
  text-align: center;
}

.order-error {
  font-size: .88rem;
  color: #ff9d7a;
  text-align: center;
}

@media (max-width: 820px) {
  .order-box { margin-left: 5vw; margin-right: 5vw; }
}

.order-box[hidden] { display: none; }
