/* ============================================================
   VEYRYS — Le Sublime Raisonnable
   Design System: Minimal Luxury
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --cream-dark: #EFEBE2;
  --gold: #B8963E;
  --gold-light: #D4AF67;
  --gold-dark: #8A6D24;
  --grey-100: #F2F2F2;
  --grey-200: #E5E5E5;
  --grey-400: #AAAAAA;
  --grey-600: #666666;
  --grey-800: #333333;
  --danger: #C0392B;

  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-serif: 'Lora', serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1280px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(15px, 0.35vw + 13.5px, 17px);
  overflow-x: clip;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

input,
select,
textarea,
button {
  font-family: inherit;
  max-width: 100%;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--black);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
}

p {
  font-size: clamp(0.9rem, 0.25vw + 0.82rem, 1rem);
  color: var(--grey-600);
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--grey-400);
}

.text-sm {
  font-size: 0.8rem;
}

.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-center {
  text-align: center;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.2vw + 0.66rem, 0.82rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: transparent;
  color: var(--black);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.72rem;
}

.btn-full {
  width: 100%;
}

/* ---------- LINK ---------- */
.link {
  color: var(--grey-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(247, 245, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  transition: transform 0.25s ease;
}

#site-header.site-header--hidden {
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

/* --- Search Bar --- */
.navbar__search {
  flex: 1;
  max-width: 620px;
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__search-icon {
  position: absolute;
  left: 1rem;
  color: var(--grey-400);
  font-size: 0.85rem;
}

.navbar__search input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  color: var(--black);
  transition: all var(--transition);
}

.navbar__search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.15);
}

.ajax-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 0.5rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.ajax-search-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--grey-200);
  transition: background-color var(--transition);
  text-decoration: none;
  color: var(--black);
}

.ajax-search-item:last-child {
  border-bottom: none;
}

.ajax-search-item:hover {
  background-color: var(--cream);
}

.ajax-search-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.ajax-search-img-placeholder {
  width: 48px;
  height: 48px;
  background-color: var(--grey-200);
  border-radius: var(--radius-sm);
}

.ajax-search-details {
  flex: 1;
}

.ajax-search-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.ajax-search-cat {
  font-size: 0.7rem;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ajax-search-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.ajax-search-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--grey-600);
  font-size: 0.85rem;
}

/* --- Nav Links --- */
.navbar__nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__nav a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-600);
  transition: color var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--black);
}

/* --- Actions Area --- */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* --- Dropdowns (Language & Country) --- */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1.5px solid rgba(184, 150, 62, 0.15);
  border-radius: 100px;
  color: var(--grey-600);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* Shine sweep */
.navbar__dropdown-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(184, 150, 62, 0.1) 50%, transparent 100%);
  transition: left 0.5s ease;
  pointer-events: none;
}

.navbar__dropdown-btn:hover::before {
  left: 125%;
}

.navbar__dropdown-btn:hover,
.navbar__dropdown-btn:focus {
  color: var(--black);
  background: linear-gradient(135deg, rgba(248, 245, 238, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(184, 150, 62, 0.12);
}

.navbar__dropdown-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(184, 150, 62, 0.1);
}

.navbar__dropdown-btn i.fa-globe,
.navbar__flag {
  font-size: 1rem;
  color: var(--gold);
  transition: color 0.3s ease;
}

.navbar__dropdown-btn:hover i.fa-globe,
.navbar__dropdown-btn:hover .navbar__flag {
  color: var(--gold);
  text-shadow: 0 0 6px rgba(184, 150, 62, 0.3);
}

.navbar__dropdown-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
}

.navbar__dropdown-sublabel {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.navbar__dropdown-arrow {
  font-size: 0.55rem;
  color: var(--gold);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.7;
}

.navbar__dropdown.is-open .navbar__dropdown-arrow {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.6rem;
  width: 220px;
  background: linear-gradient(160deg, #ffffff 0%, #faf8f3 100%);
  border: 1.5px solid rgba(184, 150, 62, 0.15);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(184, 150, 62, 0.05);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.17, 0.84, 0.44, 1);
  z-index: 1000;
}

.navbar__dropdown.is-open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  color: var(--grey-600);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.navbar__dropdown-item:hover {
  background: rgba(184, 150, 62, 0.08);
  color: var(--black);
  transform: translateX(3px);
}

.navbar__dropdown-item.active {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);
  color: var(--white);
  font-weight: 600;
}

