/* ── SHOP — Styles spécifiques
   Variables héritées de vs_2.1/css/style.css :
   --lf-vert #2e8b35  --lf-orange #e86820  --lf-bleu #1e4fd0
   --lf-noir #1d1d1b  --lf-blanc #ffffff   --lf-creme #faf9f6
   --lf-nuage #f0f4f0 --lf-gris  #6b6b6b
   Font: Geometrik 300 + Arial fallback
──────────────────────────────────────────────────────────── */

/* ── Bande hero / breadcrumb ──────────────────────────────── */
.shop-hero {
  background: var(--lf-nuage);
  padding: 2rem 2rem 1.6rem;
  border-bottom: 1px solid #ede8e3;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.shop-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--lf-orange), var(--lf-vert), var(--lf-bleu),
    var(--lf-orange), var(--lf-vert), var(--lf-bleu));
  background-size: 400% 100%;
  animation: stripe-flow 12s linear infinite;
}
@keyframes stripe-flow { to { background-position: -400% 0; } }


.shop-hero h1 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  background: linear-gradient(90deg,
    var(--lf-orange), var(--lf-vert), var(--lf-bleu),
    var(--lf-orange), var(--lf-vert), var(--lf-bleu));
  background-size: 400% 100%;
  animation: stripe-flow 12s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shop-hero h1 .hero-count {
  -webkit-text-fill-color: var(--lf-gris);
  font-size: 1.1rem;
  font-weight: 300;
}

/* ── Filtres catégories ───────────────────────────────────── */
.shop-filters-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 0;
}
.shop-filters .nav-link {
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--lf-gris);
  border-radius: 2rem;
  padding: 0.38rem 1.1rem;
  transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
}
.shop-filters .nav-link:hover {
  background: var(--lf-nuage);
  color: var(--lf-vert);
}
.shop-filters .nav-link.active {
  background: var(--lf-vert);
  color: #fff;
  border-color: var(--lf-vert);
}
.shop-result-count {
  font-size: 0.78rem;
  color: var(--lf-gris);
  margin-top: 0.6rem;
}

/* ── Grille produits ──────────────────────────────────────── */
.shop-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--lf-blanc);
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.2s;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  transform: translateY(-2px);
  color: inherit;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--lf-nuage);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.3s;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lf-gris);
  font-size: 3rem;
  opacity: 0.25;
}

.badge-rupture {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(29,29,27,0.75);
  color: #fff;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.badge-featured {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--lf-orange);
  color: #fff;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2rem;
}

.product-card-body {
  padding: 0.7rem 0.85rem 0.9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lf-vert);
  margin-bottom: 0.2rem;
}
.product-name {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--lf-noir);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 0.4rem;
}
.product-price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lf-noir);
  letter-spacing: 0.02em;
}
.product-price-rupture { color: var(--lf-gris); }

/* ── Empty state ──────────────────────────────────────────── */
.shop-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--lf-gris);
}
.shop-empty i {
  font-size: 3.5rem;
  opacity: 0.2;
  display: block;
  margin-bottom: 1rem;
}
.shop-empty p {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* ── Fiche produit ────────────────────────────────────────── */
.product-detail-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem 5rem;
}

.product-gallery-main {
  aspect-ratio: 4 / 3;
  background: var(--lf-nuage);
  border-radius: 0.6rem;
  overflow: hidden;
  margin-bottom: 0.7rem;
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.18s, transform 0.3s ease;
}
.product-gallery-main:hover img {
  transform: scale(1.8);
}
@media (max-width: 768px) {
  .product-gallery-main { cursor: default; }
  .product-gallery-main:hover img { transform: none; }
  .product-gallery-main img { touch-action: pinch-zoom; }
}
.product-gallery-main .product-img-placeholder {
  aspect-ratio: unset;
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-gallery-thumb {
  width: 68px;
  height: 68px;
  border-radius: 0.35rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.18s;
  background: var(--lf-nuage);
  flex-shrink: 0;
}
.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery-thumb.active {
  border-color: var(--lf-vert);
}

/* ── Zoom lightbox ────────────────────────────────────────── */
.product-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 1200;
  align-items: center;
  justify-content: center;
}
.product-zoom-overlay.active { display: flex; }

.product-zoom-img {
  max-width: min(90vw, 960px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .15s;
  user-select: none;
}

.product-zoom-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
  padding: 0;
  z-index: 1;
}
.product-zoom-close:hover { opacity: 1; }

