/* =============================================
   SÜTYEN — Design System & Global Styles
   ============================================= */

/* --- Custom Properties (Design Tokens) --- */
:root {
  /* Brand Colors */
  --blush:        #E8BAC5;
  --blush-light:  #F7ECF0;
  --blush-dark:   #C4849A;
  --rose:         #A85C75;
  --rose-deep:    #7D3A52;
  --cream:        #FDFAF8;
  --cream-dark:   #F4EEE8;
  --charcoal:     #1C1718;
  --warm-gray:    #6B5B62;
  --mid-gray:     #9E8E94;
  --light-gray:   #E8DFE2;
  --white:        #FFFFFF;

  /* Semantic */
  --color-primary:    var(--rose);
  --color-secondary:  var(--blush);
  --color-text:       var(--charcoal);
  --color-muted:      var(--warm-gray);
  --color-bg:         var(--cream);
  --color-border:     var(--light-gray);
  --color-success:    #4A8C6A;
  --color-error:      #C0392B;

  /* Typography */
  --font-display:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   48px;
  --space-8:   64px;
  --space-9:   96px;
  --space-10:  128px;

  /* Border Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(28,23,24,.08), 0 1px 2px rgba(28,23,24,.05);
  --shadow-md:  0 4px 12px rgba(28,23,24,.10), 0 2px 4px rgba(28,23,24,.06);
  --shadow-lg:  0 12px 32px rgba(28,23,24,.12), 0 4px 8px rgba(28,23,24,.08);
  --shadow-xl:  0 24px 48px rgba(28,23,24,.16);

  /* Motion */
  --ease-soft:   cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --duration-fast:   150ms;
  --duration-mid:    280ms;
  --duration-slow:   500ms;

  /* Layout */
  --max-width:      1320px;
  --header-height:  84px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

.display-xl { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
.display-md { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.heading-lg  { font-size: clamp(1.25rem, 2vw, 1.75rem); }
.heading-md  { font-size: 1.25rem; }
.label-sm    { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.body-lg     { font-size: 1.0625rem; }
.body-sm     { font-size: .875rem; }
.caption     { font-size: .75rem; color: var(--color-muted); }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: var(--space-9); }
.section-sm { padding-block: var(--space-7); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--duration-mid) var(--ease-soft);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-text);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-rose {
  background: var(--rose);
  color: var(--white);
}
.btn-rose:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}
.btn-outline:hover { background: var(--color-text); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 10px 20px;
}
.btn-ghost:hover { background: var(--blush-light); }

.btn-blush {
  background: var(--blush-light);
  color: var(--rose);
  border: 1.5px solid var(--blush);
}
.btn-blush:hover { background: var(--blush); color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-new      { background: var(--charcoal); color: var(--white); }
.badge-sale     { background: var(--rose); color: var(--white); }
.badge-sold-out { background: var(--mid-gray); color: var(--white); }
.badge-3d       { background: var(--blush-dark); color: var(--white); }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 10px var(--space-4);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
}
.announcement-bar .slides { display: flex; flex-direction: column; overflow: hidden; height: 20px; }
.announcement-bar .slide {
  opacity: 0;
  transform: translateY(10px);
  animation: slideIn 9s infinite;
  position: absolute;
  width: 100%;
}
.announcement-bar .slide:nth-child(1) { animation-delay: 0s; }
.announcement-bar .slide:nth-child(2) { animation-delay: 3s; }
.announcement-bar .slide:nth-child(3) { animation-delay: 6s; }
@keyframes slideIn {
  0%   { opacity: 0; transform: translateY(10px); }
  8%   { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(0); }
  38%  { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  transition: box-shadow var(--duration-mid), height var(--duration-mid) var(--ease-soft), background var(--duration-mid);
}
.site-header.scrolled {
  height: 64px;
  background: rgba(253,250,248,.97);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: var(--space-4);
}

.header-nav { display: flex; align-items: center; gap: var(--space-5); }
.header-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--duration-fast);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--duration-mid) var(--ease-soft);
}
.header-nav a:hover { color: var(--color-text); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav a.is-active { color: var(--color-text); font-weight: 600; }
.header-nav a.is-active::after { transform: scaleX(1); }

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo-svg { height: 40px; }
.logo-img { height: 68px; width: auto; object-fit: contain; display: block; transition: height var(--duration-mid) var(--ease-soft); }
.site-header.scrolled .logo-img { height: 52px; }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: var(--space-3); }
.header-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast);
  color: var(--color-text);
}
.header-icon-btn:hover { background: var(--blush-light); }
.header-icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: .625rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  padding: 0 4px;
  transform: scale(0);
  transition: transform var(--duration-fast) var(--ease-spring);
}
.cart-count.visible { transform: scale(1); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: currentColor; transition: all var(--duration-mid); border-radius: 2px; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  padding: var(--space-6);
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-soft);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-7); }
.mobile-nav-links a { font-family: var(--font-display); font-size: 1.75rem; color: var(--color-text); }
.mobile-nav-close { align-self: flex-end; padding: var(--space-2); }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--cream);
}

/* Full-bleed hero background video (Option B) */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg,
    var(--cream) 0%,
    rgba(253,250,248,.94) 28%,
    rgba(253,250,248,.62) 52%,
    rgba(253,250,248,.18) 78%,
    rgba(253,250,248,0) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-10) var(--space-8) var(--space-10) calc((100vw - var(--max-width))/2 + var(--space-5));
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero-eyebrow span { color: var(--rose); font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow-line { width: 32px; height: 1px; background: var(--rose); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero-title em { font-style: italic; color: var(--rose); }

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: var(--space-7);
}

.hero-actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}
.trust-item { display: flex; align-items: center; gap: var(--space-2); }
.trust-item svg { color: var(--rose); flex-shrink: 0; }
.trust-item span { font-size: .8125rem; color: var(--color-muted); font-weight: 500; }

.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 50%, var(--blush-dark) 100%);
}
.hero-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-product-img {
  width: 85%;
  max-width: 440px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: block;
}

/* Floating badge on hero */
.hero-badge {
  position: absolute;
  top: var(--space-7);
  right: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: floatY 3s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-badge .badge-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--rose); line-height: 1; }
.hero-badge .badge-label { font-size: .6875rem; color: var(--color-muted); font-weight: 500; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: var(--space-7); }
.section-header .eyebrow {
  display: inline-block;
  color: var(--rose);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.section-header h2 { margin-bottom: var(--space-3); }
.section-header p { color: var(--color-muted); max-width: 520px; margin-inline: auto; }

/* === CATEGORY TILES === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.category-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  cursor: pointer;
  transition: transform var(--duration-mid) var(--ease-soft);
  text-decoration: none;
}
.category-tile:hover { transform: translateY(-4px); }
.category-tile:hover .category-tile-img { transform: scale(1.05); }

.category-tile-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--duration-slow) var(--ease-soft);
}
.category-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,23,24,.7) 0%, rgba(28,23,24,.1) 60%, transparent 100%);
}
.category-tile-body { position: relative; z-index: 1; }
.category-tile-name { color: var(--white); font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: var(--space-1); }
.category-tile-count { color: rgba(255,255,255,.7); font-size: .8125rem; }

/* Colour variants for placeholder tiles */
.cat-bras       .category-tile-img { background-color: #A56A52; background-image: url('../assets/categories/bras.jpg'); }
.cat-panties    .category-tile-img { background-color: #C9A87C; background-image: url('../assets/categories/panties.jpg'); }
.cat-sets       .category-tile-img { background-color: #2A2A2A; background-image: url('../assets/categories/sets.jpg'); }
.cat-sleep      .category-tile-img { background-color: #7B3F98; background-image: url('../assets/categories/sleep.jpg'); }
.cat-accessories .category-tile-img { background-color: #B9A98F; background-image: url('../assets/categories/accessories.jpg'); }
.cat-jewellery  .category-tile-img { background-color: #6E4A3A; background-image: url('../assets/categories/jewellery.jpg'); }

/* === PRODUCT GRID === */
.products-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-6); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5) var(--space-4);
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--duration-mid) var(--ease-soft);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); }

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush-light);
  cursor: pointer;
}
.product-card-img,
.product-card-img-alt {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity var(--duration-slow) var(--ease-soft);
}
.product-card-img-alt { opacity: 0; }
.product-card:hover .product-card-img     { opacity: 0; }
.product-card:hover .product-card-img-alt { opacity: 1; }

/* Transparent overlay so the whole image navigates to the product page.
   Sits above the photos (DOM order) but below badges/wishlist/quick-add (z-index:1). */
.product-card-image-link { position: absolute; inset: 0; display: block; }

/* Photo-based product cards */
.product-card-img--photo,
.product-card-img-alt--photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-card-badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  z-index: 1;
}

.wishlist-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-fast);
  z-index: 1;
  opacity: 0;
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn:hover { background: var(--blush-light); transform: scale(1.1); }
.wishlist-btn svg { width: 16px; height: 16px; color: var(--rose); }
.wishlist-btn.active svg { fill: var(--rose); }

.product-card-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  transform: translateY(100%);
  transition: transform var(--duration-mid) var(--ease-soft);
  cursor: pointer;
}
.product-card:hover .product-card-quick-add { transform: translateY(0); }

.product-card-body { padding: var(--space-4); flex: 1; display: flex; flex-direction: column; }
.product-card-name { font-weight: 600; font-size: .9375rem; margin-bottom: var(--space-1); line-height: 1.3; }
.product-card-name a:hover { color: var(--rose); }
.product-card-meta { font-size: .8125rem; color: var(--color-muted); margin-bottom: var(--space-3); }
.product-card-rating { display: flex; align-items: center; gap: var(--space-1); margin-bottom: var(--space-2); }
.stars { color: #F5A623; font-size: .75rem; letter-spacing: 1px; }
.rating-count { font-size: .75rem; color: var(--color-muted); }
.product-card-price { display: flex; align-items: center; gap: var(--space-2); margin-top: auto; }
.price-current { font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700; }
.price-original { font-size: .875rem; color: var(--color-muted); text-decoration: line-through; }
.price-savings { font-size: .75rem; color: var(--rose); font-weight: 600; }
/* When the savings chip is also a sale badge, keep the badge's white text
   (otherwise .price-savings' rose colour lands rose-on-rose and hides it). */
.price-savings.badge-sale { color: var(--white); }

/* Colour swatches on card */
.product-card-swatches { display: flex; gap: var(--space-1); margin-bottom: var(--space-2); }
.swatch {
  width: 18px; height: 18px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--duration-fast);
  position: relative;
}
.swatch.active, .swatch:hover { border-color: var(--color-text); }

