@font-face {
  font-family: 'Bezmiar';
  src: url('fonts/Bezmiar-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --ink: #141414;
  --muted: #6f6a63;
  --line: #e9e4dd;
  --accent: #b4946b;
  --accent-dark: #96764d;
  --light: #f7f5f1;
  --font-body: "Montserrat", sans-serif;
  --font-display: "Playfair Display", serif;
  --font-bezmiar: "Bezmiar", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  scroll-padding-top: 92px;
}

@media (prefers-reduced-motion: no-preference) {
  a[href^="#"] { scroll-behavior: smooth; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

.text-accent { color: var(--accent); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 500;
}

.section { padding: 5.5rem 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  --nav-color: #ffffff;
  --nav-bg: transparent;
  background: var(--nav-bg);
  transition: background .45s ease, box-shadow .45s ease;
}

.site-header.scrolled {
  --nav-color: var(--ink);
  --nav-bg: rgba(255, 255, 255, .92);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .navbar { padding: 1.1rem 0; transition: padding .45s ease; }
.site-header.scrolled .navbar { padding: .65rem 0; }

.site-header .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}
.site-header .navbar-brand img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform .3s ease;
}
.site-header .navbar-brand:hover img {
  transform: scale(1.03);
}

.site-header .nav-link {
  color: var(--nav-color);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: .5rem 1.1rem !important;
  position: relative;
  transition: color .3s;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 1.1rem; right: 1.1rem; bottom: .2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.site-header .nav-link:hover { color: var(--accent); }
.site-header .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: .4rem;
}
.navbar-toggler:focus { outline: none; }

.navbar-toggler .burger {
  display: inline-block;
  width: 22px;
  height: 14px;
  position: relative;
}
.navbar-toggler .burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--nav-color);
  transition: background .3s;
}
.navbar-toggler .burger span:nth-child(1) { top: 0; }
.navbar-toggler .burger span:nth-child(2) { top: 6px; }
.navbar-toggler .burger span:nth-child(3) { top: 12px; }

.navbar-collapse.show {
  background: rgba(255, 255, 255, .97);
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}
.navbar-collapse.show .nav-link { color: var(--ink); }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--nav-color);
  padding: .4rem;
  line-height: 0;
  transition: color .3s, transform .3s;
}
.cart-btn:hover { color: var(--accent); transform: translateY(-1px); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--accent);
  color: #fff;
  font-size: .64rem;
  font-weight: 600;
  line-height: 18px;
  border-radius: 999px;
  text-align: center;
  display: none;
}
.cart-badge.visible { display: inline-block; }
.cart-badge.bump { animation: bump .45s ease; }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background:
    linear-gradient(to right, rgba(10, 10, 10, .68), rgba(10, 10, 10, .25)),
    url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?q=80&w=1900&auto=format&fit=crop") center/cover no-repeat;
}

.hero-content { max-width: 640px; padding-top: 80px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  font-weight: 500;
  margin: 1.2rem 0 1.4rem;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .82);
  max-width: 46ch;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .75);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.hero-scroll .line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .6);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ---------- Buttons ---------- */
.btn-lux {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: .95rem 2.4rem;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.btn-lux:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(180, 148, 107, .35);
}

.btn-lux-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}
.btn-lux-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--light);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-strip .divider { color: var(--accent); margin: 0 1.2rem; }

/* ---------- Audience Nav ---------- */
.audience-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: .6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.audience-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}

.audience-link {
  border: none;
  background: transparent;
  padding: .45rem 1.1rem;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-radius: 999px;
  transition: all .2s;
}

.audience-link:hover {
  color: var(--accent);
}

.audience-link.active {
  background: var(--accent);
  color: #fff;
}

.audience-dropdown {
  position: relative;
}

.audience-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  padding: 6px;
  min-width: 140px;
  z-index: 110;
  margin-top: 6px;
}

.audience-dropdown.open .audience-sub {
  display: block;
}

.audience-sub-link {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: .5rem 1rem;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}

.audience-sub-link:hover {
  background: var(--light);
  color: var(--accent);
}

/* ---------- Filters ---------- */
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: .6rem 1.6rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ---------- Size selector (quick add) ---------- */
.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
  gap: .55rem;
}
.size-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: .65rem 0;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 500;
  transition: all .25s ease;
}
.size-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(0,0,0,.03);
}
.size-chip:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ---------- Products ---------- */
.product-card {
  border: none;
  background: transparent;
  transition: transform .35s ease;
  height: 100%;
}

.product-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--light);
  aspect-ratio: 4 / 5;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.19, 1, .22, 1);
}

.product-card:hover .product-thumb img { transform: scale(1.09); }

.product-thumb .quick {
  position: absolute;
  inset: auto 0 0 0;
  padding: .8rem;
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(.19, 1, .22, 1);
}
.product-card:hover .quick { transform: translateY(0); }