/* --- Connexion --- */
.navbar__connexion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: var(--cream);
  transition: all var(--transition);
}

.navbar__connexion:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(184, 150, 62, 0.15);
  transform: translateY(-1px);
}

/* --- Cart --- */
.cart-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0.5rem;
  color: var(--black);
  transition: all var(--transition);
}

.cart-btn:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.cart-btn i {
  font-size: 1.3rem;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid var(--white);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ═══ Flying Icon Animation ═══ */
.flying-icon {
  position: fixed;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cda85c, #e8c87a);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(205, 168, 92, 0.5);
  transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flying-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes flySpawn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.flying-icon--spawning {
  animation: flySpawn 0.3s ease forwards;
}

/* Cart bounce */
@keyframes cartBounce {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1.35);
  }

  40% {
    transform: scale(0.85);
  }

  60% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.cart-btn.is-bouncing {
  animation: cartBounce 0.6s ease;
}

/* Badge pop */
@keyframes badgePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.6);
  }

  100% {
    transform: scale(1);
  }
}

.cart-count.is-popping {
  animation: badgePop 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Cart check badge */
.cart-check-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: checkAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.4);
}

.cart-check-badge svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes checkAppear {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Button "Already in cart" state */
.product-card__btn-added {
  flex: 2.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  background: transparent;
  color: #27ae60;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #27ae60;
  border-radius: 50px;
  cursor: default;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.product-card__btn-added svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #27ae60;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Hamburger Mobile Menu --- */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.2s ease;
}

.navbar__hamburger:hover,
.navbar__hamburger:focus-visible {
  background-color: rgba(184, 150, 62, 0.08);
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
  position: relative;
  transform-origin: 1px;
}

.navbar__hamburger.is-open span:first-child {
  transform: rotate(45deg);
}

.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-open span:last-child {
  transform: rotate(-45deg);
}

/* --- Mobile Menu Panel --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100dvh;
  background: var(--white);
  z-index: 2000;
  padding: 0 2rem;
  box-shadow: -15px 0 45px rgba(10, 10, 10, 0.15);
  border-radius: 24px 0 0 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 2rem;
}

.mobile-menu__header img {
  height: 32px;
}

.mobile-menu__close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu__search {
  position: relative;
  margin-bottom: 2rem;
}

.mobile-menu__search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-400);
}

.mobile-menu__search input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: #fdfdfc;
  font-size: 0.95rem;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  transition: all var(--transition);
  display: inline-block;
  padding: 0.5rem 0;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus {
  color: var(--gold);
  transform: translateX(8px);
  text-shadow: 0 0 12px rgba(184, 150, 62, 0.4);
}

.mobile-menu__meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.mobile-menu__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-600);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
}

.mobile-menu__meta-row:hover {
  background: rgba(184, 150, 62, 0.05);
  transform: translateX(5px);
  color: var(--black);
}

.mobile-menu__meta-row i,
.mobile-menu__meta-row span:first-child {
  font-size: 1.2rem;
  color: var(--gold);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-bottom: 2rem;
}

.mobile-menu__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  transition: all var(--transition);
}

.mobile-menu__action-btn:hover {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 15px rgba(184, 150, 62, 0.15);
  transform: translateY(-2px);
}

.mobile-menu__action-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.mobile-menu__action-btn--gold:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(184, 150, 62, 0.4);
  transform: translateY(-2px);
}

.mobile-menu__action-btn--gold .cart-count {
  position: static;
  background: var(--white);
  color: var(--gold);
  border: none;
  min-width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: min(85vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.35) 50%, rgba(10, 10, 10, 0.80) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 2rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease-out both;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.15s ease-out both;
}

.hero__cta {
  animation: fadeUp 1s 0.3s ease-out both;
}

/* divider gold */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 200px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.gold-divider span {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
/* ============================================================
   SECTION HEADER — Premium
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-header p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--grey-600);
}

/* ============================================================
   SHOP LAYOUT (SIDEBAR + GRID)
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

/* --- Mobile Shop UI (Hidden on desktop) --- */
.mobile-shop-bar {
  display: none;
}
.mobile-product-count {
  display: none;
}
.mobile-filter-overlay {
  display: none;
}
.mobile-filter-drawer {
  display: none;
}

@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }
  .shop-sidebar {
    display: none; /* Hide desktop sidebar */
  }

  .mobile-shop-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .mobile-search-form {
    flex: 1;
    position: relative;
  }
  
  .mobile-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .mobile-search-icon {
    position: absolute;
    left: 1rem;
    color: var(--grey-400);
    font-size: 1rem;
  }
  
  .mobile-search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 1px solid var(--grey-200);
    border-radius: 50px;
    font-size: 0.95rem;
    background: var(--white);
    outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  }
  
  .mobile-filter-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--black);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .mobile-product-count {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  /* Overlay */
  .mobile-filter-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-filter-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer */
  .mobile-filter-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    max-height: 85vh;
    background: var(--white);
    z-index: 2001;
    border-radius: 24px 24px 0 0;
    padding: 2rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    overflow-y: auto;
  }
  .mobile-filter-drawer.is-open {
    bottom: 0;
  }
  
  .mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  .mobile-filter-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--grey-400);
    cursor: pointer;
  }
  
  .mobile-filter-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .shop-main-header .product-count {
    display: none; /* Hidden on mobile as we show it above the filters */
  }
}