/* === FIT FINDER BANNER === */
.fit-finder-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--rose-deep) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8);
}
.fit-finder-banner::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  border-radius: var(--radius-full);
  background: rgba(232,186,197,.1);
}
.fit-finder-banner::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -80px;
  width: 200px; height: 200px;
  border-radius: var(--radius-full);
  background: rgba(232,186,197,.07);
}
.fit-finder-content { position: relative; z-index: 1; }
.fit-finder-content .eyebrow { color: var(--blush); }
.fit-finder-content h2 { color: var(--white); margin-bottom: var(--space-3); }
.fit-finder-content p { color: rgba(255,255,255,.7); max-width: 480px; }
.fit-finder-steps {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-5);
}
.fit-step { display: flex; align-items: center; gap: var(--space-3); }
.fit-step-num {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: var(--blush);
  color: var(--rose-deep);
  font-weight: 700;
  font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fit-step-text { color: rgba(255,255,255,.8); font-size: .875rem; }
.fit-finder-action { position: relative; z-index: 1; flex-shrink: 0; }

/* === PAYMENT TRUST STRIP === */
.payment-strip {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  border: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.payment-strip-label { font-size: .875rem; color: var(--color-muted); font-weight: 500; white-space: nowrap; }
.payment-logos { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.payment-logo {
  height: 32px;
  padding: 6px 12px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.payment-logo.bkash   { background: #E2136E; color: #fff; }
.payment-logo.nagad   { background: #F05829; color: #fff; }
.payment-logo.rocket  { background: #8B189A; color: #fff; }
.payment-logo.sslcomm { background: #00A859; color: #fff; }
.payment-logo.cod     { background: var(--charcoal); color: #fff; }
.payment-logo.visa    { background: #1A1F71; color: #fff; }

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--blush-light);
  text-align: center;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin-inline: auto;
  margin-top: var(--space-5);
  gap: var(--space-2);
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: .9375rem;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--duration-fast);
}
.newsletter-input:focus { border-color: var(--rose); }
.newsletter-input::placeholder { color: var(--mid-gray); }

/* === TRUST PILLARS === */
.trust-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.trust-pillar { text-align: center; padding: var(--space-5); }
.trust-pillar-icon {
  width: 56px; height: 56px;
  background: var(--blush-light);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-4);
}
.trust-pillar-icon svg { color: var(--rose); }
.trust-pillar h4 { font-size: 1rem; margin-bottom: var(--space-2); }
.trust-pillar p { font-size: .875rem; color: var(--color-muted); }

/* === FOOTER === */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.8);
  padding-top: var(--space-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { font-family: var(--font-display); font-size: 1.75rem; color: var(--white); font-style: italic; margin-bottom: var(--space-3); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.social-link { width: 36px; height: 36px; border-radius: var(--radius-full); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background var(--duration-fast); }
.social-link:hover { background: var(--rose); }
.social-link svg { width: 16px; height: 16px; color: var(--white); }

.footer-col h5 { font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col ul li a { font-size: .875rem; transition: color var(--duration-fast); }
.footer-col ul li a:hover { color: var(--blush); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-5);
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--blush); }

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(28,23,24,.5);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-mid);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--white);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-soft);
  box-shadow: var(--shadow-xl);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
}
.cart-header h3 { font-size: 1.125rem; }
.cart-close { padding: var(--space-2); color: var(--color-text); border-radius: var(--radius-full); transition: background var(--duration-fast); }
.cart-close:hover { background: var(--blush-light); }
.cart-close svg { width: 20px; height: 20px; }

.cart-items { flex: 1; overflow-y: auto; padding: var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: var(--space-4); text-align: center; color: var(--color-muted); }
.cart-empty svg { color: var(--blush); }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: var(--space-3);
  align-items: start;
}
.cart-item-img {
  width: 72px; height: 90px;
  border-radius: var(--radius-md);
  background: var(--blush-light);
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.cart-item-name { font-weight: 600; font-size: .9375rem; margin-bottom: var(--space-1); }
.cart-item-meta { font-size: .8125rem; color: var(--color-muted); }
.cart-item-price { font-weight: 700; font-size: .9375rem; text-align: right; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.qty-btn { width: 28px; height: 28px; border-radius: var(--radius-full); background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 600; color: var(--color-text); transition: background var(--duration-fast); }
.qty-btn:hover { background: var(--blush); }
.qty-num { font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { font-size: .75rem; color: var(--mid-gray); text-decoration: underline; cursor: pointer; margin-top: var(--space-1); display: inline-block; }
.cart-item-remove:hover { color: var(--color-error); }

.cart-upsell {
  margin: 0 var(--space-6);
  padding: var(--space-4);
  background: var(--blush-light);
  border-radius: var(--radius-md);
  font-size: .875rem;
  border-left: 3px solid var(--blush-dark);
}
.cart-upsell strong { color: var(--rose); }

.cart-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-border);
  background: var(--cream);
}
.cart-subtotal { display: flex; justify-content: space-between; margin-bottom: var(--space-4); font-weight: 600; font-size: 1.0625rem; }
.cart-note { font-size: .75rem; color: var(--color-muted); text-align: center; margin-top: var(--space-3); }

/* ===========================
   SHOP PAGE
   =========================== */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-7); align-items: start; }

.filter-sidebar { position: sticky; top: calc(var(--header-height) + var(--space-5)); }
.filter-sidebar h3 { font-size: 1rem; margin-bottom: var(--space-5); }

.filter-group { padding-block: var(--space-4); border-bottom: 1px solid var(--color-border); }
.filter-group:last-child { border-bottom: none; }
.filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: .875rem;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.filter-group-toggle svg { transition: transform var(--duration-fast); }
.filter-group-toggle.open svg { transform: rotate(180deg); }
.filter-options { display: flex; flex-direction: column; gap: var(--space-2); }
.filter-option { display: flex; align-items: center; gap: var(--space-2); cursor: pointer; }
.filter-option input { accent-color: var(--rose); }
.filter-option label { font-size: .875rem; cursor: pointer; }
.filter-option .count { margin-left: auto; font-size: .75rem; color: var(--mid-gray); }

.filter-color-options { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.filter-swatch {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--duration-fast), transform var(--duration-fast);
}
.filter-swatch:hover, .filter-swatch.active { border-color: var(--color-text); transform: scale(1.15); }

.filter-price-range { display: flex; align-items: center; gap: var(--space-2); font-size: .875rem; }
.filter-price-range input { width: 80px; padding: 6px 10px; border: 1px solid var(--color-border); border-radius: var(--radius-md); }

/* Sort & Results bar */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-5); }
.results-count { font-size: .875rem; color: var(--color-muted); }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: .875rem;
  background: var(--white);
  color: var(--color-text);
  cursor: pointer;
  outline: none;
}
.sort-select:focus { border-color: var(--rose); }

/* Active filters */
.active-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.filter-chip {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: 4px 12px;
  background: var(--blush-light);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  color: var(--rose);
  font-weight: 500;
  cursor: pointer;
}
.filter-chip:hover { background: var(--blush); }
.filter-chip svg { width: 12px; height: 12px; }

/* ===========================
   PRODUCT DETAIL PAGE
   =========================== */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-9); align-items: start; }

/* Gallery */
.pdp-gallery { position: sticky; top: calc(var(--header-height) + var(--space-5)); }
.pdp-main-image {
  aspect-ratio: 3/4;
  background: var(--blush-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-3);
  position: relative;
  cursor: zoom-in;
}
.pdp-main-image img, .pdp-main-image .img-placeholder { width: 100%; height: 100%; object-fit: cover; }
.pdp-main-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: opacity .3s ease; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
.pdp-thumb {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  background: var(--blush-light);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast);
}
.pdp-thumb.active { border-color: var(--rose); }
.pdp-thumb:hover { border-color: var(--blush-dark); }

/* PDP Info */
.pdp-info {}
.pdp-breadcrumb { font-size: .8125rem; color: var(--color-muted); margin-bottom: var(--space-4); }
.pdp-breadcrumb a { color: var(--color-muted); }
.pdp-breadcrumb a:hover { color: var(--rose); }

.pdp-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: var(--space-3); }
.pdp-rating { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.pdp-price { display: flex; align-items: baseline; gap: var(--space-3); margin-bottom: var(--space-5); }
.pdp-price .price-current { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; }

/* Variant selector */
.pdp-field { margin-bottom: var(--space-5); }
.pdp-field-label {
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.pdp-field-label span { color: var(--color-muted); font-weight: 400; }

.color-options { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.color-option {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--duration-fast);
}
.color-option.active, .color-option:hover { border-color: var(--color-text); transform: scale(1.1); }
.color-option[title] { position: relative; }

.size-options { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.size-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 500;
  background: var(--white);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--duration-fast);
}
.size-btn:hover { border-color: var(--rose); color: var(--rose); }
.size-btn.active { border-color: var(--color-text); background: var(--color-text); color: var(--white); }
.size-btn.out-of-stock { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

.size-guide-link { font-size: .8125rem; color: var(--rose); text-decoration: underline; margin-top: var(--space-2); display: inline-block; }

/* PDP Actions */
.pdp-actions { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.pdp-add-cart { padding: 16px; font-size: 1rem; }

/* Construction details */
.pdp-details { margin-top: var(--space-6); }
.detail-accordion { border-top: 1px solid var(--color-border); }
.detail-item { border-bottom: 1px solid var(--color-border); }
.detail-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.detail-trigger svg { transition: transform var(--duration-fast); flex-shrink: 0; }
.detail-trigger.open svg { transform: rotate(180deg); }
.detail-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-soft);
}
.detail-body.open { max-height: 500px; }
.detail-body-inner { padding-bottom: var(--space-4); font-size: .9375rem; color: var(--color-muted); line-height: 1.7; }
.detail-body-inner ul { padding-left: var(--space-4); display: flex; flex-direction: column; gap: var(--space-1); }
.detail-body-inner li::before { content: '—'; margin-right: var(--space-2); color: var(--rose); }

/* ===========================
   CHECKOUT PAGE
   =========================== */
.checkout-layout { display: grid; grid-template-columns: 1fr 420px; gap: var(--space-8); align-items: start; }

.checkout-form-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-5);
}
.checkout-form-section h3 { font-size: 1.125rem; margin-bottom: var(--space-5); padding-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); }

/* Progress steps */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: .875rem;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  border: 2px solid var(--color-border);
  color: var(--color-muted);
  flex-shrink: 0;
}
.step-num.active { border-color: var(--rose); background: var(--rose); color: var(--white); }
.step-num.done { border-color: var(--color-success); background: var(--color-success); color: var(--white); }
.step-label { color: var(--color-muted); }
.step-label.active { color: var(--color-text); font-weight: 600; }
.step-divider { height: 1px; flex: 1; background: var(--color-border); }

/* Form fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--color-text); }
.form-label .required { color: var(--rose); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  color: var(--color-text);
  background: var(--white);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(168,92,117,.12);
}
.form-input.error { border-color: var(--color-error); }
.form-hint { font-size: .75rem; color: var(--color-muted); }
.form-error { font-size: .75rem; color: var(--color-error); }

/* Shipping options */
.shipping-options { display: flex; flex-direction: column; gap: var(--space-3); }
.shipping-option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}
.shipping-option.selected { border-color: var(--rose); background: var(--blush-light); }
.shipping-option input[type="radio"] { accent-color: var(--rose); }
.shipping-option-info { flex: 1; }
.shipping-option-name { font-weight: 600; font-size: .9375rem; }
.shipping-option-desc { font-size: .8125rem; color: var(--color-muted); }
.shipping-option-price { font-weight: 700; font-size: .9375rem; }

/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: var(--space-3); }
.payment-method {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast);
}
.payment-method.selected { border-color: var(--rose); }

.payment-method-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  cursor: pointer;
}
.payment-method-header:hover { background: var(--cream); }
.payment-method input[type="radio"] { accent-color: var(--rose); }
.payment-method-logo {
  width: 52px; height: 30px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.pm-bkash  .payment-method-logo { background: #E2136E; color: #fff; }
.pm-nagad  .payment-method-logo { background: #F05829; color: #fff; }
.pm-rocket .payment-method-logo { background: #8B189A; color: #fff; }
.pm-card   .payment-method-logo { background: #1A1F71; color: #fff; }
.pm-cod    .payment-method-logo { background: var(--charcoal); color: #fff; font-size: .6rem; }

.payment-method-name { flex: 1; font-weight: 600; font-size: .9375rem; }
.payment-method-sub  { font-size: .75rem; color: var(--color-muted); }
.payment-method-body { padding: 0 var(--space-4) var(--space-4); display: none; }
.payment-method.selected .payment-method-body { display: block; }
.payment-note {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: .875rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.payment-note svg { color: var(--rose); flex-shrink: 0; margin-top: 2px; }

/* Card fields */
.card-fields { display: flex; flex-direction: column; gap: var(--space-3); }
.card-number-field { position: relative; }
.card-brands { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: var(--space-1); }
.card-brand-icon { height: 20px; border-radius: 3px; }

/* Phone OTP field */
.otp-group { display: flex; gap: var(--space-2); }
.otp-input { width: 52px; height: 52px; text-align: center; font-size: 1.25rem; font-weight: 700; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); }
.otp-input:focus { border-color: var(--rose); outline: none; box-shadow: 0 0 0 3px rgba(168,92,117,.12); }

/* Order Summary sidebar */
.order-summary {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-height) + var(--space-5));
}
.order-summary-header { padding: var(--space-5) var(--space-6); background: var(--cream); border-bottom: 1px solid var(--color-border); font-weight: 700; font-size: 1rem; }
.order-items { padding: var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: var(--space-4); border-bottom: 1px solid var(--color-border); }
.order-item { display: flex; gap: var(--space-3); }
.order-item-img { width: 60px; height: 76px; border-radius: var(--radius-md); background: var(--blush-light); flex-shrink: 0; background-size: cover; background-position: center; position: relative; }
.order-item-qty-badge { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: var(--mid-gray); color: var(--white); border-radius: var(--radius-full); font-size: .6875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.order-item-name { font-weight: 600; font-size: .875rem; margin-bottom: var(--space-1); }
.order-item-meta { font-size: .75rem; color: var(--color-muted); }
.order-item-price { margin-left: auto; font-weight: 700; font-size: .9375rem; flex-shrink: 0; }

.order-totals { padding: var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); }
.total-row { display: flex; justify-content: space-between; font-size: .9375rem; }
.total-row.subtotal { color: var(--color-muted); }
.total-row.shipping { color: var(--color-muted); }
.total-row.discount { color: var(--color-success); }
.total-row.grand { font-weight: 700; font-size: 1.125rem; padding-top: var(--space-3); border-top: 1px solid var(--color-border); }

.coupon-form { padding: var(--space-4) var(--space-6); border-top: 1px solid var(--color-border); display: flex; gap: var(--space-2); }
.coupon-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); font-size: .875rem; outline: none; }
.coupon-input:focus { border-color: var(--rose); }

/* COD guarantee */
.cod-guarantee {
  margin: var(--space-4) var(--space-6);
  background: var(--blush-light);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: .8125rem;
  color: var(--rose-deep);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  border: 1px solid var(--blush);
}

/* ===========================
   ORDER CONFIRMATION PAGE
   =========================== */
.confirm-hero {
  text-align: center;
  padding: var(--space-9) 0 var(--space-7);
}
.confirm-checkmark {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--color-success), #2ECC71);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: 0 8px 24px rgba(74,140,106,.3);
}
.confirm-checkmark svg { color: var(--white); }
.order-id { font-size: .875rem; color: var(--color-muted); margin-top: var(--space-3); }
.order-id strong { color: var(--rose); }

.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-7); }
.confirm-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}
.confirm-card h4 { font-size: 1rem; margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-border); }