.quick .btn-lux { width: 100%; padding: .75rem 1rem; font-size: .72rem; box-shadow: 0 10px 25px rgba(0,0,0,.3); }
.quick .btn-lux:hover { transform: translateY(0); }

.product-body { padding: 1.1rem 0 0; }

.product-cat {
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  margin: .25rem 0 .2rem;
}

.product-price {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 400;
}

.fade-in { opacity: 0; animation: fadeUp .7s ease forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Banner ---------- */
.banner {
  background:
    linear-gradient(rgba(10, 10, 10, .55), rgba(10, 10, 10, .55)),
    url("https://images.unsplash.com/photo-1600185365926-3a2ce3cdb9eb?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #101010;
  color: #a9a49d;
  font-size: .88rem;
  font-weight: 300;
}
.site-footer a {
  color: #a9a49d;
  text-decoration: none;
  transition: color .3s;
}
.site-footer a:hover { color: var(--accent); }

.footer-brand {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: .3em;
  font-weight: 600;
}

.site-footer .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}
.site-footer .navbar-brand img {
  height: 40px;
  width: auto;
  display: block;
  transition: transform .3s ease;
}
.site-footer .navbar-brand:hover img {
  transform: scale(1.03);
}

.site-footer .footer-title {
  color: #fff;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.site-footer .footer-link { display: inline-block; padding: .28rem 0; }

.site-footer hr { border-color: rgba(255,255,255,.12); }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  transition: all .3s ease;
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.newsletter-input {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  color: #fff;
  padding: .8rem 1rem;
  font-size: .85rem;
  transition: border-color .3s;
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: none;
}
.newsletter-input::placeholder { color: #77726b; }

.bottom-bar { font-size: .75rem; letter-spacing: .12em; }

/* ---------- Cart modal / toast ---------- */
.modal-content {
  border: none;
  border-radius: 6px;
}
.cart-item { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.cart-item .qty-btn { width: 28px; height: 28px; font-size: .95rem; }
.cart-item .qty-display { min-width: 22px; font-size: .9rem; }
.cart-item img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 3px;
}
.cart-item .name { font-size: .9rem; font-weight: 500; }
.cart-item .meta { font-size: .8rem; color: var(--muted); }
.cart-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  transition: color .3s, transform .3s;
}
.cart-remove:hover { color: #b02a2a; transform: scale(1.15); }

.toast {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: .85rem;
  letter-spacing: .04em;
}
.toast .toast-body { display: flex; align-items: center; gap: .6rem; }

@media (max-width: 991.98px) {
  .navbar-collapse.show { margin-top: .6rem; }
}

/* ---------- Product links ---------- */
.product-card a { color: inherit; text-decoration: none; }
.product-name { transition: color .3s; }
.product-card:hover .product-name { color: var(--accent); }

/* ---------- Product page ---------- */
.product-page {
  padding-top: 9.5rem;
  padding-bottom: 5.5rem;
}

.product-hero-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(20, 20, 20, .22);
}

.product-gallery {
  position: relative;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  color: #222;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  transition: background .2s, transform .2s;
}

.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color .2s;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0, 0, 0, .5);
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .25);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  letter-spacing: .12em;
}

.product-price-lg {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--accent);
}

.stock-msg {
  font-size: .82rem;
  font-weight: 500;
  margin-top: .4rem;
  letter-spacing: .04em;
}

.stock-out {
  color: #b02a2a;
}

.stock-low {
  color: #c47b1a;
}

.stock-ok {
  color: #3a7d44;
}

.product-page .form-label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.size-select {
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  padding: .8rem 2.5rem .8rem 1rem;
  font-size: .9rem;
  width: 100%;
  max-width: 260px;
  transition: border-color .3s;
}
.size-select:focus {
  border-color: var(--accent);
  box-shadow: none;
  outline: none;
}

.error-box {
  text-align: center;
  padding: 4rem 0;
}

/* ---------- Cart page ---------- */
.cart-page {
  padding-top: 9.5rem;
  padding-bottom: 5.5rem;
}

.cart-page-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.cart-page-count {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.cart-line {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.cart-line img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 3px;
  background: var(--light);
}
.cart-line-info { flex: 1 1 170px; min-width: 170px; }
.cart-line-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}
.cart-line-unit { font-size: .82rem; color: var(--muted); margin: .2rem 0 0; }

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.qty-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.qty-display { min-width: 28px; text-align: center; font-weight: 500; font-size: .95rem; }

.cart-line-total {
  min-width: 96px;
  text-align: right;
  font-weight: 500;
  font-size: .98rem;
}