.shop-sidebar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.shop-filter-form .filter-group {
  margin-bottom: 1.25rem;
}

.shop-filter-form label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.shop-filter-form select,
.shop-filter-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--black);
  outline: none;
  background: var(--white);
  transition: border-color var(--transition);
}

.shop-filter-form select:focus,
.shop-filter-form input:focus {
  border-color: var(--black);
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-reset {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  transition: color var(--transition);
}

.btn-reset:hover {
  color: var(--black);
  text-decoration: underline;
}

.btn-submit {
  background: var(--black);
  color: var(--white);
  padding: 0.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.shop-main-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
}

.active-filters-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-200);
}

.active-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

.active-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  background: #fdf6ec;
  border: 1px solid #f6d196;
  color: var(--black);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.active-pill a {
  color: var(--grey-600);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
}

.active-pill a:hover {
  color: var(--black);
}

.clear-all {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color var(--transition);
}

.clear-all:hover {
  color: var(--black);
  text-decoration: underline;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ---------- Home loading skeleton ---------- */
.home-loading-skeleton {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 5rem 0;
}

.home-loading-skeleton[hidden] { display: none; }

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(10, 10, 10, 0.05);
  overflow: hidden;
}

.home-skeleton__eyebrow { width: min(140px, 22vw); }
.home-skeleton__hero { height: clamp(78px, 11vw, 120px); border-radius: 14px; }
.home-skeleton__title { width: min(700px, 88%); height: clamp(32px, 4vw, 46px); border-radius: 12px; }

.home-skeleton__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 1rem;
}

.home-skeleton__search,
.home-skeleton__filter { height: 36px; }

.home-skeleton__tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.home-skeleton__tab { width: min(180px, 30vw); height: 34px; }

.home-skeleton__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.skeleton-card { min-height: 365px; }
.skeleton-card__image { aspect-ratio: 16 / 9; }

.skeleton-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.skeleton-line,
.skeleton-card__image {
  background: linear-gradient(90deg, var(--grey-100) 25%, #fafafa 50%, var(--grey-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-line { height: 0.8rem; border-radius: 999px; }
.skeleton-line--title { height: 1.1rem; width: 76%; }
.skeleton-line--short { width: 44%; }
.skeleton-line--long { width: 92%; }
.skeleton-line--button { height: 2.5rem; margin-top: 0.35rem; }

@keyframes skeleton-shimmer { to { background-position: -200% 0; } }

/* ── Card shell ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 10, 10, 0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* ── Media (16/9) ── */
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--grey-100);
  flex-shrink: 0;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

/* ── Badge top-left ── */
.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.85rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  z-index: 2;
}