/* ===========================
   PAGE-SPECIFIC
   =========================== */
.page-banner {
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 100%);
  padding: var(--space-8) 0;
  margin-bottom: var(--space-7);
}
.page-banner h1 { font-size: clamp(1.75rem, 4vw, 3rem); }
.breadcrumbs { display: flex; align-items: center; gap: var(--space-2); font-size: .875rem; color: var(--color-muted); margin-bottom: var(--space-3); }
.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--rose); }
.breadcrumbs svg { width: 14px; height: 14px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .products-grid  { grid-template-columns: repeat(3, 1fr); }
  .category-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary   { position: static; }
}

@media (max-width: 900px) {
  .hero           { grid-template-columns: 1fr; min-height: 72vh; }
  .hero-visual    { display: none; }
  .hero-content   { padding: var(--space-8) var(--space-5); }
  .hero-overlay   { background: linear-gradient(180deg, rgba(253,250,248,.72) 0%, rgba(253,250,248,.54) 38%, rgba(253,250,248,.48) 66%, rgba(253,250,248,.70) 100%); }
  .hero-title     { text-shadow: 0 1px 18px rgba(253,250,248,.60); }
  .hero-subtitle  { text-shadow: 0 1px 10px rgba(253,250,248,.92); }
  .hero-trust .trust-item span { text-shadow: 0 1px 8px rgba(253,250,248,.92); }
  .pdp-layout     { grid-template-columns: 1fr; }
  .pdp-gallery    { position: static; }
  .shop-layout    { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .trust-pillars  { grid-template-columns: repeat(2, 1fr); }
  .fit-finder-banner { grid-template-columns: 1fr; }
  .fit-finder-steps { flex-wrap: wrap; }
  .confirm-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  .logo-img    { height: 56px; }
  .header-nav  { display: none; }
  .menu-toggle { display: flex; }
  .products-grid  { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .category-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .trust-pillars  { grid-template-columns: 1fr; }
  .payment-strip  { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =============================================
   FIT FINDER QUIZ
   ============================================= */
.ff-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(28,23,24,.55);
  backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: var(--space-4);
  opacity: 0; transition: opacity var(--duration-mid) var(--ease-soft);
}
.ff-overlay.open { display: flex; opacity: 1; }

.ff-modal {
  position: relative;
  width: 100%; max-width: 760px;
  max-height: 92vh;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: ffPop var(--duration-mid) var(--ease-spring);
}
@keyframes ffPop { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }

.ff-close {
  position: absolute; top: var(--space-4); right: var(--space-4); z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: 1px solid var(--color-border);
  color: var(--charcoal); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration-fast), transform var(--duration-fast);
}
.ff-close:hover { background: var(--blush-light); transform: rotate(90deg); }

.ff-progress { height: 4px; background: var(--blush-light); flex: none; }
.ff-progress > span { display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--blush-dark), var(--rose));
  transition: width var(--duration-mid) var(--ease-soft); }

.ff-body { padding: var(--space-7) var(--space-7) var(--space-6); overflow-y: auto; }

.ff-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--rose); margin-bottom: var(--space-3);
}
.ff-title { font-family: var(--font-display); font-size: 2rem; line-height: 1.15;
  color: var(--charcoal); margin-bottom: var(--space-4); }
.ff-title-sm { font-size: 1.5rem; }
.ff-lead { color: var(--color-muted); max-width: 52ch; margin-bottom: var(--space-5); }
.ff-help { color: var(--color-muted); font-size: .9375rem; margin-bottom: var(--space-4); }
.ff-help-center { text-align: center; margin-inline: auto; }

/* Intro */
.ff-intro { text-align: left; }
.ff-needbox { background: var(--blush-light); border-radius: var(--radius-lg);
  padding: var(--space-5); margin-bottom: var(--space-6); }
.ff-need-title { font-weight: 700; margin-bottom: var(--space-3); color: var(--charcoal); }
.ff-needbox ul { list-style: none; display: grid; gap: var(--space-2); }
.ff-needbox li { display: flex; align-items: center; gap: var(--space-3); color: var(--warm-gray); }
.ff-tick { width: 22px; height: 22px; flex: none; border-radius: 50%;
  background: var(--rose); color: #fff; font-size: .75rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; }
.ff-start { width: 100%; }
.ff-privacy { font-size: .8125rem; color: var(--mid-gray); margin-top: var(--space-4); text-align: center; }

/* Measurement step */
.ff-measure-grid { display: grid; grid-template-columns: 200px 1fr; gap: var(--space-6); align-items: center; }
.ff-diagram { display: flex; justify-content: center; }
.ff-torso { width: 100%; max-width: 200px; height: auto; }
.ff-measure line, .ff-measure path { animation: ffPulse 2s var(--ease-soft) infinite; }
@keyframes ffPulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.ff-value { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--rose);
  display: flex; align-items: baseline; gap: 6px; margin-bottom: var(--space-4); }
.ff-value small { font-size: 1rem; font-family: var(--font-body); color: var(--mid-gray); font-weight: 600; }

.ff-range { -webkit-appearance: none; appearance: none; width: 100%; height: 8px;
  border-radius: var(--radius-full); background: var(--blush-light); outline: none; cursor: pointer; }
.ff-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--rose); box-shadow: var(--shadow-md); cursor: grab; transition: transform var(--duration-fast); }
.ff-range::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.ff-range::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--rose); box-shadow: var(--shadow-md); cursor: grab; }
.ff-ticks { display: flex; justify-content: space-between; font-size: .8125rem;
  color: var(--mid-gray); margin-top: var(--space-3); }

/* Style cards grid */
.ff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); margin-bottom: var(--space-5); }
.ff-card { position: relative; text-align: center; padding: var(--space-5) var(--space-3);
  background: var(--white); border: 2px solid var(--color-border); border-radius: var(--radius-lg);
  cursor: pointer; transition: border-color var(--duration-fast), background var(--duration-fast), transform var(--duration-fast); }
.ff-card:hover { border-color: var(--blush-dark); transform: translateY(-2px); }
.ff-card.selected { border-color: var(--rose); background: var(--blush-light); }
.ff-card-icon { display: block; color: var(--rose); margin: 0 auto var(--space-3); width: 56px; }
.ff-card-icon svg { width: 100%; height: auto; }
.ff-card-label { display: block; font-weight: 700; color: var(--charcoal); margin-bottom: 2px; }
.ff-card-desc { display: block; font-size: .75rem; color: var(--mid-gray); }
.ff-card-check { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--rose); color: #fff; font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.5);
  transition: all var(--duration-fast) var(--ease-spring); }
.ff-card.selected .ff-card-check { opacity: 1; transform: scale(1); }

/* Choice list */
.ff-choice-list { display: grid; gap: var(--space-3); margin-bottom: var(--space-5); }
.ff-choice { display: flex; align-items: center; gap: var(--space-4); width: 100%; text-align: left;
  padding: var(--space-4) var(--space-5); background: var(--white);
  border: 2px solid var(--color-border); border-radius: var(--radius-lg); cursor: pointer;
  transition: border-color var(--duration-fast), background var(--duration-fast); }
.ff-choice:hover { border-color: var(--blush-dark); }
.ff-choice.selected { border-color: var(--rose); background: var(--blush-light); }
.ff-choice-emoji { font-size: 1.5rem; }
.ff-radio { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 2px solid var(--blush-dark); position: relative; }
.ff-choice.selected .ff-radio { border-color: var(--rose); }
.ff-choice.selected .ff-radio::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--rose); }
.ff-choice-label { font-weight: 600; color: var(--charcoal); }

/* Nav */
.ff-nav { display: flex; justify-content: space-between; gap: var(--space-3);
  padding-top: var(--space-5); border-top: 1px solid var(--color-border); }
.ff-nav .ff-next:disabled { opacity: .4; cursor: not-allowed; }

/* Results */
.ff-results { text-align: center; }
.ff-result-size { font-family: var(--font-display); font-size: 4.5rem; line-height: 1; color: var(--rose);
  margin: var(--space-2) 0 var(--space-3); letter-spacing: -.02em; }
.ff-result-sub { color: var(--warm-gray); margin-bottom: var(--space-3); }
.ff-sisters { font-size: .875rem; color: var(--mid-gray); margin-bottom: var(--space-4); }
.ff-result-note { color: var(--warm-gray); max-width: 56ch; margin: 0 auto var(--space-6); font-size: .9375rem; }
.ff-recos { margin: var(--space-6) 0; text-align: left; }
.ff-recos-title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: var(--space-4); text-align: center; }
.ff-recos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.ff-recos-grid .product-card-quick-add { display: none; }
.ff-result-actions { display: flex; flex-direction: column; gap: var(--space-3); align-items: center; margin-top: var(--space-5); }

@media (max-width: 640px) {
  .ff-body { padding: var(--space-6) var(--space-5) var(--space-5); }
  .ff-title { font-size: 1.6rem; }
  .ff-result-size { font-size: 3.5rem; }
  .ff-measure-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .ff-diagram { max-width: 150px; margin: 0 auto; }
  .ff-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-recos-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

/* ===========================
   MEMBERSHIP — SÜTYEN CLUB
   =========================== */

/* Hero */
.club-hero {
  background:
    radial-gradient(120% 120% at 85% 10%, rgba(232,186,197,.55) 0%, rgba(232,186,197,0) 55%),
    linear-gradient(160deg, var(--blush-light) 0%, #FBF4F7 45%, var(--cream) 100%);
  padding-block: var(--space-9);
  overflow: hidden;
}
.club-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-8);
  align-items: center;
}
.club-hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  color: var(--rose); font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--space-4);
}
.club-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--rose); display: inline-block; }
.club-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.04; letter-spacing: -.01em; margin-bottom: var(--space-4);
}
.club-hero h1 em { font-style: italic; color: var(--rose); }
.club-hero-lead { font-size: 1.0625rem; color: var(--color-muted); max-width: 470px; line-height: 1.7; margin-bottom: var(--space-6); }
.club-hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.club-hero-stats { display: flex; gap: var(--space-8); margin-top: var(--space-7); }
.club-stat-num { font-family: var(--font-display); font-size: 1.85rem; color: var(--rose-deep); line-height: 1; }
.club-stat-label { font-size: .8rem; color: var(--color-muted); margin-top: var(--space-1); }