.empty-cart { padding: 3.5rem 0 4.5rem; }
.empty-cart-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.summary-card {
  position: sticky;
  top: 110px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.8rem;
}
.summary-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--muted);
}
.summary-row strong { color: var(--ink); font-weight: 500; }
.summary-total {
  border-top: 1px solid var(--line);
  margin-top: .5rem;
  padding-top: 1rem;
  color: var(--ink);
}
.summary-total strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.promo-block { margin: 1.3rem 0 1.4rem; }
.promo-block label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.promo-input {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  padding: .7rem .9rem;
  font-size: .85rem;
  text-transform: uppercase;
  transition: border-color .3s;
}
.promo-input:focus { border-color: var(--accent); outline: none; box-shadow: none; }
.promo-msg { display: block; font-size: .8rem; margin-top: .45rem; }

.reassurance {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  display: grid;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
}
.reassurance span { display: flex; align-items: center; gap: .55rem; }
.reassurance svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 575.98px) {
  .cart-line { gap: .9rem; }
  .cart-line img { width: 72px; height: 72px; }
}

/* --- Correctif CLS Image Produit --- */
.product-hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

/* --- Bloc Réassurance & Accessibilité --- */
.product-trust {
  font-size: 0.8rem;
  color: #6f6a63;
  border-top: 1px solid #e9e4dd;
  padding-top: 1.25rem;
}

.product-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.size-guide-link {
  color: #141414;
  text-decoration: underline;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.size-guide-link:hover {
  color: #b4946b;
}

/* --- Adaptation boutons Quick-Add sur Mobile (Sans hover) --- */
@media (hover: none) {
  .product-thumb .quick {
    transform: translateY(0);
  }
  .quick .btn-lux {
    opacity: 1;
  }
}

/* ---------- Checkout page ---------- */
.checkout-page {
  padding-top: 9.5rem;
  padding-bottom: 5.5rem;
}

.checkout-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.checkout-heading .text-muted { font-size: .85rem; letter-spacing: .08em; }
.checkout-heading .btn-ghost { padding: .65rem 1.4rem; font-size: .72rem; }

.checkout-step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.checkout-step-title .step-num {
  color: var(--accent);
  font-size: .95rem;
  letter-spacing: .1em;
}

.checkout-page .form-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.checkout-input {
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  padding: .75rem 1rem;
  font-size: .9rem;
  background-color: #fff;
  transition: border-color .3s, box-shadow .3s;
}
.checkout-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 148, 107, .15);
}
.checkout-input:disabled { background-color: var(--light); color: var(--muted); }

.payment-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  background: #fff;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.payment-option.selected {
  border-color: var(--accent);
  background: var(--light);
}
.payment-option .form-check-label { font-weight: 500; font-size: .92rem; }
.payment-option .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.payment-note { font-size: .82rem; color: var(--muted); }

.delivery-options-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.delivery-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .85rem 1rem;
  background: #fff;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.delivery-option.selected {
  border-color: var(--accent);
  background: var(--light);
}
.delivery-option .form-check-label { font-weight: 500; font-size: .92rem; cursor: pointer; }
.delivery-option .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.delivery-price { font-size: .82rem; font-weight: 600; color: var(--accent); white-space: nowrap; }
.delivery-price.free { color: #1a7a3c; }
.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .32rem .7rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: .8rem;
  color: #fff;
  background: #003087;
  flex-shrink: 0;
}
.applepay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 6px;
  padding: .55rem 1.3rem;
  font-size: .95rem;
  font-weight: 500;
}
.card-fields { animation: fadeIn .3s ease; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.order-summary {
  position: sticky;
  top: 110px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.8rem;
}
.order-summary-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.order-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.order-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  background: #fff;
}
.order-item-info { flex: 1 1 auto; min-width: 0; }
.order-item-name {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 500;
  margin: 0;
}
.order-item-meta { font-size: .78rem; color: var(--muted); margin: .1rem 0 0; }
.order-item-right { text-align: right; flex-shrink: 0; }
.order-item-price { font-size: .9rem; font-weight: 500; display: block; }
.order-item .qty-btn { width: 28px; height: 28px; font-size: .95rem; }
.order-item .qty-display { min-width: 22px; font-size: .9rem; }

.order-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--muted);
}
.order-total-line strong { color: var(--ink); font-weight: 500; }
.order-total-grand {
  border-top: 1px solid var(--line);
  margin-top: .5rem;
  padding-top: 1rem;
  color: var(--ink);
  font-size: 1rem;
}
.order-total-grand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.btn-pay {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 1.2rem 1.5rem;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
}
.btn-pay:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(180, 148, 107, .35);
}
.btn-pay:disabled { opacity: .7; }