/* ── Wishlist heart top-right ── */
.product-card__wish {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--grey-400);
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
  box-shadow: 0 1px 4px rgba(10, 10, 10, 0.12);
}

.product-card__wish:hover {
  color: var(--danger);
  background: var(--white);
}

/* ── Body ── */
.product-card__body {
  padding: 1rem 1.1rem 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-600);
  margin-bottom: 0.45rem;
}

/* SKU pill */
.product-card__sku {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--grey-800);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 0.25vw + 0.75rem, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card__name a {
  color: inherit;
}

.product-card__name a:hover {
  color: var(--gold);
}

.product-card__desc {
  font-size: clamp(0.76rem, 0.2vw + 0.7rem, 0.86rem);
  color: var(--grey-600);
  line-height: 1.5;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  font-size: clamp(1rem, 0.4vw + 0.85rem, 1.2rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem;
  margin-top: auto;
}

/* ── Footer buttons ── */
.product-card__footer {
  padding: 0 0.75rem 0.85rem;
}

.product-card__form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.3rem;
}

.product-card__form select {
  flex: 1;
  padding: 0.5rem 0.2rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  appearance: none;
  min-width: 0;
  text-align: center;
  transition: border-color var(--transition);
}

.product-card__form select:focus {
  border-color: var(--black);
}

.product-card__btn-add {
  flex: 2.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.65rem 0.5rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.product-card__btn-add:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.product-card__btn-view {
  flex: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.5rem;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--grey-200);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.product-card__btn-view:hover {
  border-color: var(--black);
  color: var(--black);
}

/* Hidden action (kept for compat but replaced by footer) */
.product-card__action {
  display: none;
}

.product-card__colors {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  display: inline-block;
  cursor: default;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .product-card__body {
    padding: 0.65rem 0.75rem 0.35rem;
  }

  .product-card__footer {
    padding: 0 0.75rem 0.75rem;
  }

  .product-card__form {
    flex-direction: column;
    gap: 0.35rem;
  }

  .product-card__name {
    font-size: 0.78rem;
  }

  .product-card__price {
    font-size: 0.92rem;
  }

  .product-card__btn-add,
  .product-card__btn-view {
    font-size: 0.68rem;
    padding: 0.5rem 0.6rem;
  }
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: 4rem;
  padding: 3.5rem 0 6rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem 0 4rem;
  }
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem 0 3rem;
  }
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: min(100%, 400px);
}

@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
    position: static;
    width: min(82vw, 360px);
    margin: 0 auto;
  }
}

/* ---------- Product detail loading skeleton ---------- */
.detail-loading-skeleton {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: 3.5rem 0 6rem;
}

.detail-loading-skeleton[hidden] { display: none; }

.detail-skeleton__image,
.detail-skeleton__line {
  background: linear-gradient(90deg, var(--grey-100) 25%, #fafafa 50%, var(--grey-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.detail-skeleton__image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
}

.detail-skeleton__info {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding-top: 0.5rem;
}

.detail-skeleton__line { height: 1rem; border-radius: 999px; }
.detail-skeleton__line--breadcrumb { width: 34%; height: 0.75rem; }
.detail-skeleton__line--title { width: 76%; height: 2.25rem; margin: 1rem 0; }
.detail-skeleton__line--price { width: 30%; height: 1.5rem; }
.detail-skeleton__line--wide { width: 100%; }
.detail-skeleton__line--medium { width: 72%; }
.detail-skeleton__line--button { width: 100%; height: 3.25rem; margin-top: 1.5rem; }

@media (max-width: 768px) {
  .detail-loading-skeleton {
    grid-template-columns: 1fr;
    padding: 1.5rem 0 3rem;
  }

  .detail-skeleton__image { width: min(90vw, 430px); margin: 0 auto; }
}

.product-gallery__main {
  flex: 1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f3ef;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  order: 2;
}

.badge-new {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: #111;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem 0.35rem;
  border-radius: 4px;
  z-index: 10;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-gallery__main img:hover {
  transform: scale(1.03);
}

/* Carousel Additions */
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.carousel-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
  background: #cda85c;
  transform: scale(1.4);
  border: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 80px;
  order: 1;
  scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: #f0ede8;
  padding: 0;
  transition: border-color 0.25s ease;
}

.product-gallery__thumb.active {
  border-color: #cda85c;
  box-shadow: 0 0 0 1px #cda85c;
}

.product-gallery__thumb:hover:not(.active) {
  border-color: rgba(205, 168, 92, 0.4);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1rem;
}

/* Mockup Product Details */
.breadcrumb-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #a49378;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.breadcrumb-inline a {
  color: #a49378;
  transition: color 0.2s;
}