/* Membership card visual */
.club-hero-visual { position: relative; display: grid; place-items: center; min-height: 320px; }
.club-card {
  position: relative;
  width: min(400px, 88%);
  aspect-ratio: 1.58 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 55%, #4E2236 100%);
  color: var(--white);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-5deg);
  animation: clubFloat 6s ease-in-out infinite;
}
.club-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,.12) 100%);
  pointer-events: none;
}
@keyframes clubFloat { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-5deg) translateY(-12px); } }
.club-card-top { display: flex; align-items: center; justify-content: space-between; }
.club-card-brand { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .02em; }
.club-card-tier {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.5); border-radius: var(--radius-full); padding: 5px 12px;
}
.club-card-chip { width: 42px; height: 30px; border-radius: 6px; background: linear-gradient(135deg, #F4D58D, #C99A3D); opacity: .92; }
.club-card-num { font-size: .95rem; letter-spacing: .22em; opacity: .9; }
.club-card-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.club-card-name { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.club-card-points { text-align: right; }
.club-card-points b { font-family: var(--font-display); font-size: 1.35rem; display: block; line-height: 1; }
.club-card-points span { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.club-card-badge {
  position: absolute; top: -18px; right: -10px; z-index: 2;
  background: var(--white); color: var(--rose-deep); border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; padding: 8px 16px; box-shadow: var(--shadow-md);
  transform: rotate(6deg);
}

/* Highlights row */
.club-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.club-highlight {
  background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-6); text-align: center; transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}
.club-highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.club-highlight-icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-4); border-radius: var(--radius-full);
  background: var(--blush-light); color: var(--rose); display: grid; place-items: center;
}
.club-highlight-icon svg { width: 30px; height: 30px; }
.club-highlight h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: var(--space-2); }
.club-highlight .big { font-size: 1.75rem; color: var(--rose-deep); font-weight: 700; display: block; margin-bottom: var(--space-2); }
.club-highlight p { color: var(--color-muted); font-size: .9375rem; line-height: 1.65; }

/* How it works */
.club-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); position: relative; }
.club-step { text-align: center; position: relative; }
.club-step-num {
  width: 56px; height: 56px; margin: 0 auto var(--space-4); border-radius: var(--radius-full);
  background: var(--charcoal); color: var(--white); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.4rem;
}
.club-step h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.club-step p { color: var(--color-muted); font-size: .9375rem; line-height: 1.65; max-width: 280px; margin-inline: auto; }

/* Tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); align-items: stretch; }
.tier-card {
  position: relative; background: var(--white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6) var(--space-5);
  display: flex; flex-direction: column; transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-card--featured { border-color: var(--rose); box-shadow: var(--shadow-lg); }
.tier-card--featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-full); white-space: nowrap;
}
.tier-dot { width: 36px; height: 36px; border-radius: var(--radius-full); margin-bottom: var(--space-3); box-shadow: inset 0 -6px 10px rgba(0,0,0,.12); }
.tier-dot--blush   { background: linear-gradient(135deg, #F3CAD6, #E8BAC5); }
.tier-dot--rose    { background: linear-gradient(135deg, #C98DA3, #A85C75); }
.tier-dot--gold    { background: linear-gradient(135deg, #F4D58D, #C99A3D); }
.tier-dot--diamond { background: linear-gradient(135deg, #BFE3EC, #7FA8C9); }
.tier-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: var(--space-1); }
.tier-card .tier-req { font-size: .82rem; color: var(--color-muted); margin-bottom: var(--space-4); }
.tier-earn { font-size: 1.05rem; font-weight: 700; color: var(--rose-deep); margin-bottom: var(--space-4); }
.tier-earn small { display: block; font-size: .75rem; font-weight: 500; color: var(--color-muted); }
.tier-perks { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); flex: 1; }
.tier-perks li { display: flex; gap: var(--space-2); font-size: .875rem; line-height: 1.5; align-items: flex-start; }
.tier-perks li svg { width: 16px; height: 16px; color: var(--rose); flex-shrink: 0; margin-top: 3px; }

/* Comparison table */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--white); }
.compare-table th, .compare-table td { padding: var(--space-4) var(--space-4); text-align: center; border-bottom: 1px solid var(--color-border); font-size: .9rem; }
.compare-table thead th { background: var(--cream); font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.compare-table thead th small { display: block; font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--color-muted); margin-top: 2px; }
.compare-table tbody th { text-align: left; font-weight: 600; color: var(--color-text); background: #FFFCFB; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table .yes { color: var(--rose); }
.compare-table .no { color: var(--light-gray); }
.compare-col-featured { background: var(--blush-light) !important; }
.compare-table svg { width: 18px; height: 18px; vertical-align: middle; }

/* Perk detail list */
.perk-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.perk-item { display: flex; gap: var(--space-4); padding: var(--space-5); background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.perk-item-icon { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-md); background: var(--blush-light); color: var(--rose); display: grid; place-items: center; }
.perk-item-icon svg { width: 24px; height: 24px; }
.perk-item h4 { font-size: 1.0625rem; margin-bottom: var(--space-1); }
.perk-item p { font-size: .9rem; color: var(--color-muted); line-height: 1.6; }

/* FAQ */
.club-faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding-block: var(--space-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-weight: 600; font-size: 1.0625rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-item summary .faq-plus::before, .faq-item summary .faq-plus::after {
  content: ''; position: absolute; background: var(--rose); transition: transform var(--duration-fast);
}
.faq-item summary .faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item summary .faq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-item[open] summary .faq-plus::after { transform: scaleY(0); }
.faq-answer { padding: 0 0 var(--space-5); color: var(--color-muted); line-height: 1.75; font-size: .95rem; max-width: 660px; }

/* CTA banner */
.club-cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--white); border-radius: var(--radius-xl); padding: var(--space-9) var(--space-7);
  text-align: center; position: relative; overflow: hidden;
}
.club-cta::before {
  content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.08); top: -140px; right: -80px;
}
.club-cta::after {
  content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.06); bottom: -120px; left: -60px;
}
.club-cta > * { position: relative; z-index: 1; }
.club-cta .eyebrow { color: rgba(255,255,255,.8); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.club-cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.75rem); margin-block: var(--space-3) var(--space-3); }
.club-cta p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto var(--space-6); line-height: 1.7; }
.club-cta .btn-white { background: var(--white); color: var(--rose-deep); }
.club-cta .btn-white:hover { background: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Terms */
.club-terms { max-width: 820px; margin-inline: auto; }
.club-terms ol { padding-left: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.club-terms li { font-size: .82rem; color: var(--color-muted); line-height: 1.6; }

/* Responsive */
@media (max-width: 960px) {
  .club-hero-inner { grid-template-columns: 1fr; gap: var(--space-7); text-align: center; }
  .club-hero-eyebrow, .club-hero-actions, .club-hero-stats { justify-content: center; }
  .club-hero-lead { margin-inline: auto; }
  .club-hero-visual { order: -1; min-height: 260px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-card--featured::before { font-size: .62rem; }
  .perk-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .club-highlights { grid-template-columns: 1fr; }
  .club-steps { grid-template-columns: 1fr; gap: var(--space-7); }
  .tier-grid { grid-template-columns: 1fr; }
  .club-hero-stats { gap: var(--space-6); }
  .club-card { transform: rotate(-3deg); }
  .club-cta { padding: var(--space-8) var(--space-5); }
}

/* =====================================================================
   MY ACCOUNT  (account.html)
   ===================================================================== */
.account-section { padding: var(--space-8) 0 var(--space-10); min-height: 70vh; background: var(--cream); }

/* flat card variant (no float / no rotation) reused on this page */
.club-card--flat { transform: none !important; animation: none !important; width: 100%; max-width: 380px; }

/* Loading */
.acct-loading { text-align: center; padding: var(--space-10) 0; color: var(--color-muted); }
.acct-spinner {
  width: 38px; height: 38px; margin: 0 auto var(--space-4); border-radius: 50%;
  border: 3px solid var(--blush-light); border-top-color: var(--rose); animation: acctSpin .8s linear infinite;
}
@keyframes acctSpin { to { transform: rotate(360deg); } }

/* ---- Boot failure (network / CDN) ---- */
.adm-boot-error {
  max-width: 420px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
}
.adm-boot-error svg { color: var(--rose-deep); }
.adm-boot-error h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0; color: var(--charcoal); }
.adm-boot-error p { margin: 0; color: var(--color-muted); line-height: 1.55; }
.adm-boot-error .btn { margin-top: var(--space-2); min-width: 140px; }
/* The [hidden] attribute must beat the flex/loading layouts above — an author
   `display` rule otherwise overrides the UA `[hidden]{display:none}`, leaving
   the boot-error card rendered underneath the spinner on every load (most
   visible on a slow boot). Keeps the spinner and the error mutually exclusive. */
.acct-loading[hidden] { display: none; }
.adm-boot-error[hidden] { display: none; }

/* ---- Auth (logged-out) ---- */
.acct-auth { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; max-width: 1040px; margin-inline: auto; }
.acct-auth-visual { text-align: left; }
.acct-auth-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1.1; margin: var(--space-3) 0 var(--space-6); }
.acct-auth-card { margin: 0 0 var(--space-6); }
.acct-perks { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.acct-perks li { display: flex; align-items: center; gap: var(--space-3); font-size: .95rem; color: var(--charcoal); }
.acct-perks svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--white); background: var(--rose); border-radius: 50%; padding: 3px; }

.acct-auth-panel {
  background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-xl);
  padding: var(--space-6); box-shadow: var(--shadow-lg);
}
.acct-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-1); background: var(--cream-dark); border-radius: var(--radius-full); padding: 4px; margin-bottom: var(--space-6); }
.acct-tab {
  border: none; background: transparent; padding: 10px 14px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600; color: var(--color-muted); cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.acct-tab.is-active { background: var(--white); color: var(--rose-deep); box-shadow: var(--shadow-sm); }

.acct-form { display: flex; flex-direction: column; gap: var(--space-4); }
.acct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.acct-field { display: flex; flex-direction: column; gap: 6px; }
.acct-field > span { font-size: .82rem; font-weight: 600; color: var(--charcoal); }
.acct-field > span em { font-style: normal; font-weight: 400; color: var(--color-muted); }
.acct-field input, .acct-field select, .acct-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .95rem; background: var(--white); color: var(--charcoal);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.acct-field textarea { resize: vertical; min-height: 92px; line-height: 1.5; }
.acct-field input:focus, .acct-field select:focus, .acct-field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--blush-light); }
.acct-form-foot { font-size: .85rem; color: var(--color-muted); text-align: center; margin-top: 2px; }
.acct-form-foot a { color: var(--rose-deep); font-weight: 600; }

.acct-msg { padding: 11px 14px; border-radius: var(--radius-md); font-size: .86rem; line-height: 1.5; }
.acct-msg--error { background: #FDECEA; color: #B3261E; border: 1px solid #F6C9C2; }
.acct-msg--success { background: #E9F5EF; color: #1F6B47; border: 1px solid #BFE3D2; }

/* ---- Dashboard (logged-in) ---- */
.acct-dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-7); }
.acct-greeting { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.3rem); line-height: 1.1; margin-top: 2px; }
.acct-sub { color: var(--color-muted); font-size: .9rem; margin-top: var(--space-2); }

.acct-grid { display: grid; grid-template-columns: 380px 1fr; gap: var(--space-6); align-items: start; }
.acct-col-main, .acct-col-side { display: flex; flex-direction: column; gap: var(--space-5); }
.acct-card-wrap { display: grid; place-items: center; padding: var(--space-2) 0 var(--space-3); }

.acct-panel { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.acct-panel-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: var(--space-4); }
.acct-empty { color: var(--color-muted); font-size: .9rem; }
.acct-empty a { color: var(--rose-deep); font-weight: 600; }
.acct-stat-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-muted); }

/* tier badge accents on the live card */
.club-card.tier-gold .club-card-tier { border-color: #EAC76B; color: #F6E2A6; }
.club-card.tier-diamond .club-card-tier { border-color: #BFE3EA; color: #E9F8FB; }

/* tier progress */
.acct-tier-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-3); }
.acct-tier-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--rose-deep); }
.acct-tier-spend { font-family: var(--font-display); font-size: 1.25rem; }
.acct-progress { height: 9px; border-radius: var(--radius-full); background: var(--cream-dark); overflow: hidden; }
.acct-progress-bar { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--rose), var(--rose-deep)); transition: width .6s ease; }
.acct-tier-note { font-size: .85rem; color: var(--color-muted); margin-top: var(--space-3); }

/* redeem */
.acct-redeem { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.acct-redeem-copy h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }
.acct-redeem-copy p { font-size: .85rem; color: var(--color-muted); line-height: 1.5; }
.acct-redeem .btn { flex: 0 0 auto; white-space: nowrap; }
.acct-redeem .btn:disabled { opacity: .45; cursor: not-allowed; }

/* stat row */
.acct-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.acct-stat { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); text-align: center; }
.acct-stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--rose-deep); line-height: 1; }
.acct-stat span { display: block; margin-top: 6px; font-size: .72rem; letter-spacing: .04em; color: var(--color-muted); }