.checkout-trust {
  border-top: 1px solid var(--line);
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  font-size: .78rem;
  color: var(--muted);
  display: grid;
  gap: .4rem;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== YODAS REBRAND — NEW STYLES ========== */

/* --- Announcement bar : fixe au-dessus du header, messages rotatifs --- */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1035;
  background: #c62f3f;
  color: #fff;
  text-align: center;
  padding: 0.6rem 3rem;
  min-height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.announcement-slide {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transition: opacity .3s ease;
}
.announcement-slide.is-leaving { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .announcement-slide { transition: none; }
}
/* Repli sans JS : texte complet desktop / court mobile */
.announcement-bar .announcement-short { display: none; }
@media (max-width: 576px) {
  .announcement-bar .announcement-full { display: none; }
  .announcement-bar .announcement-short { display: inline; }
  .announcement-bar { font-size: 0.84rem; padding: 0.55rem 1rem; }
}

/* --- Price promo styles (Mission E) --- */
.price-current {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
}
.price-old {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}
.price-promo {
  font-size: 1rem;
  color: #dc2626;
  font-weight: 600;
}
.badge-discount-inline {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50rem;
  line-height: 1.3;
  vertical-align: middle;
}
.badge-discount {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  border-radius: 50rem;
  color: #fff;
  background: #dc2626;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(220,38,38,.35);
  animation: promo-pulse 2s ease-in-out infinite;
}
@keyframes promo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(220,38,38,.35); }
  50% { transform: scale(1.06); box-shadow: 0 4px 14px rgba(220,38,38,.45); }
}
.product-price-promo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* --- Promo section (Mission D) --- */
.promo-section {
  padding: 5.5rem 0;
}
.promo-section .section-title {
  position: relative;
  display: inline-block;
}
.promo-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #dc3545;
  border-radius: 2px;
}
.promo-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
.promo-scroll::-webkit-scrollbar {
  height: 4px;
}
.promo-scroll::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 2px;
}
.promo-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}
.promo-scroll .product-card {
  min-width: 75%;
  scroll-snap-align: start;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .promo-scroll .product-card {
    min-width: 45%;
  }
}
@media (min-width: 768px) {
  .promo-scroll .product-card {
    min-width: 30%;
  }
}
@media (min-width: 992px) {
  .promo-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
  }
  .promo-scroll .product-card {
    min-width: unset;
  }
}
.promo-section .product-thumb {
  position: relative;
}

/* --- Categories grid (Mission A3) --- */
.categories-section {
  padding: 5.5rem 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background-color: #f7f7f7;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  transition: background 0.3s ease;
  z-index: 1;
}
.category-card:hover .category-card-overlay {
  background: transparent;
}
.category-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 4px rgba(10,10,10,0.6);
}

/* --- Footer restructured (Mission A4) --- */
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2.5rem;
  }
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* --- Scroll horizontal mobile for product grids --- */
@media (max-width: 575.98px) {
  .scroll-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .scroll-mobile .product-card,
  .scroll-mobile .category-card {
    min-width: 75%;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* --- Old nav-style-link class for new nav --- */
.nav-link-new {
  color: var(--nav-color);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.5rem 1.1rem;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.nav-link-new::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-link-new:hover {
  color: var(--accent);
}
.nav-link-new:hover::after {
  transform: scaleX(1);
}
.site-header.scrolled .nav-link-new {
  color: var(--ink);
}

/* --- News pages: product page detail price promo --- */
.product-promo-save {
  font-size: 0.85rem;
  color: #3a7d44;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* --- Revised product-thumb badge positioning --- */
.product-thumb {
  position: relative;
}
.product-thumb .badge-discount {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
}

/* --- Suivi de commande --- */
.suivi-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.suivi-error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.suivi-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.suivi-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.75rem;
}
.suivi-step:last-child {
  padding-bottom: 0;
}
.suivi-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: 4px;
  width: 2px;
  background: var(--line);
}
.suivi-step.done:not(:last-child)::before,
.suivi-step.current:not(:last-child)::before {
  background: var(--accent);
}

.suivi-step-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--light);
  color: var(--muted);
  font-size: 0.95rem;
  z-index: 1;
}
.suivi-step.done .suivi-step-icon,
.suivi-step.current .suivi-step-icon {
  border-color: var(--accent);
  color: #fff;
}
.suivi-step.done .suivi-step-icon {
  background: var(--accent);
}
.suivi-step.current .suivi-step-icon {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(180, 148, 107, 0.25);
}

.suivi-step-body {
  padding-top: 0.35rem;
}
.suivi-step-label {
  font-weight: 500;
  color: var(--muted);
}
.suivi-step.done .suivi-step-label,
.suivi-step.current .suivi-step-label {
  color: var(--ink);
}
.suivi-step-state {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 0.15rem;
}

.suivi-totals {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.suivi-link-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 500;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1fb855;
  color: #fff;
}

.payment-option.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.payment-option.disabled .form-check-input,
.payment-option.disabled .form-check-label {
  cursor: not-allowed;
}

.badge-soon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--accent-dark);
  border: 1px solid var(--line);
  margin-left: 0.5rem;
  vertical-align: middle;
}