.breadcrumb-inline a:hover {
  color: #000;
}

.breadcrumb-inline .breadcrumb__current {
  color: #111;
  font-weight: 600;
}

.product-title-premium {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.gold-line-premium {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #cda85c, #e8c87a);
  border-radius: 2px;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.product-price-premium-row {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 0.75rem;
}

.product-price-premium-row .price-value {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0a0a0a;
}

.delivery-badge-premium {
  color: #888;
  font-size: clamp(0.7rem, 1.5vw, 0.76rem);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.delivery-badge-premium i {
  color: #27ae60;
  font-size: 0.85rem;
}

.horizontal-divider {
  border: none;
  border-top: 1px solid #ece8e0;
  margin: 1.25rem 0;
}

.product-info__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
}

.product-info__desc p {
  margin: 0;
  color: #555;
}

/* Form UI Mockup */
.mockup-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-info__desc {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.4vw, 0.84rem);
  color: #666;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.product-info__desc p {
  margin: 0;
  color: #666;
}

.product-option-label {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.2vw, 0.66rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #333;
  margin-bottom: 0.9rem;
}

.pill-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pill-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  background: #fff;
  border: 1px solid #e0dbd2;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.3vw, 0.78rem);
  font-weight: 600;
  color: #111;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.02em;
}

.color-pill {
  padding: 0.42rem 0.85rem 0.42rem 0.62rem;
}

.size-pill {
  min-width: 42px;
  justify-content: center;
  padding: 0.45rem 0.6rem;
  font-size: clamp(0.7rem, 1.3vw, 0.76rem);
}

.pill-btn:hover {
  border-color: rgba(205, 168, 92, 0.5);
  background: rgba(205, 168, 92, 0.04);
}

.pill-btn.active {
  border-color: #cda85c;
  background: rgba(205, 168, 92, 0.07);
  box-shadow: 0 0 0 1px #cda85c;
}

.color-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.guide-link {
  font-size: 0.73rem;
  font-weight: 600;
  color: #cda85c;
  text-decoration: none;
  border-bottom: 1px solid rgba(205, 168, 92, 0.4);
  padding-bottom: 0.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: border-color 0.2s;
}

.guide-link:hover {
  border-bottom-color: #cda85c;
}

.product-qty-row {
  margin-bottom: 1.5rem;
}

.custom-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e0dbd2;
  border-radius: 8px;
  overflow: hidden;
  height: 40px;
  background: #fff;
  min-width: 125px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.qty-minus,
.qty-plus {
  background: transparent;
  border: none;
  width: 38px;
  height: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qty-minus:hover,
.qty-plus:hover {
  background: #f5f2ec;
  color: #000;
}

.qty-value {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  color: #111;
  border-left: 1px solid #ebe6df;
  border-right: 1px solid #ebe6df;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
}

.product-actions {
  margin-top: 1rem;
}

.btn-dark {
  background: #0a0a0a;
  color: #cda85c;
  border: 1.5px solid #0a0a0a;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.btn-dark:hover {
  background: transparent;
  color: #cda85c;
  border-color: #cda85c;
  box-shadow: 0 0 0 1px #cda85c, 0 4px 18px rgba(205, 168, 92, 0.15);
}

.btn-massive.btn-added {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #27ae60;
  border-color: #27ae60;
  cursor: default;
}

.btn-massive {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}



.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column-reverse;
    position: static;
    gap: 0.75rem;
  }

  /* Thumbnail column becomes a horizontally scrollable strip below
     the main image instead of being hidden entirely on mobile. */
  .product-gallery__thumbs {
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.15rem;
  }

  .product-gallery__thumb {
    width: 64px;
    height: 80px;
    scroll-snap-align: start;
  }
}