/* vouchers */
.acct-vouchers { display: flex; flex-direction: column; gap: var(--space-3); }
.voucher {
  position: relative; display: flex; align-items: center; gap: var(--space-4);
  border: 1px dashed var(--blush-dark); border-radius: var(--radius-md); padding: var(--space-4);
  background: var(--blush-light);
}
.voucher--used, .voucher--expired { opacity: .6; border-style: solid; border-color: var(--color-border); background: var(--cream-dark); }
.voucher-left { flex: 0 0 auto; }
.voucher-amt { font-family: var(--font-display); font-size: 1.4rem; color: var(--rose-deep); line-height: 1; }
.voucher-meta { font-size: .72rem; color: var(--color-muted); margin-top: 4px; }
.voucher-right { flex: 1 1 auto; min-width: 0; }
.voucher-code { font-family: ui-monospace, Menlo, monospace; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--charcoal); background: var(--white); padding: 3px 8px; border-radius: var(--radius-sm); border: 1px solid var(--color-border); }
.voucher-sub { font-size: .72rem; color: var(--color-muted); margin-top: 6px; }
.voucher-pill { position: absolute; top: 10px; right: 10px; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-full); }
.voucher-pill--active { background: var(--color-success); color: var(--white); }
.voucher-pill--used { background: var(--warm-gray, #8a807c); color: var(--white); }
.voucher-pill--expired { background: #C0504D; color: var(--white); }

/* points activity */
.acct-history { display: flex; flex-direction: column; }
.txn { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border); }
.txn:last-child { border-bottom: none; }
.txn-icon { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; display: grid; place-items: center; }
.txn-icon svg { width: 16px; height: 16px; }
.txn-icon--earn { background: #E9F5EF; color: #1F6B47; }
.txn-icon--spend { background: var(--blush-light); color: var(--rose-deep); }
.txn-body { flex: 1 1 auto; min-width: 0; }
.txn-label { font-size: .9rem; font-weight: 500; }
.txn-date { font-size: .75rem; color: var(--color-muted); margin-top: 2px; }
.txn-pts { text-align: right; font-weight: 700; font-size: 1rem; }
.txn-pts span { display: block; font-size: .68rem; font-weight: 400; color: var(--color-muted); margin-top: 2px; }
.txn-pts.is-pos { color: #1F6B47; }
.txn-pts.is-neg { color: var(--rose-deep); }

/* orders */
.acct-orders { display: flex; flex-direction: column; }
.order-row { position: relative; display: flex; align-items: center; gap: var(--space-4); padding: var(--space-3) 0; border-bottom: 1px solid var(--color-border); }
.order-row:last-child { border-bottom: none; }
.order-main { flex: 1 1 auto; min-width: 0; }
.order-num { font-size: .9rem; font-weight: 600; }
.order-date { font-size: .75rem; color: var(--color-muted); margin-top: 2px; }
.order-side { text-align: right; }
.order-total { font-size: .95rem; font-weight: 600; }
.order-pts { font-size: .72rem; color: #1F6B47; margin-top: 2px; }
.order-pill { flex: 0 0 auto; font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--radius-full); }
.order-pill--paid { background: #E9F5EF; color: #1F6B47; }
.order-pill--delivered { background: #E7F0FA; color: #2A5C8A; }
.order-pill--pending { background: var(--cream-dark); color: var(--color-muted); }
.order-pill--cancelled, .order-pill--refunded { background: #FDECEA; color: #B3261E; }

@media (max-width: 960px) {
  .acct-grid { grid-template-columns: 1fr; }
  .acct-auth { grid-template-columns: 1fr; gap: var(--space-7); }
  .acct-auth-visual { text-align: center; }
  .acct-auth-card { margin-inline: auto; }
  .acct-perks { max-width: 360px; margin-inline: auto; }
}
@media (max-width: 520px) {
  .acct-form-row { grid-template-columns: 1fr; }
  .acct-dash-head { flex-direction: column; }
  .acct-stats { grid-template-columns: 1fr; }
  .acct-redeem { flex-direction: column; align-items: stretch; text-align: center; }
}

/* =====================================================================
   ADMIN CONSOLE  (admin.html)
   ===================================================================== */
.admin-body { background: var(--cream); }
.admin-wrap { min-height: 100vh; padding: var(--space-6) 0 var(--space-10); }
.admin-shell { width: 92%; max-width: 980px; margin-inline: auto; }

/* brand lockup */
.admin-brand { display: flex; align-items: baseline; gap: var(--space-2); }
.admin-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--rose-deep); letter-spacing: .01em; }
.admin-tag { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--color-muted); }

/* login / denied panels — centred, narrow */
.admin-auth-panel { max-width: 420px; margin: 8vh auto 0; }
.admin-auth-lead { font-size: .92rem; color: var(--color-muted); line-height: 1.55; margin: var(--space-3) 0 var(--space-5); }
.admin-denied-title { font-family: var(--font-display); font-size: 1.5rem; margin-top: var(--space-3); }
.admin-foot-note { font-size: .76rem; color: var(--color-muted); line-height: 1.5; margin-top: var(--space-5); }
.admin-foot-note--center { text-align: center; max-width: 640px; margin-inline: auto; }

/* top bar */
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-bottom: var(--space-5); margin-bottom: var(--space-5); border-bottom: 1px solid var(--color-border); }
.admin-top-right { display: flex; align-items: center; gap: var(--space-4); }
.admin-who { font-size: .82rem; color: var(--color-muted); }

/* panels */
.admin-panel { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); margin-bottom: var(--space-5); }
.admin-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-4); }
.admin-panel-title { font-family: var(--font-display); font-size: 1.2rem; }
.admin-panel-sub { font-size: .85rem; color: var(--color-muted); line-height: 1.5; margin-top: 4px; }

/* create demo order row */
.admin-demo-row { display: flex; align-items: flex-end; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.admin-demo-row .acct-field { flex: 1 1 200px; }
.admin-demo-row .admin-amount-field { flex: 0 1 160px; }
.admin-demo-row .btn { flex: 0 0 auto; }

/* orders table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th { text-align: left; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-muted); font-weight: 700; padding: 0 var(--space-3) var(--space-3); border-bottom: 1px solid var(--color-border); white-space: nowrap; }
.admin-table td { padding: var(--space-3); border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .ta-r { text-align: right; }
.admin-sub { display: block; font-size: .72rem; color: var(--color-muted); margin-top: 2px; }
.admin-muted { color: var(--color-muted); font-size: .82rem; }
.admin-pts { color: #1F6B47; font-weight: 600; white-space: nowrap; }
.admin-loading-inline { padding: var(--space-4) 0; }

@media (max-width: 600px) {
  .admin-demo-row { flex-direction: column; align-items: stretch; }
  .admin-demo-row .acct-field, .admin-demo-row .admin-amount-field, .admin-demo-row .btn { flex: 1 1 auto; width: 100%; }
  .admin-table { font-size: .82rem; }
  .admin-table th, .admin-table td { padding-left: var(--space-2); padding-right: var(--space-2); }
}

/* discreet staff/admin link in the footer legal row */
.footer-staff { opacity: .5; transition: opacity var(--duration-fast); }
.footer-staff:hover { opacity: 1; }

/* =========================================================================
   PDP 3D product viewer (PRD §8.2) — overlays the main gallery image
   ========================================================================= */
.pdp-3d-pill {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--rose-deep);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(125,58,82,.14);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 4;
  transition: transform var(--duration-fast) var(--ease-soft), background var(--duration-fast);
}
.pdp-3d-pill:hover { transform: translateY(-1px); background: #fff; }
.pdp-3d-pill svg { color: var(--rose); }

.pdp-3d-stage {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: none;
  background:
    radial-gradient(120% 90% at 50% 18%, #FBF4F1 0%, #F4E7EC 55%, #ECD9E0 100%);
  cursor: grab;
}
.pdp-3d-stage.is-active { display: block; }
.pdp-3d-stage:active { cursor: grabbing; }
.pdp-3d-stage canvas { display: block; width: 100%; height: 100%; outline: none; touch-action: none; }
.pdp-3d-stage canvas:focus-visible { box-shadow: inset 0 0 0 3px var(--rose); }

.pdp-3d-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: var(--rose);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.pdp-3d-exit {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.pdp-3d-exit:hover { background: #fff; }

.pdp-3d-hint {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  color: var(--rose-deep);
  background: rgba(255,255,255,.78);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  transition: opacity var(--duration-fast) var(--ease-soft);
}
.pdp-3d-stage.has-active-hotspot .pdp-3d-hint { opacity: 0; }

.pdp-3d-toolbar {
  position: absolute;
  left: 50%;
  bottom: var(--space-4);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(125,58,82,.16);
  z-index: 3;
  max-width: calc(100% - var(--space-5));
  flex-wrap: wrap;
  justify-content: center;
}
.v3d-swatches { display: inline-flex; gap: 6px; }
.v3d-swatch {
  width: 20px; height: 20px;
  border-radius: var(--radius-full);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  cursor: pointer;
  transition: transform var(--duration-fast);
}
.v3d-swatch:hover { transform: scale(1.12); }
.v3d-swatch.is-active { box-shadow: 0 0 0 2px var(--rose); }
.v3d-sep { width: 1px; height: 18px; background: var(--color-border); }
.v3d-btn {
  font-size: .72rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.v3d-btn:hover { background: var(--blush-light); }
.v3d-btn.is-on { background: var(--rose); color: #fff; }

.pdp-3d-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: .85rem;
  color: var(--rose-deep);
  z-index: 4;
}
.pdp-3d-loading.is-hidden { display: none; }
.pdp-3d-spinner {
  width: 30px; height: 30px;
  border: 3px solid rgba(168,92,117,.25);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: v3dspin .8s linear infinite;
}
.v3d-fail { font-size: .82rem; color: var(--rose-deep); text-align: center; padding: 0 var(--space-5); }
@keyframes v3dspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .pdp-3d-spinner { animation-duration: 1.6s; } }

/* PDP loading state: hide the static placeholder until the ?id= product loads */
.pdp-loader { display: none; }
.pdp-loading .pdp-layout { display: none; }
.pdp-loading .pdp-loader {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); min-height: 52vh; color: var(--color-muted); font-size: .9rem;
}
.pdp-loader-spinner {
  width: 38px; height: 38px;
  border: 3px solid rgba(168,92,117,.22);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: v3dspin .8s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .pdp-loader-spinner { animation-duration: 1.6s; } }

/* ---- material hotspots (labeled macro-zoom pins) ---- */
.v3d-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;            /* drag passes through to the canvas */
  transition: opacity var(--duration-fast) var(--ease-soft);
}
.v3d-hotspots.is-hidden { opacity: 0; pointer-events: none; }
.v3d-hotspot {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  pointer-events: auto;            /* but the pin itself is clickable */
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: opacity var(--duration-fast) var(--ease-soft);
}
.v3d-hotspot.is-occluded { opacity: 0; pointer-events: none; }
.v3d-hotspot:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: var(--radius-full); }
.v3d-hot-dot {
  position: relative;
  flex: 0 0 auto;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  border: 2px solid var(--rose);
  box-shadow: 0 1px 5px rgba(125,58,82,.35);
}
.v3d-hot-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(168,92,117,.5);
  animation: v3dpulse 2.4s ease-out infinite;
}
@keyframes v3dpulse {
  0%   { transform: scale(.55); opacity: .85; }
  100% { transform: scale(1.5); opacity: 0; }
}
.v3d-hot-label {
  font-size: .66rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(125,58,82,.14);
  transition: background var(--duration-fast), color var(--duration-fast);
}
.v3d-hotspot:hover .v3d-hot-label,
.v3d-hotspot:focus-visible .v3d-hot-label,
.v3d-hotspot.is-active .v3d-hot-label { background: var(--rose); color: #fff; }
.v3d-hotspot.is-active .v3d-hot-dot { background: var(--rose); border-color: #fff; }
.v3d-hotspot.is-active .v3d-hot-dot::after { animation: none; }

.v3d-caption {
  position: absolute;
  top: 40px; left: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - var(--space-6));
  text-align: center;
  color: #fff;
  background: rgba(43,36,38,.86);
  backdrop-filter: blur(6px);
  padding: 6px 8px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(43,36,38,.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--duration-fast) var(--ease-soft), transform var(--duration-fast) var(--ease-soft);
  z-index: 3;
}
.v3d-caption.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
.v3d-cap-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 0 2px;
  min-width: 0;
}
.v3d-cap-title { font-size: .8rem; font-weight: 700; letter-spacing: .01em; }
.v3d-cap-meta { font-size: .68rem; opacity: .86; }
.v3d-cap-count {
  font-size: .56rem; opacity: .55;
  letter-spacing: .14em; text-transform: uppercase;
  margin-top: 2px;
}
.v3d-cap-nav {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.05rem; line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: background var(--duration-fast) var(--ease-soft), border-color var(--duration-fast) var(--ease-soft);
}
.v3d-cap-nav:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.v3d-cap-nav:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; }
.v3d-cap-nav span { display: block; margin-top: -2px; }
@media (prefers-reduced-motion: reduce) { .v3d-hot-dot::after { animation: none; } }