.product-zoom-prev,
.product-zoom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  padding: .55rem .9rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  z-index: 1;
}
.product-zoom-prev:hover,
.product-zoom-next:hover { background: rgba(255,255,255,.3); }
.product-zoom-prev { left: 1.2rem; }
.product-zoom-next { right: 1.2rem; }

@media (max-width: 576px) {
  .product-zoom-prev { left: .4rem; }
  .product-zoom-next { right: .4rem; }
}

.product-info-category {
  font-size: 0.71rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lf-vert);
  margin-bottom: 0.5rem;
}
.product-info-name {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--lf-noir);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.lf-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--lf-orange), var(--lf-vert));
  border-radius: 2px;
  margin: 0.8rem 0 1.2rem;
}
.product-info-price {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--lf-noir);
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.product-info-tva {
  font-size: 0.73rem;
  color: var(--lf-gris);
  margin-bottom: 1.2rem;
}

.product-stock-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--lf-vert);
  margin-bottom: 1.5rem;
}
.product-stock-low {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--lf-orange);
  margin-bottom: 1.5rem;
}
.product-stock-rupture {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--lf-gris);
  margin-bottom: 1.5rem;
}

/* Sélecteur quantité */
.qty-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: var(--lf-blanc);
  color: var(--lf-noir);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  user-select: none;
}
.qty-btn:first-child { border-radius: 0.35rem 0 0 0.35rem; }
.qty-btn:last-child  { border-radius: 0 0.35rem 0.35rem 0; }
.qty-btn:hover:not(:disabled) {
  background: var(--lf-nuage);
  color: var(--lf-vert);
  border-color: var(--lf-vert);
}
.qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty-input {
  width: 56px;
  height: 40px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--lf-noir);
  background: var(--lf-blanc);
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { appearance: none; }
.qty-input:focus { outline: none; border-color: var(--lf-vert); }

/* Bouton Ajouter au panier */
.btn-add-cart {
  background: var(--lf-vert);
  color: #fff;
  border: none;
  padding: 0.78rem 2rem;
  border-radius: 2rem;
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: background 0.15s, transform 0.08s, box-shadow 0.08s;
  user-select: none;
  width: 100%;
  max-width: 340px;
}
.btn-add-cart:hover:not(:disabled) {
  background: var(--lf-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,104,32,0.35);
}
.btn-add-cart:active:not(:disabled) {
  background: var(--lf-noir);
  transform: scale(0.96);
  box-shadow: none;
}
.btn-add-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Description produit */
.product-description {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--lf-gris);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ede8e3;
}
.product-description p { margin-bottom: 0.8rem; }
.product-description p:last-child { margin-bottom: 0; }

/* Back link */
.shop-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--lf-gris);
  text-decoration: none;
  margin-bottom: 1.8rem;
  transition: color 0.2s;
}
.shop-back-link:hover { color: var(--lf-vert); }

/* Compteur panier dans navbar */
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background: var(--lf-orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0 4px;
  margin-left: 2px;
  line-height: 1;
}

/* ── Page panier ──────────────────────────────────────────── */
.cart-table {
  font-size: 0.88rem;
  border-color: #ede8e3;
}
.cart-table thead th {
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lf-gris);
  border-bottom-color: #ede8e3;
  padding-bottom: 0.75rem;
}
.cart-table td {
  border-color: #f0ede8;
  padding: 0.9rem 0.6rem;
  vertical-align: middle;
}
.cart-col-del { width: 44px; }

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 0.35rem;
  overflow: hidden;
  background: var(--lf-nuage);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item-name {
  color: var(--lf-noir);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.18s;
}
.cart-item-name:hover { color: var(--lf-vert); }

.cart-line-total {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--lf-gris);
  cursor: pointer;
  padding: 0.3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s, background 0.18s;
  line-height: 1;
  font-size: 0.8rem;
}
.cart-remove-btn:hover {
  color: #c0392b;
  background: #fdf0ef;
}