.add-to-cart-form {
  display: block;
}

.add-to-cart-form .btn {
  flex: 1;
  min-width: 160px;
}

.product-info__guarantee {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--grey-100);
  border-radius: var(--radius-md);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--grey-600);
}

.guarantee-item i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: var(--grey-400);
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 3rem;
}

.breadcrumb a {
  color: var(--grey-400);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb__sep {
  color: var(--grey-200);
}

.breadcrumb__current {
  color: var(--grey-600);
  font-weight: 600;
}

/* ============================================================
   CART
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  padding: 3rem 0 6rem;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ece4cf;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.05);
}

.cart-table th {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-400);
  background: #f9f7f2;
  border-bottom: 1px solid #ece4cf;
  padding: 0.9rem 1rem;
  text-align: left;
}

.cart-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid #f1ebdb;
  vertical-align: middle;
}

.cart-table tr:last-child td {
  border-bottom: none;
}

.cart-product-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-col-image {
  width: 90px;
}

.cart-col-price,
.cart-col-total,
.cart-col-qty,
.cart-col-actions {
  white-space: nowrap;
}

.cart-product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-product-img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e7dfc8;
  background: #faf7ef;
  flex-shrink: 0;
}

.cart-product-name {
  font-family: var(--font-display);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-stock-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.18rem 0.42rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #d8bf78 0%, #b8963e 100%);
  color: #111827;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(138, 109, 36, 0.4);
}

.cart-variant-line {
  font-size: 0.73rem;
  color: var(--grey-400);
  margin: 0;
}

.cart-qty-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem;
  border: 1px solid rgba(184, 150, 62, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 45%),
    linear-gradient(170deg, #fffdf8 0%, #f4edd9 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(10, 10, 10, 0.08);
}

.cart-qty-stepper .qty-step-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(184, 150, 62, 0.5);
  border-radius: 999px;
  background: linear-gradient(180deg, #d9bf77 0%, #b8963e 100%);
  color: #17120a;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.cart-qty-stepper .qty-step-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(109, 83, 22, 0.28);
  filter: brightness(1.02);
}

.cart-qty-stepper .qty-step-btn:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 5px rgba(73, 54, 12, 0.28);
}

.cart-qty-stepper .qty-step-btn.is-disabled,
.cart-qty-stepper .qty-step-btn:disabled {
  background: linear-gradient(180deg, #efe6cf 0%, #e4d8b8 100%);
  border-color: #dbcda9;
  color: #b4a476;
  box-shadow: none;
  filter: none;
  cursor: not-allowed;
  transform: none;
}

.cart-qty-form .qty-number-input {
  border: none;
  border-radius: 8px;
  padding: 0.36rem 0.35rem;
  font-size: 0.86rem;
  background: transparent;
  width: 54px;
  text-align: center;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.02em;
  -moz-appearance: textfield;
}

.cart-qty-form .qty-number-input::-webkit-outer-spin-button,
.cart-qty-form .qty-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-form .qty-number-input:focus {
  outline: none;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--grey-400);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color var(--transition);
}

.remove-btn:hover {
  color: var(--danger);
}

.cart-price {
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
}

.cart-total-price {
  font-weight: 700;
  color: #9d7a2b;
  white-space: nowrap;
}

/* Order Summary */
.order-summary-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: sticky;
  top: 90px;
}

.order-summary-box h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-200);
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 0.88rem;
}

.order-summary-item:last-of-type {
  border-bottom: none;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0 0;
  border-top: 2px solid var(--grey-200);
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.order-summary-total .amount {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  padding: 3rem 0 6rem;
  align-items: start;
}

.checkout-form-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.checkout-form-card h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group .errorlist {
  color: var(--danger);
  font-size: 0.75rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem;
  gap: 1.5rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-page h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.success-page p {
  font-size: 1rem;
  max-width: 480px;
}

.order-id-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  color: var(--grey-400);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-800);
  margin-bottom: 2.5rem;
}


.footer-brand img {
  width: clamp(130px, 12vw, 175px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--grey-600);
  font-size: clamp(0.86rem, 0.2vw + 0.8rem, 0.96rem);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li+li {
  margin-top: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--grey-600);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--grey-600);
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--grey-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-600);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--grey-600);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--grey-400);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.empty-state h2 {
  font-size: 1.25rem;
  color: var(--grey-600);
  margin-bottom: 0.75rem;
}