@media (max-width: 600px) {
  .pdp-3d-hint { display: none; }
  .pdp-3d-toolbar { gap: 6px; padding: 7px 10px; }
  .v3d-btn { padding: 4px 8px; font-size: .68rem; }
  .v3d-hot-label { font-size: .6rem; padding: 2px 6px; }
  .v3d-caption { top: 14px; padding: 5px 6px; gap: 6px; }
  .v3d-cap-nav { width: 24px; height: 24px; }
}

/* =========================================================================
   CONTENT PAGES (info / support / legal) — shared layout primitives
   ========================================================================= */
.breadcrumb { font-size: .8rem; color: var(--color-muted); padding: var(--space-5) 0 0; }
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { color: var(--color-text); }

/* Page hero — compact banner for non-product pages */
.page-hero { background: var(--blush-light); border-bottom: 1px solid var(--color-border); text-align: center; padding: var(--space-8) var(--space-5); }
.page-hero .eyebrow { color: var(--rose); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: var(--space-3); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; margin: 0 auto var(--space-4); max-width: 16ch; }
.page-hero p { color: var(--color-muted); max-width: 56ch; margin: 0 auto; line-height: 1.7; font-size: 1.0625rem; }
.page-hero--plain { background: var(--cream); }

/* Width wrappers */
.content-narrow { max-width: 760px; margin-inline: auto; }
.content-mid { max-width: 920px; margin-inline: auto; }

/* Long-form prose (legal, story, policy bodies) */
.prose { color: var(--color-text); line-height: 1.8; font-size: 1rem; }
.prose > * + * { margin-top: var(--space-4); }
.prose h2 { font-family: var(--font-display); font-size: 1.6rem; margin-top: var(--space-7); margin-bottom: var(--space-3); }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin-top: var(--space-6); margin-bottom: var(--space-2); }
.prose p, .prose li { color: var(--color-muted); }
.prose ul, .prose ol { padding-left: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); }
.prose a { color: var(--rose); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--color-text); }
.prose .lede { font-size: 1.15rem; color: var(--color-text); line-height: 1.7; }
.legal-meta { font-size: .8rem; color: var(--mid-gray); margin-bottom: var(--space-6); padding-bottom: var(--space-5); border-bottom: 1px solid var(--color-border); }

/* Anchored section offset so in-page links clear the sticky header */
.anchor-offset { scroll-margin-top: 96px; }

/* Info card grid — shipping zones, contact methods, value props */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5); }
.info-card { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.info-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--blush-light); color: var(--rose); display: grid; place-items: center; margin-bottom: var(--space-4); }
.info-card-icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.0625rem; margin-bottom: var(--space-2); }
.info-card p { font-size: .9rem; color: var(--color-muted); line-height: 1.65; }
.info-card .info-card-meta { display: block; margin-top: var(--space-3); font-weight: 700; color: var(--rose); font-size: .95rem; }

/* Numbered process steps */
.step-list { display: grid; gap: var(--space-5); counter-reset: step; }
.step-row { display: grid; grid-template-columns: 48px 1fr; gap: var(--space-4); align-items: start; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: #fff; font-weight: 700; font-size: 1.1rem; display: grid; place-items: center; }
.step-row h3 { font-size: 1.0625rem; margin-bottom: var(--space-1); }
.step-row p { font-size: .92rem; color: var(--color-muted); line-height: 1.65; }

/* Data tables (size charts) */
.data-table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 460px; }
.data-table caption { text-align: left; font-weight: 700; padding: var(--space-4) var(--space-5); background: var(--cream); border-bottom: 1px solid var(--color-border); }
.data-table th, .data-table td { padding: var(--space-3) var(--space-4); text-align: center; border-bottom: 1px solid var(--color-border); }
.data-table thead th { background: var(--blush-light); font-weight: 700; color: var(--color-text); white-space: nowrap; }
.data-table tbody tr:nth-child(even) { background: var(--cream); }
.data-table tbody th { text-align: left; font-weight: 600; background: var(--white); }
.data-table tbody tr:hover td, .data-table tbody tr:hover th { background: var(--blush-light); }

/* How-to-measure */
.measure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-5); }
.measure-card { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.measure-card .measure-tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); }
.measure-card h3 { font-size: 1.05rem; margin: var(--space-2) 0; }
.measure-card p { font-size: .9rem; color: var(--color-muted); line-height: 1.65; }

/* Two-column support layout (contact / track order) */
.support-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-7); align-items: start; }
.support-panel { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: var(--space-7); box-shadow: var(--shadow-sm); }
.support-aside .contact-line { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-4) 0; border-bottom: 1px solid var(--color-border); }
.support-aside .contact-line:last-child { border-bottom: 0; }
.support-aside .contact-line svg { width: 20px; height: 20px; color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.support-aside .contact-line h4 { font-size: .95rem; margin-bottom: 2px; }
.support-aside .contact-line p, .support-aside .contact-line a { font-size: .88rem; color: var(--color-muted); line-height: 1.6; }
.support-aside .contact-line a:hover { color: var(--rose); }

/* Track-order result */
.track-result { margin-top: var(--space-6); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.track-result-head { background: var(--cream); padding: var(--space-5); border-bottom: 1px solid var(--color-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); }
.track-steps { list-style: none; padding: var(--space-6); display: grid; gap: 0; }
.track-step { display: grid; grid-template-columns: 28px 1fr; gap: var(--space-4); padding-bottom: var(--space-6); position: relative; }
.track-step:not(:last-child)::before { content: ''; position: absolute; left: 13px; top: 26px; bottom: 0; width: 2px; background: var(--color-border); }
.track-step .dot { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--color-border); background: var(--white); z-index: 1; display: grid; place-items: center; }
.track-step.done .dot { background: var(--rose); border-color: var(--rose); color: #fff; }
.track-step.done:not(:last-child)::before { background: var(--rose); }
.track-step.current .dot { border-color: var(--rose); box-shadow: 0 0 0 4px var(--blush-light); }
.track-step h4 { font-size: .95rem; margin-bottom: 2px; }
.track-step p { font-size: .82rem; color: var(--color-muted); }

/* Stat band (about page) */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); background: var(--blush-light); border-radius: var(--radius-lg); padding: var(--space-6); text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--rose); line-height: 1.1; }
.stat-item span { font-size: .82rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .06em; }

/* CTA strip reused on content pages */
.content-cta { text-align: center; }
.content-cta .btn + .btn { margin-left: var(--space-3); }

@media (max-width: 820px) {
  .support-split { grid-template-columns: 1fr; gap: var(--space-6); }
}
@media (max-width: 640px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}
@media (max-width: 600px) {
  .page-hero { padding: var(--space-7) var(--space-4); }
  .support-panel { padding: var(--space-6); }
  .content-cta .btn { display: block; width: 100%; }
  .content-cta .btn + .btn { margin-left: 0; margin-top: var(--space-3); }
}

/* =====================================================================
   ADMIN DASHBOARD  (admin.html) — Shopify-style app shell
   Namespace: .adm-*  (the gate/auth panels still reuse .admin-*)
   ===================================================================== */

/* Gate: centred loading / login / denied states */
.adm-gate { min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; padding: var(--space-6) var(--space-4) var(--space-10); }
.adm-gate .admin-auth-panel { margin-top: 8vh; }

/* App shell */
.adm-app { display: flex; min-height: 100vh; background: var(--cream); }

/* CRITICAL: the whole admin UI shows/hides via the [hidden] attribute (gates,
   nav badge, section panels, the image-upload widget parts, inline messages…).
   But many .adm-* classes set their own `display`, which overrides the UA
   `[hidden]{display:none}` — so "hidden" elements kept rendering. The worst case
   was every gate (loading, login, denied AND the console shell) showing at once:
   a ~6×-tall page you had to scroll through to reach the login form.
   Make [hidden] authoritative across the admin page so exactly the intended
   element shows. Scoped to .admin-body so the storefront is untouched; drawers/
   sidebar use .is-open + aria-hidden (not [hidden]), so they're unaffected. */
.admin-body [hidden] { display: none !important; }

/* ---------- Sidebar ---------- */
.adm-sidebar {
  flex: 0 0 244px; width: 244px;
  position: sticky; top: 0; align-self: flex-start;
  height: 100vh; display: flex; flex-direction: column;
  background: linear-gradient(185deg, #7D3A52 0%, #6B2E44 60%, #5E2839 100%);
  color: #fff; z-index: 40;
}
.adm-side-brand { display: flex; align-items: baseline; gap: var(--space-2); padding: var(--space-6) var(--space-5) var(--space-5); }
.adm-side-brand .admin-logo { color: #fff; }
.adm-side-tag { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blush); }

.adm-nav { display: flex; flex-direction: column; gap: 2px; padding: var(--space-2) var(--space-3); overflow-y: auto; flex: 1 1 auto; }
.adm-nav-link {
  display: flex; align-items: center; gap: var(--space-3);
  width: 100%; padding: 10px var(--space-3); border: 0; background: transparent;
  color: rgba(255,255,255,.78); font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  text-align: left; border-radius: var(--radius-md); cursor: pointer;
  transition: background var(--duration-fast) var(--ease-soft), color var(--duration-fast);
}
.adm-nav-link svg { width: 19px; height: 19px; flex: 0 0 auto; opacity: .85; }
.adm-nav-link span:not(.adm-nav-badge) { flex: 1 1 auto; }
.adm-nav-link:hover { background: rgba(255,255,255,.10); color: #fff; }
.adm-nav-link.is-active { background: rgba(255,255,255,.16); color: #fff; }
.adm-nav-link.is-active svg { opacity: 1; color: var(--blush); }
.adm-nav-badge {
  flex: 0 0 auto; min-width: 20px; height: 20px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; border-radius: var(--radius-full);
  background: var(--blush); color: var(--rose-deep);
}
.adm-side-foot { padding: var(--space-4) var(--space-3) var(--space-5); border-top: 1px solid rgba(255,255,255,.12); }
.adm-side-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px var(--space-3); font-size: .82rem; color: rgba(255,255,255,.72); border-radius: var(--radius-md); }
.adm-side-link svg { width: 16px; height: 16px; }
.adm-side-link:hover { color: #fff; background: rgba(255,255,255,.10); }

.adm-backdrop { display: none; position: fixed; inset: 0; background: rgba(45,20,30,.45); z-index: 35; }
.adm-backdrop.is-open { display: block; }

/* ---------- Main column ---------- */
.adm-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }

.adm-topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background: rgba(253,250,248,.88); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.adm-topbar-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; flex: 1 1 auto; }
.adm-topbar-right { display: flex; align-items: center; gap: var(--space-3); }
.adm-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--color-border); background: var(--white);
  border-radius: var(--radius-md); color: var(--color-text); cursor: pointer;
  transition: background var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast);
}
.adm-icon-btn svg { width: 18px; height: 18px; }
.adm-icon-btn:hover { background: var(--cream-dark); border-color: var(--blush-dark); }
.adm-icon-btn.is-busy svg { animation: adm-spin .7s linear infinite; }
.adm-menu-btn { display: none; }