/* Carte récapitulatif */
.cart-summary-card {
  background: var(--lf-blanc);
  border-radius: 0.6rem;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 80px;
}
.cart-summary-title {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--lf-noir);
  margin-bottom: 0;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--lf-gris);
  margin-bottom: 0.65rem;
}
.cart-summary-row span:last-child {
  font-weight: 600;
  color: var(--lf-noir);
}
.cart-summary-hr {
  border-color: #ede8e3;
  margin: 0.8rem 0;
}
.cart-summary-total {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.cart-summary-total span { color: var(--lf-noir) !important; font-size: 1.15rem; }
.cart-summary-tva {
  font-size: 0.72rem;
  color: var(--lf-gris);
  text-align: right;
  margin-bottom: 0;
}
.cart-shipping-hint {
  font-size: 0.75rem;
  color: var(--lf-gris);
  background: var(--lf-nuage);
  border-radius: 0.4rem;
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}
.cart-shipping-hint--free {
  background: #edf7ee;
  color: var(--lf-vert);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .shop-hero           { padding: 1.4rem 1rem 1.2rem; }
  .shop-hero h1        { font-size: 1.4rem; }
  .shop-filters-wrap   { padding: 1rem 0.75rem 0; }
  .shop-grid-wrap      { padding: 1rem 0.5rem 3rem; }
  .product-detail-wrap { padding: 1.2rem 0.75rem 3rem; }
  .product-info-name   { font-size: 1.4rem; }
  .product-info-price  { font-size: 1.35rem; }
  .btn-add-cart        { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   CHECKOUT
   ══════════════════════════════════════════════════════════ */

/* Section avec numéro d'étape */
.checkout-section {
  background: var(--lf-blanc);
  border-radius: 0.6rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
}
.checkout-section-title {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--lf-noir);
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checkout-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--lf-vert);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Form controls (override Bootstrap pour cohérence Geometrik) */
.checkout-section .form-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--lf-gris);
  margin-bottom: 0.3rem;
  font-family: 'Geometrik', Arial, sans-serif;
}
.checkout-section .form-control {
  font-family: 'Geometrik', Arial, sans-serif;
  font-size: 0.88rem;
  border-color: #ddd;
  border-radius: 0.35rem;
  background: var(--lf-blanc);
  color: var(--lf-noir);
  padding: 0.55rem 0.75rem;
}
.checkout-section .form-control:focus {
  border-color: var(--lf-vert);
  box-shadow: 0 0 0 0.18rem rgba(46,139,53,0.15);
  outline: none;
}
.checkout-section .form-control.is-invalid {
  border-color: #c0392b;
}
.invalid-feedback {
  font-size: 0.75rem;
  color: #c0392b;
  display: block;
  margin-top: 0.25rem;
}

/* ── Cartes de paiement ─────────────────────────────────── */
.payment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.payment-card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.8rem;
  border: 2px solid #ede8e3;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
}
.payment-card-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.payment-card-label:has(input:checked),
.payment-card-label.selected {
  border-color: var(--lf-vert);
  background: #edf7ee;
}
.payment-card-label.disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}
.payment-card-icon {
  font-size: 1.2rem;
  color: var(--lf-gris);
  transition: color 0.18s;
}
.payment-card-label:has(input:checked) .payment-card-icon,
.payment-card-label.selected .payment-card-icon {
  color: var(--lf-vert);
}
.payment-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--lf-noir);
}
.payment-card-sub {
  font-size: 0.75rem;
  color: var(--lf-gris);
}
.payment-soon {
  font-size: 0.64rem;
  background: var(--lf-gris);
  color: #fff;
  border-radius: 2rem;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}

/* ── Résumé commande (colonne droite, sticky) ───────────── */
.checkout-summary-card {
  background: var(--lf-blanc);
  border-radius: 0.6rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
  position: sticky;
  top: 80px;
}
.checkout-summary-title {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lf-gris);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #ede8e3;
}
.checkout-summary-sep {
  border-top: 1px solid #ede8e3;
  margin: 0.75rem 0;
}

/* Articles dans le résumé */
.checkout-items { margin-bottom: 0.25rem; }
.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f5f2ee;
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img {
  width: 46px;
  height: 46px;
  border-radius: 0.3rem;
  overflow: visible;
  background: var(--lf-nuage);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.checkout-item-img img {
  width: 46px;
  height: 46px;
  border-radius: 0.3rem;
  object-fit: cover;
  display: block;
}
.checkout-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--lf-vert);
  color: #fff;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.checkout-item-name {
  flex: 1;
  font-size: 0.83rem;
  color: var(--lf-noir);
  line-height: 1.35;
}
.checkout-item-price {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--lf-noir);
  white-space: nowrap;
}