.empty-state p {
  margin-bottom: 2rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-up {
  animation: fadeUp 0.6s ease-out both;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.pt-5 {
  padding-top: 3rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 2.5rem 3.5rem;
  border: 1px solid #B8963E;
  border-radius: 0;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  font-family: var(--font-display, serif);
  text-align: center;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.toast.active {
  opacity: 1;
  transform: scale(1);
}

.toast i {
  font-size: 3rem;
  color: #B8963E;
  margin-bottom: 0.5rem;
}

.toast span {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  /* Hide desktop navbar elements */
  .navbar__nav,
  .navbar__search,
  .navbar__dropdown,
  .navbar__connexion {
    display: none;
  }

  /* Show hamburger */
  .navbar__hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-gallery {
    position: static;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    height: 60px;
  }

  .navbar__logo img {
    height: 36px;
  }

  .hero {
    height: min(70vh, 500px);
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .home-loading-skeleton {
    gap: 1rem;
    padding: 3rem 0;
  }

  .home-skeleton__hero { height: 78px; }
  .home-skeleton__toolbar { grid-template-columns: minmax(0, 1fr) 62px; gap: 0.75rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--grey-200);
    padding: 1.25rem 3rem 1.25rem 1rem;
  }

  .cart-table td {
    display: block;
    border: none;
    padding: 0;
  }

  /* Image + name/variant sit side by side; the info column's
     overflow:hidden creates a block formatting context so it wraps
     neatly next to the floated image without extra markup. */
  .cart-col-image {
    float: left;
    width: auto;
    margin: 0 1rem 0.5rem 0;
  }

  .cart-col-info {
    overflow: hidden;
  }

  .cart-col-qty,
  .cart-col-price,
  .cart-col-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.6rem;
    font-size: 0.72rem;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .cart-col-qty {
    clear: both;
  }

  .cart-col-qty::before {
    content: "Quantité";
  }

  .cart-col-price::before {
    content: "Prix unitaire";
  }

  .cart-col-total {
    margin-top: 0.4rem;
    border-top: 1px solid var(--grey-100);
  }

  .cart-col-total::before {
    content: "Sous-total";
    font-weight: 700;
    color: var(--black);
  }

  .cart-col-total .cart-total-price {
    font-size: 0.95rem;
  }

  .cart-col-actions {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
  }

  .remove-btn {
    font-size: 1.05rem;
    padding: 0.4rem;
  }

  .remove-btn__label {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
    border-radius: 0;
    padding: 0 1.25rem;
  }

  .mobile-menu__header {
    height: 64px;
    margin-bottom: 1.25rem;
  }

  .mobile-menu__header img { height: 27px; }
  .mobile-menu__search { margin-bottom: 1.25rem; }
  .mobile-menu__nav { gap: 1.05rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; }
  .mobile-menu__nav a { font-size: clamp(1.1rem, 6vw, 1.3rem); }
  .mobile-menu__meta { gap: 0.5rem; margin-bottom: 1rem; }
  .mobile-menu__meta-row { padding: 0.35rem; }
  .mobile-menu__actions { gap: 0.65rem; padding-bottom: 1rem; }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .skeleton-card { min-height: 290px; }

  .skeleton-card__body {
    padding: 0.75rem;
    gap: 0.55rem;
  }

  .home-skeleton__products { gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-line,
  .skeleton-card__image { animation: none; }
}

/* ============================================================
   COOKIE CONSENT BANNER & MODAL (MOCKUP MATCH)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--grey-400);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
}

.cookie-banner-close:hover {
  color: var(--black);
}

.cookie-banner-layout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-banner-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.cookie-banner-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--black);
}

.cookie-banner-content p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--grey-600);
  margin-bottom: 0.5rem;
}

.cookie-banner-link {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  width: 100%;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.cookie-btn-outline {
  background: var(--white);
  border: 1px solid var(--grey-300);
  color: var(--black);
}

.cookie-btn-outline:hover {
  background: var(--grey-100);
}

.cookie-btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--white);
}

.cookie-btn-gold:hover {
  background: #a48434;
  border-color: #a48434;
}

/* Modal for Customization */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: var(--white);
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--grey-400);
  cursor: pointer;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.cookie-category-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.cookie-category-info p {
  font-size: 0.85rem;
  color: var(--grey-600);
}

.cookie-modal-footer {
  margin-top: 1rem;
}

/* Toggle Switch */
.cookie-category-toggle input {
  display: none;
}
.cookie-category-toggle label {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  background: var(--grey-200);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-category-toggle label::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-category-toggle input:checked + label {
  background: var(--gold);
}
.cookie-category-toggle input:checked + label::after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
.cookie-category-toggle input:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.5rem;
    bottom: 1rem;
    border-radius: 8px;
  }
  .cookie-banner-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   MOCKUP PRODUCT CARD STYLES
   ============================================================ */
.product-card.mockup-card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.product-card__media {
  position: relative;
  background: #f0f0f0; /* Default background for images */
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.mockup-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--black);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mockup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mockup-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.mockup-sku {
  background: #f4f4f4;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
}

.mockup-colors {
  display: flex;
  gap: 0.75rem;
}

.mockup-color-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--black);
}

.mockup-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
  text-transform: uppercase;
}