.adm-user { display: flex; align-items: center; gap: var(--space-2); }
.adm-avatar { width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--rose), var(--rose-deep)); text-transform: uppercase; }
.adm-user-meta { display: flex; flex-direction: column; line-height: 1.2; }
.adm-user-name { font-size: .82rem; font-weight: 600; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.adm-signout { align-self: flex-start; padding: 0; border: 0; background: none; color: var(--rose); font-size: .74rem; cursor: pointer; }
.adm-signout:hover { text-decoration: underline; }

/* ---------- Content / sections ---------- */
.adm-content { padding: var(--space-6); flex: 1 1 auto; }
.adm-section { display: flex; flex-direction: column; gap: var(--space-5); animation: adm-fade var(--duration-mid) var(--ease-soft); }
.adm-section[hidden] { display: none; }
.adm-h2 { font-family: var(--font-display); font-size: 1.4rem; }
.adm-sub { font-size: .85rem; color: var(--color-muted); line-height: 1.5; margin-top: 2px; }

/* ---------- KPI cards ---------- */
.adm-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.adm-kpis--4 { grid-template-columns: repeat(4, 1fr); }
.adm-kpi {
  background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: var(--space-5); display: flex; flex-direction: column; gap: 6px; min-height: 116px; position: relative; overflow: hidden;
}
.adm-kpi-icon {
  position: absolute; top: var(--space-4); right: var(--space-4);
  width: 34px; height: 34px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--blush-light); color: var(--rose);
}
.adm-kpi-icon svg { width: 18px; height: 18px; }
.adm-kpi-label { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--color-muted); }
.adm-kpi-value { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--rose-deep); line-height: 1.05; }
.adm-kpi-meta { font-size: .76rem; color: var(--color-muted); margin-top: auto; }
.adm-kpi-meta strong { color: var(--color-success); font-weight: 600; }
.adm-kpi--skeleton { background: linear-gradient(100deg, var(--cream-dark) 30%, #f3ebe6 50%, var(--cream-dark) 70%); background-size: 200% 100%; animation: adm-shimmer 1.2s linear infinite; border-color: transparent; }

/* ---------- Cards ---------- */
.adm-card { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.adm-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-4); }
.adm-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.adm-card-meta { font-size: .8rem; color: var(--color-muted); font-weight: 600; }
.adm-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.adm-link-btn { border: 0; background: none; color: var(--rose); font-size: .82rem; font-weight: 600; cursor: pointer; }
.adm-link-btn:hover { text-decoration: underline; }

/* ---------- Bar chart (sales) ---------- */
.adm-chart { display: flex; align-items: stretch; gap: 5px; height: 180px; }
.adm-bar { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 0; }
.adm-bar-col { flex: 1 1 auto; width: 100%; display: flex; align-items: flex-end; justify-content: center; }
.adm-bar-fill { width: 66%; max-width: 22px; min-height: 4px; background: linear-gradient(180deg, var(--blush-dark), var(--rose)); border-radius: 5px 5px 0 0; transition: height var(--duration-slow) var(--ease-soft); }
.adm-bar:hover .adm-bar-fill { background: linear-gradient(180deg, var(--rose), var(--rose-deep)); }
.adm-bar-label { font-size: .6rem; color: var(--color-muted); white-space: nowrap; }
.adm-chart-empty { display: flex; align-items: center; justify-content: center; height: 180px; color: var(--color-muted); font-size: .85rem; }

/* ---------- Horizontal status / distribution bars ---------- */
.adm-statusbars { display: flex; flex-direction: column; gap: var(--space-4); }
.adm-sbar { display: grid; grid-template-columns: 96px 1fr 54px; align-items: center; gap: var(--space-3); }
.adm-sbar-label { font-size: .82rem; display: flex; align-items: center; gap: 7px; text-transform: capitalize; }
.adm-sbar-track { height: 9px; background: var(--cream-dark); border-radius: var(--radius-full); overflow: hidden; }
.adm-sbar-fill { height: 100%; border-radius: var(--radius-full); background: var(--rose); transition: width var(--duration-slow) var(--ease-soft); min-width: 2px; }
.adm-sbar-fill--paid { background: #2E9E6B; }
.adm-sbar-fill--pending { background: var(--blush-dark); }
.adm-sbar-fill--delivered { background: #3E7CB8; }
.adm-sbar-fill--cancelled { background: #D06155; }
.adm-sbar-val { font-size: .85rem; font-weight: 600; text-align: right; }
.adm-dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; background: var(--rose); }
.adm-dot--blush { background: var(--blush-dark); }
.adm-dot--silver { background: #9AA3AD; }
.adm-dot--gold { background: #C9A24B; }
.adm-dot--platinum, .adm-dot--velvet { background: #6B5B73; }

/* ---------- Tabs / filters ---------- */
.adm-tabs { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-3); }
.adm-tab { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border: 1px solid transparent; background: transparent; color: var(--color-muted); font-family: var(--font-body); font-size: .82rem; font-weight: 600; border-radius: var(--radius-full); cursor: pointer; transition: background var(--duration-fast), color var(--duration-fast); }
.adm-tab:hover { background: var(--cream-dark); color: var(--color-text); }
.adm-tab.is-active { background: var(--blush-light); color: var(--rose-deep); }
.adm-tab-count { font-size: .68rem; padding: 1px 6px; border-radius: var(--radius-full); background: var(--cream-dark); color: var(--color-muted); }
.adm-tab.is-active .adm-tab-count { background: var(--blush); color: var(--rose-deep); }

/* ---------- Tier pill ---------- */
.adm-tier { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-full); background: var(--blush-light); color: var(--rose-deep); white-space: nowrap; }
.adm-tier .adm-dot { width: 7px; height: 7px; }

/* ---------- Products grid ---------- */
.adm-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: var(--space-4); }
.adm-prod { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); display: flex; flex-direction: column; transition: box-shadow var(--duration-fast), transform var(--duration-fast); }
.adm-prod:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.adm-prod-thumb { aspect-ratio: 4 / 5; position: relative; display: flex; align-items: flex-end; justify-content: flex-start; padding: var(--space-3); overflow: hidden; }
.adm-prod-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.adm-prod-badge { position: absolute; top: var(--space-3); right: var(--space-3); z-index: 2; font-size: .6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-full); background: var(--white); color: var(--rose-deep); box-shadow: var(--shadow-sm); }
.adm-prod-badge--new { background: var(--rose-deep); color: #fff; }
.adm-prod-swatches { display: flex; gap: 5px; position: relative; z-index: 2; }
.adm-prod-swatch { width: 15px; height: 15px; border-radius: 50%; border: 2px solid rgba(255,255,255,.85); box-shadow: var(--shadow-sm); }
.adm-prod-body { padding: var(--space-3) var(--space-4) var(--space-4); display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; }
.adm-prod-cat { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-muted); }
.adm-prod-name { font-size: .88rem; font-weight: 600; line-height: 1.3; }
.adm-prod-rating { font-size: .74rem; color: var(--color-muted); }
.adm-prod-foot { margin-top: auto; display: flex; align-items: baseline; gap: 8px; padding-top: var(--space-2); }
.adm-prod-price { font-weight: 700; color: var(--rose-deep); }
.adm-prod-orig { font-size: .76rem; color: var(--color-muted); text-decoration: line-through; }

/* ---------- Misc ---------- */
.adm-empty { padding: var(--space-6) var(--space-4); text-align: center; color: var(--color-muted); font-size: .9rem; }
.adm-inline-load { padding: var(--space-5); text-align: center; color: var(--color-muted); font-size: .85rem; }
.adm-num { font-variant-numeric: tabular-nums; }

@keyframes adm-spin { to { transform: rotate(360deg); } }
@keyframes adm-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes adm-shimmer { to { background-position: -200% 0; } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .adm-kpis, .adm-kpis--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .adm-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .adm-sidebar { position: fixed; top: 0; left: 0; transform: translateX(-100%); transition: transform var(--duration-mid) var(--ease-soft); box-shadow: var(--shadow-xl); }
  .adm-sidebar.is-open { transform: translateX(0); }
  .adm-menu-btn { display: inline-flex; }
}
@media (max-width: 560px) {
  .adm-content { padding: var(--space-4); }
  .adm-topbar { padding: var(--space-3) var(--space-4); }
  .adm-kpis, .adm-kpis--4 { grid-template-columns: 1fr; }
  .adm-topbar-title { font-size: 1.1rem; }
  .adm-user-meta { display: none; }
}

/* ---------- Date-range segmented control ---------- */
.adm-range { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-full); align-self: flex-start; }
.adm-range-btn { border: 0; background: transparent; color: var(--color-muted); font-family: var(--font-body); font-size: .8rem; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-full); cursor: pointer; transition: background var(--duration-fast), color var(--duration-fast); }
.adm-range-btn:hover { color: var(--color-text); }
.adm-range-btn.is-active { background: var(--rose-deep); color: #fff; }

/* ---------- Clickable order rows ---------- */
.admin-table tr.js-order-row { cursor: pointer; transition: background var(--duration-fast); }
.admin-table tr.js-order-row:hover { background: var(--blush-light); }
body.adm-no-scroll { overflow: hidden; }

/* ---------- Order detail drawer ---------- */
.adm-drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.adm-drawer.is-open { visibility: visible; }
.adm-drawer-backdrop { position: absolute; inset: 0; background: rgba(40, 22, 30, .42); opacity: 0; transition: opacity var(--duration-mid) var(--ease-soft); }
.adm-drawer.is-open .adm-drawer-backdrop { opacity: 1; }
.adm-drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: var(--cream); box-shadow: var(--shadow-xl); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform var(--duration-mid) var(--ease-spring);
}
.adm-drawer.is-open .adm-drawer-panel { transform: translateX(0); }
.adm-drawer-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-3); padding: var(--space-5); border-bottom: 1px solid var(--color-border); background: var(--white); }
.adm-drawer-eyebrow { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-muted); font-weight: 700; margin-bottom: 2px; }
.adm-drawer-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--rose-deep); line-height: 1.15; }
.adm-drawer-close { flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid var(--color-border); background: var(--white); border-radius: var(--radius-md); color: var(--color-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color var(--duration-fast), border-color var(--duration-fast); }
.adm-drawer-close:hover { color: var(--rose-deep); border-color: var(--blush-dark); }
.adm-drawer-close svg { width: 18px; height: 18px; }
.adm-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-5); }
.adm-drawer-section { display: flex; flex-direction: column; gap: var(--space-2); }
.adm-drawer-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--color-muted); font-weight: 700; }
.adm-drawer-cust { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); display: flex; flex-direction: column; gap: 4px; }
.adm-drawer-cust-name { font-weight: 700; font-size: .98rem; }
.adm-drawer-cust-email { font-size: .82rem; color: var(--color-muted); word-break: break-all; }
.adm-drawer-rows { background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.adm-drawer-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--color-border); font-size: .88rem; }
.adm-drawer-row:last-child { border-bottom: 0; }
.adm-drawer-row > span:first-child { color: var(--color-muted); }
.adm-drawer-row > span:last-child { font-weight: 600; text-align: right; }
.adm-drawer-total { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); padding: var(--space-4); background: var(--blush-light); border: 1px solid var(--blush); border-radius: var(--radius-lg); }
.adm-drawer-total-label { font-size: .8rem; color: var(--rose-deep); font-weight: 600; }
.adm-drawer-total-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--rose-deep); }
.adm-drawer-id { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; color: var(--color-muted); word-break: break-all; }
.adm-drawer-msg { margin: 0 var(--space-5); }
.adm-drawer-foot { padding: var(--space-4) var(--space-5); border-top: 1px solid var(--color-border); background: var(--white); }

@media (prefers-reduced-motion: reduce) {
  .adm-drawer-backdrop, .adm-drawer-panel { transition: none; }
}