/* Total + TVA note */
.checkout-total-row {
  font-weight: 600;
  font-size: 1rem;
  color: var(--lf-noir);
  padding-top: 0.5rem;
}
.checkout-tva-note {
  font-size: 0.72rem;
  color: var(--lf-gris);
  margin: 0.4rem 0 0;
  text-align: right;
}

/* ══════════════════════════════════════════════════════════
   CONFIRMATION
   ══════════════════════════════════════════════════════════ */

/* Bannière verte */
.confirmation-banner {
  background: linear-gradient(135deg, var(--lf-vert) 0%, #3aa842 100%);
  color: #fff;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}
.confirmation-check {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.confirmation-banner h1 {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.confirmation-banner p {
  font-size: 0.9rem;
  opacity: 0.92;
  margin: 0;
  line-height: 1.6;
}
.confirmation-ref {
  font-size: 0.8rem;
  opacity: 0.82;
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
}

/* Zone contenu */
.confirmation-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1rem 5rem;
}

/* Bloc IBAN */
.iban-block {
  background: #edf7ee;
  border-left: 4px solid var(--lf-vert);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.4rem 1.6rem;
}
.iban-block h3 {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--lf-vert);
  margin-bottom: 0.9rem;
}
.iban-table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}
.iban-table td {
  padding: 0.28rem 0;
  vertical-align: top;
}
.iban-table td:first-child {
  color: var(--lf-gris);
  width: 100px;
  padding-right: 1rem;
  white-space: nowrap;
}
.iban-table strong {
  letter-spacing: 0.03em;
}

/* Cartes de résumé (livraison, paiement) */
.confirmation-summary-card {
  background: var(--lf-blanc);
  border-radius: 0.6rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.055);
}
.confirmation-summary-title {
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lf-gris);
  margin: 0 0 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ede8e3;
}

/* Articles confirmation */
.confirmation-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f5f2ee;
  gap: 0.75rem;
}
.confirmation-item:last-child { border-bottom: none; }
.confirmation-item-qty {
  font-size: 0.75rem;
  color: var(--lf-gris);
}

/* Adresse client */
.customer-summary {
  font-size: 0.85rem;
  color: var(--lf-gris);
  line-height: 1.7;
}
.customer-summary strong {
  color: var(--lf-noir);
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

/* Date commande */
.confirmation-date {
  font-size: 0.75rem;
  color: var(--lf-gris);
  margin-top: 0.5rem;
  text-align: right;
}

/* ── Responsive checkout / confirmation ───────────────────── */
@media (max-width: 576px) {
  .payment-cards        { grid-template-columns: 1fr; }
  .confirmation-banner  { padding: 2rem 1rem 1.75rem; }
  .confirmation-banner h1 { font-size: 1.3rem; }
  .confirmation-wrap    { padding: 1.5rem 0.75rem 3rem; }
  .checkout-section     { padding: 1.2rem 1rem; }
  .checkout-summary-card { position: static; }
}

#paypal-button-container .paypal-buttons {
    display: inline-block !important;
    width: auto !important;
}

.checkout-back-link {
    text-decoration: none;
    color: #6c757d;
}
.checkout-back-link:hover {
    text-decoration: underline;
}

/* ── Page maintenance ─────────────────────────────────────── */

.maintenance-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  text-align: center;
  background: var(--lf-nuage);
}

.maintenance-inner {
  max-width: 560px;
  width: 100%;
}

.maintenance-icon {
  font-size: 3.5rem;
  color: var(--lf-orange);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.maintenance-heading {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--lf-noir);
  margin-bottom: 0.75rem;
}

.maintenance-sub {
  color: var(--lf-gris);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.maintenance-newsletter {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border: 1px solid #ede8e3;
  margin-bottom: 2rem;
}

.maintenance-notify-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lf-noir);
  margin-bottom: 1rem;
}

.maintenance-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lf-gris);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
}

.maintenance-back-link:hover { color: var(--lf-vert); }

/* ── Navbar mobile — shop ──────────────────────────────────── */

@media (max-width: 768px) {
    /* Panier fixé en haut à droite (lang-dropdown absent dans le shop) */
    .lf-navbar--shop .cart-btn[href="cart.php"] {
        position: fixed;
        top: 0.65rem;
        right: 0.8rem;
        z-index: 600;
        padding: 0.38rem 0.75rem;
    }
}