.mockup-desc {
  font-size: 0.8rem;
  color: var(--grey-600);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex: 1;
}

.mockup-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mockup-divider {
  height: 1px;
  background: #f0f0f0;
  margin-bottom: 1rem;
}

.mockup-footer {
  margin-top: auto;
}

.mockup-form-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.mockup-size-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-size-wrapper label {
  font-size: 0.75rem;
  color: var(--grey-600);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mockup-size-wrapper select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  appearance: none;
  background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 0.7rem top 50%;
  background-size: 0.65rem auto;
}

.mockup-actions {
  display: flex;
  gap: 0.5rem;
}

.mockup-btn-add,
.mockup-btn-view {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.mockup-btn-view {
  background: var(--white);
  color: var(--black);
  border: 1px solid #e0e0e0;
}

.mockup-btn-add:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.mockup-btn-view:hover {
  border-color: var(--black);
}

/* ── Responsive Mockup Card ── */
@media (max-width: 640px) {
  .mockup-body {
    padding: 0.6rem;
  }
  
  .mockup-meta {
    margin-bottom: 0.5rem;
  }
  
  .mockup-sku {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
  }
  
  .mockup-colors {
    gap: 0.3rem;
  }
  
  .mockup-color-item {
    font-size: 0.65rem;
    gap: 0.15rem;
  }
  
  .mockup-color-dot {
    width: 8px;
    height: 8px;
  }
  
  .mockup-name {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  .mockup-desc {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .mockup-price {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .mockup-divider {
    margin-bottom: 0.5rem;
  }
  
  /* Keep everything on the same line */
  .mockup-form-layout {
    flex-direction: row;
    align-items: flex-end;
    gap: 0.3rem;
  }
  
  .mockup-size-wrapper label {
    font-size: 0.6rem;
  }
  
  .mockup-size-wrapper select {
    padding: 0.3rem 1.2rem 0.3rem 0.4rem;
    font-size: 0.7rem;
    background-position: right 0.3rem top 50%;
    background-size: 0.45rem auto;
    border-radius: 4px;
    height: 30px;
  }
  
  .mockup-actions {
    gap: 0.3rem;
  }
  
  .mockup-btn-add,
  .mockup-btn-view {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    border-radius: 4px;
  }
}

@media (max-width: 400px) {
  .mockup-body {
    padding: 0.4rem;
  }
  .mockup-size-wrapper select {
    padding: 0.2rem 1rem 0.2rem 0.2rem;
    font-size: 0.6rem;
    height: 26px;
    background-position: right 0.2rem top 50%;
  }
  .mockup-btn-add,
  .mockup-btn-view {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }
  .mockup-form-layout {
    gap: 0.2rem;
  }
  .mockup-actions {
    gap: 0.2rem;
  }
  .mockup-price {
    font-size: 0.85rem;
  }
  .mockup-name {
    font-size: 0.75rem;
  }
}