/* ---------- Products: draft state, card actions, editor form ---------- */
.adm-prod.is-draft { opacity: .82; }
.adm-prod-tag--draft {
  position: absolute; top: var(--space-3); left: var(--space-3);
  font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: var(--radius-full);
  background: rgba(40, 22, 30, .72); color: #fff; box-shadow: var(--shadow-sm);
}
.adm-prod-actions { display: flex; gap: 6px; margin-top: var(--space-3); }
.adm-prod-btn {
  flex: 1 1 auto; font: inherit; font-size: .72rem; font-weight: 600;
  padding: 6px 6px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--charcoal); cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
}
.adm-prod-btn:hover { background: var(--blush-light); border-color: var(--blush); }
.adm-prod-btn--danger { color: #b4232a; }
.adm-prod-btn--danger:hover { background: #fdeceb; border-color: #f0c4c2; color: #98201f; }

.adm-form { display: flex; flex-direction: column; gap: var(--space-4); }
.adm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.adm-color-field input[type="color"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 42px; padding: 4px; cursor: pointer;
  border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--white);
}
.adm-color-field input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.adm-color-field input[type="color"]::-webkit-color-swatch { border: none; border-radius: var(--radius-sm); }

/* ---------- Product editor: default colour palette, custom add & chips ---------- */
.adm-palette {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: var(--space-2);
}
.adm-sw {
  position: relative; min-width: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; text-align: left; cursor: pointer;
  background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  transition: border-color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast);
}
.adm-sw:hover { border-color: var(--blush); background: var(--blush-light); }
.adm-sw-dot { width: 18px; height: 18px; border-radius: var(--radius-full); background: var(--sw); flex-shrink: 0; }
.adm-sw-name {
  font-size: .76rem; font-weight: 600; color: var(--charcoal);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.adm-sw-tick {
  margin-left: auto; flex-shrink: 0;
  font-size: .8rem; font-weight: 800; color: var(--rose-deep);
  opacity: 0; transition: opacity var(--duration-fast);
}
.adm-sw.is-on { border-color: var(--rose); background: var(--blush-light); box-shadow: inset 0 0 0 1px var(--rose); }
.adm-sw.is-on .adm-sw-name { color: var(--rose-deep); }
.adm-sw.is-on .adm-sw-tick { opacity: 1; }

.adm-color-add { display: flex; align-items: center; gap: var(--space-2); }
.adm-color-add input[type="color"] {
  -webkit-appearance: none; appearance: none;
  width: 46px; height: 42px; flex-shrink: 0; padding: 4px; cursor: pointer;
  border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--white);
}
.adm-color-add input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
.adm-color-add input[type="color"]::-webkit-color-swatch { border: none; border-radius: var(--radius-sm); }
.adm-color-add input[type="text"] { flex: 1 1 auto; min-width: 0; }
.adm-color-add-btn { flex-shrink: 0; white-space: nowrap; }

.adm-chips-count { font-size: .72rem; font-weight: 600; color: var(--rose-deep); }
.adm-chips { display: flex; flex-wrap: wrap; gap: 8px; min-height: 30px; align-items: center; }
.adm-chips-empty { font-size: .76rem; color: var(--color-muted); }
.adm-chip {
  display: inline-flex; align-items: center; gap: 7px; max-width: 100%;
  padding: 5px 7px 5px 9px;
  background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-full);
  font-size: .76rem; font-weight: 600; color: var(--charcoal);
}
.adm-chip-dot { width: 14px; height: 14px; border-radius: var(--radius-full); flex-shrink: 0; }
.adm-chip-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-chip-x {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: var(--radius-full);
  font-size: 1rem; line-height: 1; color: var(--color-muted); cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.adm-chip-x:hover { background: #fdeceb; color: #b4232a; }

/* Size palette: grouped preset sizes (reuses .adm-sw / .adm-chip toggle styles) */
.adm-size-palette { display: flex; flex-direction: column; gap: var(--space-3); }
.adm-size-group-label {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--color-muted); margin-bottom: 6px;
}
.adm-size-grid { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.adm-sw--size { justify-content: center; min-width: 52px; padding: 7px 12px; gap: 6px; }
.adm-sw--size .adm-sw-name { font-variant-numeric: tabular-nums; }
.adm-sw--size .adm-sw-tick { margin-left: 4px; }
.adm-size-add { display: flex; align-items: center; gap: var(--space-2); }
.adm-size-add input[type="text"] { flex: 1 1 auto; min-width: 0; }

.adm-form-checks { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); padding-top: var(--space-1); }
.adm-check { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 500; color: var(--charcoal); cursor: pointer; }
.adm-check input { width: 16px; height: 16px; accent-color: var(--rose-deep); cursor: pointer; }
@media (max-width: 420px) {
  .adm-form-row { grid-template-columns: 1fr; }
}

/* ---------- Product editor: grouped fieldsets ---------- */
.adm-fieldset {
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: var(--white); padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-4); margin: 0;
}
.adm-fieldset-legend {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .07em;
  color: var(--rose-deep); font-weight: 700; padding: 0 var(--space-2);
}
.adm-fieldset-legend em { font-style: normal; color: var(--color-muted); font-weight: 600; text-transform: none; letter-spacing: 0; }
.adm-fieldset-hint { font-size: .78rem; color: var(--color-muted); line-height: 1.5; margin: calc(-1 * var(--space-2)) 0 0; }
.adm-fieldset-hint strong { color: var(--charcoal); font-weight: 700; }

/* ---------- Image upload widgets ---------- */
.adm-up-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.adm-up { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
/* Gallery sub-section: extra photos beyond main + hover */
.adm-up-sub {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); flex-wrap: wrap;
  margin-top: 6px; padding-top: var(--space-3); border-top: 1px dashed var(--color-border);
}
.adm-up-sub-title { font-size: .82rem; font-weight: 700; color: var(--charcoal); }
.adm-up-sub-title em { font-style: normal; font-weight: 500; color: var(--color-muted); }
.adm-up-sub-note { font-size: .68rem; color: var(--color-muted); }
.adm-up-grid--gallery { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); margin-top: 4px; }
.adm-up--compact { gap: 6px; }
.adm-up--compact .adm-up-title { font-size: .72rem; }
.adm-up--compact .adm-up-empty { gap: 5px; padding: var(--space-2); }
.adm-up--compact .adm-up-empty-ic { width: 32px; height: 32px; }
.adm-up--compact .adm-up-empty-ic svg { width: 15px; height: 15px; }
.adm-up--compact .adm-up-cta { font-size: .68rem; }
.adm-up--compact .adm-up-meta { padding: 5px 8px; gap: 5px; }
.adm-up--compact .adm-up-meta-txt { font-size: .64rem; }
.adm-up--compact .adm-up-replace { font-size: .64rem; }
.adm-up-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }
.adm-up-title { font-size: .8rem; font-weight: 600; color: var(--charcoal); }
.adm-up-title em { font-style: normal; color: var(--color-muted); font-weight: 500; }
.adm-up-tag {
  flex: 0 0 auto; font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 2px 7px; border-radius: var(--radius-full);
  background: var(--cream); color: var(--color-muted); border: 1px solid var(--color-border);
}
.adm-up-tag--rec { background: var(--blush); color: var(--rose-deep); border-color: var(--blush-dark); }
.adm-up-role { font-size: .72rem; line-height: 1.45; color: var(--color-muted); margin: -3px 0 1px; }
.adm-up-zone {
  position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border: 1.5px dashed var(--blush-dark); border-radius: var(--radius-md);
  background: var(--blush-light); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast);
}
.adm-up-zone:hover, .adm-up-zone:focus-visible { border-color: var(--rose-deep); background: #fbf2f5; outline: none; }
.adm-up-zone.is-drag { border-color: var(--rose-deep); border-style: solid; background: #f7e6ec; box-shadow: 0 0 0 3px rgba(125, 58, 82, .12); }
.adm-up-zone.has-img { border-style: solid; border-color: var(--color-border); background: var(--white); }
.adm-up-empty { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: var(--space-3); text-align: center; pointer-events: none; }
.adm-up-empty-ic {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--blush-dark); box-shadow: var(--shadow-sm);
}
.adm-up-empty-ic svg { width: 20px; height: 20px; color: var(--rose-deep); }
.adm-up-cta { font-size: .78rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.adm-up-cta em { font-style: normal; color: var(--color-muted); font-weight: 500; }
.adm-up-spec { font-size: .64rem; color: var(--color-muted); line-height: 1.35; }
.adm-up-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.adm-up-busy { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; background: rgba(255, 255, 255, .82); backdrop-filter: blur(1px); }
.adm-up-busy-txt { font-size: .68rem; font-weight: 700; color: var(--rose-deep); letter-spacing: .02em; }
.adm-up-spinner { width: 26px; height: 26px; border: 3px solid var(--blush); border-top-color: var(--rose-deep); border-radius: 50%; animation: adm-spin .7s linear infinite; }
@keyframes adm-spin { to { transform: rotate(360deg); } }
.adm-up-remove {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px; z-index: 2;
  border: 0; border-radius: 50%; background: rgba(40, 22, 30, .62); color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--duration-fast);
}
.adm-up-remove:hover { background: rgba(40, 22, 30, .85); }
.adm-up-remove svg { width: 14px; height: 14px; }
.adm-up-url {
  width: 100%; font: inherit; font-size: .74rem; padding: 7px 10px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--charcoal);
}
.adm-up-url::placeholder { color: var(--color-muted); }
.adm-up-url:focus { outline: none; border-color: var(--blush-dark); box-shadow: 0 0 0 3px rgba(196, 132, 154, .15); }
.adm-up-meta {
  display: flex; align-items: center; gap: 7px; padding: 7px 10px;
  border-radius: var(--radius-sm); background: #f1f8f2; border: 1px solid #cde7d2;
}
.adm-up-meta-ic { flex: 0 0 auto; width: 15px; height: 15px; color: #3f9d5a; }
.adm-up-meta-txt {
  flex: 1 1 auto; min-width: 0; font-size: .7rem; font-weight: 600; color: #2f6b41;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.adm-up-meta.is-error { background: #fdf3f2; border-color: #ecc9c6; }
.adm-up-meta.is-error .adm-up-meta-ic, .adm-up-meta.is-error .adm-up-meta-txt { color: #b4453c; }
.adm-up-replace {
  flex: 0 0 auto; border: 0; background: none; padding: 0; font: inherit;
  font-size: .7rem; font-weight: 700; color: var(--rose-deep); cursor: pointer;
}
.adm-up-replace:hover { text-decoration: underline; }
.adm-up-zone.is-error { border-color: #d7a3a0; }

/* ---------- Live storefront preview card ---------- */
.adm-pf-preview { position: relative; padding-top: 18px; }
.adm-pf-prev-tag {
  position: absolute; top: 0; left: 0; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--color-muted);
}
.adm-pf-prev-card {
  display: flex; gap: var(--space-3); padding: var(--space-3);
  background: var(--white); border: 1px solid var(--blush);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.adm-pf-prev-media { position: relative; flex: 0 0 auto; width: 96px; aspect-ratio: 4 / 5; border-radius: var(--radius-md); overflow: hidden; }
.adm-pf-prev-thumb { width: 100%; height: 100%; }
.adm-pf-prev-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adm-pf-prev-badge {
  position: absolute; top: 6px; left: 6px; font-size: .56rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; padding: 2px 7px; border-radius: var(--radius-full);
  background: var(--rose-deep); color: #fff;
}
.adm-pf-prev-badge--sale { background: #b4232a; }
.adm-pf-prev-draft {
  position: absolute; bottom: 6px; left: 6px; font-size: .54rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; padding: 2px 7px; border-radius: var(--radius-full);
  background: rgba(40, 22, 30, .72); color: #fff;
}
.adm-pf-prev-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.adm-pf-prev-cat { font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); font-weight: 700; }
.adm-pf-prev-name {
  font-family: var(--font-display); font-size: .98rem; font-weight: 700; color: var(--charcoal); line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.adm-pf-prev-sws { display: flex; gap: 5px; margin-top: 1px; min-height: 12px; }
.adm-pf-prev-sw { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.adm-pf-prev-foot { display: flex; align-items: baseline; gap: 7px; margin-top: auto; flex-wrap: wrap; }
.adm-pf-prev-price { font-weight: 700; color: var(--rose-deep); font-size: 1rem; }
.adm-pf-prev-orig { font-size: .8rem; color: var(--color-muted); text-decoration: line-through; }
.adm-pf-prev-rate { margin-left: auto; font-size: .72rem; color: var(--color-muted); white-space: nowrap; }

/* ---------- Products toolbar: search ---------- */
.adm-prod-toolbar { margin-bottom: var(--space-4); }
.adm-search { position: relative; display: flex; align-items: center; max-width: 360px; }
.adm-search svg { position: absolute; left: 12px; width: 17px; height: 17px; color: var(--color-muted); pointer-events: none; }
.adm-search input {
  width: 100%; font: inherit; font-size: .88rem; padding: 9px 14px 9px 36px;
  border: 1px solid var(--color-border); border-radius: var(--radius-full);
  background: var(--white); color: var(--charcoal);
}
.adm-search input::placeholder { color: var(--color-muted); }
.adm-search input:focus { outline: none; border-color: var(--blush-dark); box-shadow: 0 0 0 3px rgba(196, 132, 154, .15); }

@media (max-width: 480px) {
  .adm-up-grid { grid-template-columns: 1fr; }
}

/* Floating WhatsApp chat button */
.wa-float {
  position: fixed; right: 20px; bottom: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.18);
  z-index: 150;
  transition: transform var(--duration-mid) var(--ease-soft), box-shadow var(--duration-mid) var(--ease-soft);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.55), 0 3px 8px rgba(0,0,0,.22); color: #fff; }
.wa-float svg { display: block; }
@media (max-width: 640px) { .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; } }
