/* ═══════════════════════════════════════════════════════════════
   VinSpirit — Luxury E-Commerce · Global Stylesheet
   Dark Theme · Gold Accent · Mobile-First
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colors — Primary (Deep Midnight) */
  --color-primary-50:  #E8EAF0;
  --color-primary-100: #C5CAD9;
  --color-primary-200: #9EA7BC;
  --color-primary-300: #7784A0;
  --color-primary-400: #566180;
  --color-primary-500: #354060;
  --color-primary-600: #222C47;
  --color-primary-700: #151C31;
  --color-primary-800: #0D1220;
  --color-primary-900: #060810;

  /* Colors — Secondary (Warm Charcoal) */
  --color-secondary-800: #2A2520;
  --color-secondary-900: #1A1714;

  /* Colors — Accent (Prestige Gold) */
  --color-accent-400: #E8BB2A;
  --color-accent-500: #D4A017;
  --color-accent-600: #B8860B;
  --color-accent-700: #9A6F08;

  /* Colors — Neutral */
  --color-neutral-0:    #FFFFFF;
  --color-neutral-50:   #FAFAFA;
  --color-neutral-200:  #E8E8E8;
  --color-neutral-400:  #A3A3A3;
  --color-neutral-700:  #404040;
  --color-neutral-800:  #262626;

  /* Colors — Semantic */
  --color-success-500: #10B981;
  --color-error-500:   #F43F5E;
  --color-warning-500: #F59E0B;

  /* Surface Aliases — Dark Theme */
  --color-bg-base:        var(--color-primary-800);
  --color-bg-elevated:    var(--color-primary-700);
  --color-bg-overlay:     var(--color-primary-600);
  --color-bg-card:        var(--color-secondary-800);
  --color-border-default: var(--color-primary-600);
  --color-border-subtle:  var(--color-primary-700);
  --color-border-accent:  var(--color-accent-500);
  --color-text-primary:   var(--color-neutral-50);
  --color-text-secondary: var(--color-primary-300);
  --color-text-muted:     var(--color-primary-400);
  --color-text-accent:    var(--color-accent-400);
  --color-text-on-accent: var(--color-primary-900);

  /* Typography */
  --font-serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-sans:  'Inter', 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  /* Font Weights */
  --font-weight-light:    300;
  --font-weight-regular:  400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;

  /* Spacing */
  --space-0:   0px;
  --space-px:  1px;
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-xxl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 96px;
  --space-6xl: 128px;

  /* Border Radius */
  --radius-none: 0px;
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* Semantic Radius */
  --radius-button: var(--radius-sm);
  --radius-input:  var(--radius-sm);
  --radius-card:   var(--radius-md);
  --radius-modal:  var(--radius-lg);
  --radius-badge:  var(--radius-full);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.5), 0 2px 4px -2px rgba(0,0,0,.4);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.6), 0 4px 6px -4px rgba(0,0,0,.5);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.7), 0 8px 10px -6px rgba(0,0,0,.5);

  --shadow-gold-sm: 0 0 8px rgba(212,160,23,.25), 0 2px 4px rgba(0,0,0,.4);
  --shadow-gold-md: 0 0 16px rgba(212,160,23,.35), 0 4px 8px rgba(0,0,0,.5);
  --shadow-gold-lg: 0 0 32px rgba(212,160,23,.45), 0 8px 16px rgba(0,0,0,.6);

  --shadow-inner: inset 0 2px 4px rgba(0,0,0,.5);

  /* Z-Index */
  --z-below:    -1;
  --z-base:      0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-drawer:   400;
  --z-modal:    500;
  --z-toast:    600;
  --z-tooltip:  700;
  --z-age-gate: 900;

  /* Transitions */
  --duration-fast:    100ms;
  --duration-normal:  200ms;
  --duration-slow:    300ms;
  --duration-slower:  500ms;

  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --transition-fast:      all var(--duration-fast) var(--ease-out);
  --transition-normal:    all var(--duration-normal) var(--ease-in-out);
  --transition-slow:      all var(--duration-slow) var(--ease-luxury);
  --transition-color:     color var(--duration-normal) var(--ease-in-out),
                          background-color var(--duration-normal) var(--ease-in-out),
                          border-color var(--duration-normal) var(--ease-in-out);
  --transition-shadow:    box-shadow var(--duration-normal) var(--ease-out);
  --transition-transform: transform var(--duration-normal) var(--ease-out);

  /* Icon Sizes */
  --icon-xs:  12px;
  --icon-sm:  16px;
  --icon-md:  20px;
  --icon-lg:  24px;
  --icon-xl:  32px;
  --icon-2xl: 48px;
  --icon-3xl: 64px;

  /* Border Width */
  --border-0: 0px;
  --border-1: 1px;
  --border-2: 2px;
  --border-4: 4px;

  /* Extended Spacing */
  --space-7xl: 160px;
  --space-8xl: 192px;

  /* Extended Colors — Secondary */
  --color-secondary-50:  #F5F3F0;
  --color-secondary-100: #E8E4DC;
  --color-secondary-200: #D4CCC0;
  --color-secondary-300: #BDB3A4;
  --color-secondary-400: #9E9080;
  --color-secondary-500: #7A6E60;
  --color-secondary-600: #5C5248;
  --color-secondary-700: #3D3830;

  /* Extended Colors — Accent */
  --color-accent-50:  #FDF9EC;
  --color-accent-100: #FAF0C4;
  --color-accent-200: #F5E08A;
  --color-accent-300: #EFD05A;
  --color-accent-800: #7A5606;
  --color-accent-900: #5A3D04;

  /* Extended Colors — Neutral */
  --color-neutral-100: #F5F5F5;
  --color-neutral-300: #D4D4D4;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-900: #171717;
  --color-neutral-1000: #000000;

  /* Extended Colors — Semantic */
  --color-success-50:  #ECFDF5;
  --color-success-200: #A7F3D0;
  --color-success-600: #059669;
  --color-success-700: #047857;
  --color-warning-50:  #FFFBEB;
  --color-warning-200: #FDE68A;
  --color-warning-600: #D97706;
  --color-warning-700: #B45309;
  --color-error-50:  #FFF1F2;
  --color-error-200: #FECDD3;
  --color-error-600: #E11D48;
  --color-error-700: #BE123C;

  /* Extended Radius */
  --radius-card-lg: var(--radius-lg);
  --radius-tag:     var(--radius-xs);
  --radius-avatar:  var(--radius-full);
  --radius-tooltip: var(--radius-sm);

  /* Extended Shadows */
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.9);

  /* Extended Transitions */
  --duration-instant:  50ms;
  --duration-sluggish: 700ms;
  --ease-linear: linear;
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Opacity Scale */
  --opacity-0:   0;
  --opacity-5:   0.05;
  --opacity-10:  0.10;
  --opacity-20:  0.20;
  --opacity-30:  0.30;
  --opacity-50:  0.50;
  --opacity-70:  0.70;
  --opacity-80:  0.80;
  --opacity-90:  0.90;
  --opacity-100: 1;

  /* Font Weight Extended */
  --font-weight-black: 900;

  /* Semantic Spacing */
  --padding-button-sm: var(--space-xs) var(--space-sm);
  --padding-button-md: var(--space-sm) var(--space-md);
  --padding-button-lg: var(--space-md) var(--space-xl);
  --padding-input:     var(--space-sm) var(--space-md);
  --padding-card:      var(--space-md);
  --padding-card-lg:   var(--space-lg);
  --gap-grid-mobile:   var(--space-md);
  --gap-grid-tablet:   var(--space-lg);
  --gap-grid-desktop:  var(--space-xl);
}

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

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

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

input, textarea, select {
  font-family: var(--font-sans);
}

/* ─── Layout — Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-xl); }
}

@media (min-width: 1024px) {
  .container { padding-inline: var(--space-3xl); }
}

/* ─── Layout — Page Shell ────────────────────────────────────── */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
}

/* ─── Layout — Sections ──────────────────────────────────────── */
.section {
  padding-block: var(--space-xxl);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-3xl); }
}

@media (min-width: 1024px) {
  .section { padding-block: var(--space-5xl); }
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  gap: var(--space-md);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.section-link {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-accent);
  white-space: nowrap;
  transition: var(--transition-color);
}

.section-link:hover {
  color: var(--color-accent-600);
}

/* ─── Typography Helpers ─────────────────────────────────────── */
.label-overline {
  display: block;
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-accent);
}

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-accent-500);
  margin-block: var(--space-md);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-button);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent-500);
  color: var(--color-text-on-accent);
  box-shadow: var(--shadow-gold-sm);
}

.btn-primary:hover {
  background: var(--color-accent-600);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-accent);
  border: var(--border-1) solid var(--color-accent-500);
}

.btn-outline:hover {
  background: rgba(212, 160, 23, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border: var(--border-1) solid var(--color-border-default);
}

.btn-ghost:hover {
  background: var(--color-bg-overlay);
  color: var(--color-text-primary);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-lg) var(--space-xxl);
  font-size: 1.0625rem;
}

.btn-full {
  width: 100%;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(13, 18, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-1) solid var(--color-border-default);
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
  letter-spacing: 0.05em;
  transition: var(--transition-color);
}

.nav-logo:hover {
  color: var(--color-accent-400);
}

.nav-links {
  display: none;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  transition: var(--transition-color);
  padding-block: var(--space-xs);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.nav-links a.active {
  color: var(--color-text-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-icon-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.nav-icon-btn:hover {
  background: var(--color-bg-overlay);
  color: var(--color-text-primary);
}

.nav-mobile-toggle {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile-toggle { display: none; }
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-accent-500);
  color: var(--color-text-on-accent);
  font-size: 0.625rem;
  font-weight: var(--font-weight-bold);
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Age Gate ───────────────────────────────────────────────── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-age-gate);
  background: rgba(6, 8, 16, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.age-gate-card {
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-modal);
  padding: var(--space-xxl) var(--space-xl);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.age-gate-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.age-gate-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.age-gate-sub {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-xxl);
  line-height: 1.625;
}

.age-gate-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-legal {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
  line-height: 2;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,8,16,.85) 0%, rgba(13,18,32,.6) 50%, rgba(6,8,16,.4) 100%),
    repeating-linear-gradient(
      45deg,
      var(--color-primary-700) 0px,
      var(--color-primary-700) 2px,
      var(--color-primary-800) 2px,
      var(--color-primary-800) 40px
    );
  z-index: var(--z-below);
}

.hero-content {
  position: relative;
  z-index: var(--z-base);
  max-width: 640px;
}

.hero-overline {
  margin-bottom: var(--space-md);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-lg);
}

.hero-heading em {
  color: var(--color-text-accent);
  font-style: italic;
}

.hero-body {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.625;
  max-width: 480px;
  margin-bottom: var(--space-xxl);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-base);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── Category Strip ─────────────────────────────────────────── */
.category-strip {
  background: var(--color-bg-elevated);
  border-block: var(--border-1) solid var(--color-border-default);
}

.cat-grid {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-block: var(--space-md);
  scrollbar-width: none;
}

.cat-grid::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  flex: 0 0 auto;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  border: var(--border-1) solid var(--color-border-default);
  background: transparent;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.cat-chip:hover {
  border-color: var(--color-accent-500);
  color: var(--color-text-accent);
}

.cat-chip.active {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: var(--color-text-on-accent);
}

/* ─── Product Grid ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
}

/* ─── Product Card ───────────────────────────────────────────── */
.product-card {
  background: var(--color-bg-card);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--color-accent-500);
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-2px);
}

.product-card-img {
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--color-primary-700) 0px,
      var(--color-primary-700) 1px,
      var(--color-primary-600) 1px,
      var(--color-primary-600) 24px
    );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 2px var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: var(--z-raised);
}

.badge-new  { background: var(--color-accent-500); color: var(--color-text-on-accent); }
.badge-hot  { background: var(--color-error-500); color: #fff; }
.badge-sale { background: var(--color-success-500); color: #fff; }

.product-wishlist {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(13, 18, 32, 0.7);
  border: none;
  border-radius: var(--radius-full);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-secondary);
  font-size: 14px;
  transition: var(--transition-normal);
  z-index: var(--z-raised);
}

.product-wishlist:hover { color: var(--color-error-500); }

.product-card-body {
  padding: var(--space-md);
  flex: 1;
}

.product-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.product-name {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
}

.product-price-orig {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.stars { color: var(--color-accent-400); letter-spacing: -2px; }

.product-card-footer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-top: var(--border-1) solid var(--color-border-default);
}

.btn-add-cart {
  width: 100%;
  padding: var(--space-sm);
  background: transparent;
  border: var(--border-1) solid var(--color-accent-500);
  border-radius: var(--radius-button);
  color: var(--color-text-accent);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-add-cart:hover {
  background: var(--color-accent-500);
  color: var(--color-text-on-accent);
}

/* ─── Brand Story ────────────────────────────────────────────── */
.brand-story {
  background: var(--color-bg-elevated);
  border-block: var(--border-1) solid var(--color-border-default);
}

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

@media (min-width: 768px) {
  .brand-story-inner { grid-template-columns: 1fr 1fr; }
}

.brand-story-visual {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      45deg,
      var(--color-primary-700) 0px,
      var(--color-primary-700) 1px,
      var(--color-primary-800) 1px,
      var(--color-primary-800) 32px
    );
  border-radius: var(--radius-card);
  border: var(--border-1) solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.brand-story-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

.brand-story-body {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.625;
  margin-bottom: var(--space-xl);
}

.brand-stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.brand-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
}

.brand-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}

.testimonial-stars { color: var(--color-accent-400); font-size: 1rem; margin-bottom: var(--space-sm); }

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-bg-overlay);
  border: var(--border-1) solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.testimonial-name { font-size: 0.875rem; font-weight: var(--font-weight-semibold); }
.testimonial-location { font-size: 0.75rem; color: var(--color-text-muted); }

/* ─── Newsletter ─────────────────────────────────────────────── */
.newsletter {
  background: var(--color-primary-900);
  border-block: var(--border-1) solid var(--color-border-default);
  text-align: center;
}

.newsletter-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.newsletter-sub { color: var(--color-text-secondary); margin-bottom: var(--space-xl); }

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-input);
  color: var(--color-text-primary);
  font-size: 0.9375rem;
  transition: var(--transition-normal);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15);
}

.newsletter-input::placeholder { color: var(--color-text-muted); }

.newsletter-legal { font-size: 0.75rem; color: var(--color-text-muted); margin-top: var(--space-md); }

/* ─── Shop Page — Filter Sidebar ─────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .shop-layout { grid-template-columns: 240px 1fr; }
}

.filter-sidebar {
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  height: fit-content;
  position: sticky;
  top: calc(64px + var(--space-md));
}

.filter-title {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-accent);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

.filter-group {
  margin-bottom: var(--space-lg);
}

.filter-group-label {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-block: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-color);
}

.filter-option:hover { color: var(--color-text-primary); }

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent-500);
}

/* ─── Shop Page — Toolbar ────────────────────────────────────── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.shop-count {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.shop-sort select {
  padding: var(--space-xs) var(--space-md);
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-input);
  color: var(--color-text-primary);
  font-size: 0.875rem;
  cursor: pointer;
}

/* ─── Product Detail ─────────────────────────────────────────── */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

@media (min-width: 768px) {
  .product-detail-layout { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .product-detail-layout { grid-template-columns: 3fr 2fr; }
}

.product-gallery {
  position: sticky;
  top: calc(64px + var(--space-md));
}

.product-gallery-main {
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--color-primary-700) 0px,
      var(--color-primary-700) 1px,
      var(--color-primary-600) 1px,
      var(--color-primary-600) 24px
    );
  border-radius: var(--radius-card);
  border: var(--border-1) solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.product-gallery-thumbs {
  display: flex;
  gap: var(--space-sm);
}

.product-thumb {
  width: 72px;
  height: 96px;
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--color-accent-500);
}

.product-info-brand {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-accent);
  margin-bottom: var(--space-sm);
}

.product-info-name {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.product-info-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.product-info-price {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
  margin-bottom: var(--space-xs);
}

.product-info-price-orig {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-bottom: var(--space-md);
}

.product-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-lg);
}

.badge-instock {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success-500);
  border: var(--border-1) solid rgba(16, 185, 129, 0.3);
}

.badge-outstock {
  background: rgba(244, 63, 94, 0.1);
  color: var(--color-error-500);
  border: var(--border-1) solid rgba(244, 63, 94, 0.3);
}

.product-description {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.625;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

.product-specs {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

.spec-row {
  display: flex;
  gap: var(--space-md);
  padding-block: var(--space-xs);
  font-size: 0.875rem;
}

.spec-label {
  min-width: 120px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.spec-value { color: var(--color-text-primary); }

.product-qty-row {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
}

.qty-control {
  display: flex;
  align-items: center;
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-input);
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 40px;
  background: var(--color-bg-overlay);
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { color: var(--color-text-primary); background: var(--color-border-default); }

.qty-input {
  width: 48px;
  height: 40px;
  background: var(--color-bg-elevated);
  border: none;
  border-inline: var(--border-1) solid var(--color-border-default);
  color: var(--color-text-primary);
  text-align: center;
  font-size: 0.9375rem;
}

.product-cta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-cta .btn-primary { flex: 1; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.breadcrumb a { transition: var(--transition-color); }
.breadcrumb a:hover { color: var(--color-text-primary); }
.breadcrumb-sep { color: var(--color-border-default); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary-900);
  border-top: var(--border-1) solid var(--color-border-default);
  padding-block: var(--space-3xl) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.625;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-bg-overlay);
  border: var(--border-1) solid var(--color-border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
}

.footer-social-btn:hover {
  border-color: var(--color-accent-500);
  color: var(--color-text-accent);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-accent);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: var(--transition-color);
}

.footer-links a:hover { color: var(--color-text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: var(--border-1) solid var(--color-border-default);
}

.footer-copy { font-size: 0.75rem; color: var(--color-text-muted); }

.footer-payment { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }

.payment-chip {
  padding: 2px var(--space-sm);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-xs);
  font-size: 0.625rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

/* ─── Utilities ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-accent { color: var(--color-text-accent); }
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }

.divider {
  height: var(--border-1);
  background: var(--color-border-default);
  margin-block: var(--space-lg);
}

/* ─── Skip Link (Accessibility) ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: calc(var(--z-age-gate) + 1);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent-500);
  color: var(--color-text-on-accent);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-sm);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ─── Focus Styles ───────────────────────────────────────────── */
:focus-visible {
  outline: var(--border-2) solid var(--color-accent-500);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: var(--border-2) solid var(--color-accent-500);
  outline-offset: 2px;
}

/* ─── Selection ──────────────────────────────────────────────── */
::selection {
  background: rgba(212, 160, 23, 0.3);
  color: var(--color-text-primary);
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-base);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-default);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-500);
}

/* ─── Mobile Nav Drawer ──────────────────────────────────────── */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: flex;
  visibility: hidden;
  pointer-events: none;
}

.nav-mobile-menu.open {
  visibility: visible;
  pointer-events: all;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.8);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-luxury);
}

.nav-mobile-menu.open .nav-mobile-backdrop {
  opacity: 1;
}

.nav-mobile-panel {
  position: relative;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-bg-elevated);
  border-right: var(--border-1) solid var(--color-border-default);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-luxury);
  overflow-y: auto;
}

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

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.nav-mobile-links a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  transition: var(--transition-color);
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  background: var(--color-bg-overlay);
  color: var(--color-text-accent);
}

@media (min-width: 768px) {
  .nav-mobile-menu { display: none; }
}

/* ─── Hero — Enhanced Responsive ────────────────────────────── */
.hero {
  min-height: clamp(500px, 90vh, 900px);
}

@media (max-width: 479px) {
  .hero-heading {
    font-size: 2.25rem;
    letter-spacing: -0.03em;
  }

  .hero-body {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-content { max-width: 720px; }
}

/* ─── Page Header (Shop / Product) ──────────────────────────── */
.page-header {
  padding-block: var(--space-xxl) var(--space-xl);
  border-bottom: var(--border-1) solid var(--color-border-default);
  margin-bottom: var(--space-xl);
}

.page-header-title {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.page-header-sub {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

/* ─── Shop Page — Mobile Filter Toggle ──────────────────────── */
.shop-filter-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-input);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-normal);
}

.shop-filter-toggle:hover {
  border-color: var(--color-accent-500);
  color: var(--color-text-accent);
}

@media (min-width: 1024px) {
  .shop-filter-toggle { display: none; }
}

/* Mobile filter drawer */
.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
  pointer-events: none;
}

.filter-drawer.open {
  visibility: visible;
  pointer-events: all;
}

.filter-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.8);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-luxury);
}

.filter-drawer.open .filter-drawer-backdrop { opacity: 1; }

.filter-drawer-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(300px, 90vw);
  background: var(--color-bg-elevated);
  border-right: var(--border-1) solid var(--color-border-default);
  padding: var(--space-lg);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-luxury);
}

.filter-drawer.open .filter-drawer-panel {
  transform: translateX(0);
}

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

/* Hide sidebar on mobile, show as drawer */
@media (max-width: 1023px) {
  .filter-sidebar {
    display: none;
  }
}

/* ─── Shop Layout — Enhanced ─────────────────────────────────── */
@media (min-width: 1280px) {
  .shop-layout { grid-template-columns: 260px 1fr; }
}

/* ─── Toolbar — Enhanced ─────────────────────────────────────── */
.shop-sort select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: var(--space-xl);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237784A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-sm) center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.shop-sort select:focus {
  outline: none;
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15);
}

/* ─── Product Card — Enhanced Hover ──────────────────────────── */
.product-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 16, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-luxury);
}

.product-card:hover .product-card-img-overlay {
  opacity: 1;
}

.product-card-quick-view {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  white-space: nowrap;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-accent-500);
  color: var(--color-text-on-accent);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-bounce);
  z-index: var(--z-raised);
  pointer-events: none;
}

.product-card:hover .product-card-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Price Range Slider ──────────────────────────────────────── */
.price-range-wrap {
  margin-bottom: var(--space-sm);
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--color-border-default);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--color-accent-500);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg-elevated);
  box-shadow: var(--shadow-gold-sm);
  cursor: grab;
  transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--color-accent-500);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg-elevated);
  cursor: grab;
}

/* ─── Form Inputs — Enhanced ─────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-label {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-input);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: var(--transition-normal);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.form-input.error,
.form-select.error {
  border-color: var(--color-error-500);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.12);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.form-hint.error {
  color: var(--color-error-500);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237784A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-xxl);
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ─── Tabs ────────────────────────────────────────────────────── */
.tabs {
  border-bottom: var(--border-1) solid var(--color-border-default);
  margin-bottom: var(--space-xl);
}

.tabs-list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-list::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
  margin-bottom: -1px;
}

.tab-btn:hover {
  color: var(--color-text-primary);
}

.tab-btn.active {
  color: var(--color-text-accent);
  border-bottom-color: var(--color-accent-500);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ─── Skeleton Loading ───────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--color-primary-700) 25%,
    var(--color-primary-600) 50%,
    var(--color-primary-700) 75%
  );
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.skeleton-card {
  background: var(--color-bg-card);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.skeleton-img {
  aspect-ratio: 3 / 4;
  width: 100%;
}

.skeleton-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.skeleton-line {
  height: 14px;
  border-radius: var(--radius-xs);
}

.skeleton-line-short { width: 60%; }
.skeleton-line-medium { width: 80%; }
.skeleton-line-full { width: 100%; }
.skeleton-price { height: 22px; width: 50%; }

/* ─── Badge / Tag ────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 2px var(--space-sm);
  border-radius: var(--radius-tag);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-bg-overlay);
  border: var(--border-1) solid var(--color-border-default);
  color: var(--color-text-secondary);
}

.tag-accent {
  background: rgba(212, 160, 23, 0.12);
  border-color: rgba(212, 160, 23, 0.3);
  color: var(--color-text-accent);
}

.tag-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--color-success-500);
}

.tag-error {
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(244, 63, 94, 0.3);
  color: var(--color-error-500);
}

/* ─── Toast Notifications ────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: min(360px, calc(100vw - 2 * var(--space-lg)));
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: toastIn var(--duration-slow) var(--ease-bounce);
}

@keyframes toastIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.toast-body { flex: 1; }

.toast-title {
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.toast-msg {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.toast-success { border-left: 3px solid var(--color-success-500); }
.toast-error   { border-left: 3px solid var(--color-error-500); }
.toast-warning { border-left: 3px solid var(--color-warning-500); }
.toast-info    { border-left: 3px solid var(--color-accent-500); }

@media (max-width: 479px) {
  .toast-container {
    bottom: var(--space-md);
    right: var(--space-md);
    left: var(--space-md);
    max-width: none;
  }
}

/* ─── Tooltip ────────────────────────────────────────────────── */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + var(--space-xs));
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-bg-overlay);
  color: var(--color-text-primary);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-tooltip);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  z-index: var(--z-tooltip);
  border: var(--border-1) solid var(--color-border-default);
  box-shadow: var(--shadow-md);
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Product Detail — Mobile Sticky CTA ─────────────────────── */
.product-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--color-bg-elevated);
  border-top: var(--border-1) solid var(--color-border-default);
  padding: var(--space-md);
  gap: var(--space-sm);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
  .product-sticky-cta {
    display: flex;
  }

  .product-cta {
    display: none;
  }
}

/* ─── Product Gallery — Touch Swipe Hint ─────────────────────── */
@media (max-width: 767px) {
  .product-gallery {
    position: static;
  }

  .product-gallery-thumbs {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: var(--space-xs);
  }

  .product-gallery-thumbs::-webkit-scrollbar { display: none; }
}

/* ─── Section — Featured Full-width Banner ───────────────────── */
.banner-full {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,8,16,.9) 0%, rgba(21,28,49,.7) 60%, rgba(6,8,16,.5) 100%),
    repeating-linear-gradient(
      -45deg,
      var(--color-primary-700) 0px,
      var(--color-primary-700) 1px,
      var(--color-primary-800) 1px,
      var(--color-primary-800) 28px
    );
}

.banner-full::before {
  content: '';
  position: absolute;
  inset: 0;
  border-block: var(--border-1) solid rgba(212, 160, 23, 0.2);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.banner-sub {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--color-bg-elevated);
  border-block: var(--border-1) solid var(--color-border-default);
  padding-block: var(--space-lg);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-item-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item-label {
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-xxl);
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding-inline: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-sans);
}

.page-btn:hover {
  border-color: var(--color-accent-500);
  color: var(--color-text-accent);
}

.page-btn.active {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: var(--color-text-on-accent);
}

.page-btn:disabled {
  opacity: var(--opacity-30);
  cursor: not-allowed;
}

/* ─── Checkout Steps ─────────────────────────────────────────── */
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-xxl);
  overflow-x: auto;
  scrollbar-width: none;
}

.checkout-steps::-webkit-scrollbar { display: none; }

.step-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  background: var(--color-bg-overlay);
  border: var(--border-2) solid var(--color-border-default);
  color: var(--color-text-muted);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.step-label {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: var(--transition-color);
}

.step-connector {
  flex: 1;
  min-width: var(--space-xl);
  height: 1px;
  background: var(--color-border-default);
  margin-inline: var(--space-sm);
  flex-shrink: 0;
}

.step-item.active .step-num {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: var(--color-text-on-accent);
  box-shadow: var(--shadow-gold-sm);
}

.step-item.active .step-label {
  color: var(--color-text-accent);
}

.step-item.done .step-num {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--color-success-500);
  color: var(--color-success-500);
}

.step-item.done .step-label {
  color: var(--color-success-500);
}

/* ─── Payment Method Cards ───────────────────────────────────── */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
  .payment-methods { grid-template-columns: repeat(3, 1fr); }
}

.payment-method-card {
  padding: var(--space-md);
  background: var(--color-bg-elevated);
  border: var(--border-2) solid var(--color-border-default);
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.payment-method-card:hover {
  border-color: var(--color-accent-500);
}

.payment-method-card.selected {
  border-color: var(--color-accent-500);
  background: rgba(212, 160, 23, 0.06);
  box-shadow: var(--shadow-gold-sm);
}

.payment-method-name {
  font-size: 0.8125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
}

/* ─── Cart Item ──────────────────────────────────────────────── */
.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: var(--border-1) solid var(--color-border-subtle);
}

.cart-item-img {
  width: 72px;
  height: 96px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-accent);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: var(--icon-md);
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: var(--transition-color);
  flex-shrink: 0;
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--color-error-500); }

/* ─── Order Summary Card ─────────────────────────────────────── */
.order-summary {
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  position: sticky;
  top: calc(64px + var(--space-md));
}

.order-summary-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.order-row.total {
  border-top: var(--border-1) solid var(--color-border-default);
  margin-top: var(--space-sm);
  padding-top: var(--space-md);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.order-total-price {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-accent);
}

/* ─── Floating Cart Drawer ───────────────────────────────────── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.open {
  visibility: visible;
  pointer-events: all;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 16, 0.8);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-luxury);
}

.cart-drawer.open .cart-drawer-backdrop { opacity: 1; }

.cart-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-bg-elevated);
  border-left: var(--border-1) solid var(--color-border-default);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-luxury);
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: var(--border-1) solid var(--color-border-default);
  flex-shrink: 0;
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-drawer-footer {
  padding: var(--space-lg);
  border-top: var(--border-1) solid var(--color-border-default);
  flex-shrink: 0;
}

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(6, 8, 16, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-bg-elevated);
  border: var(--border-1) solid var(--color-border-default);
  border-radius: var(--radius-modal);
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 2 * var(--space-md));
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.95) translateY(8px);
  transition: transform var(--duration-slow) var(--ease-bounce);
}

.modal-backdrop.open .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: var(--border-1) solid var(--color-border-default);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

.modal-body { padding: var(--space-lg); }

.modal-footer {
  padding: var(--space-lg);
  border-top: var(--border-1) solid var(--color-border-default);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
}

/* ─── Icon Button Close ──────────────────────────────────────── */
.btn-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.btn-close:hover {
  background: var(--color-bg-overlay);
  color: var(--color-text-primary);
}

/* ─── Empty State ────────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-5xl) var(--space-xl);
  gap: var(--space-md);
}

.empty-state-icon {
  font-size: var(--icon-3xl);
  color: var(--color-text-muted);
  opacity: var(--opacity-50);
}

.empty-state-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.empty-state-sub {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  max-width: 320px;
  line-height: 1.625;
}

/* ─── Gold Accent Decorations ────────────────────────────────── */
.gold-accent-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent-500), var(--color-accent-300));
  margin-block: var(--space-md);
}

.gold-accent-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-accent-500);
  box-shadow: var(--shadow-gold-sm);
}

/* ─── Responsive Utilities ───────────────────────────────────── */
.show-mobile  { display: block; }
.hide-mobile  { display: none; }

@media (min-width: 768px) {
  .show-mobile { display: none; }
  .hide-mobile { display: block; }
}

.show-tablet { display: none; }

@media (min-width: 768px) {
  .show-tablet { display: block; }
}

@media (min-width: 1024px) {
  .show-tablet { display: none; }
}

/* ─── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Print ──────────────────────────────────────────────────── */
@media print {
  .site-nav,
  .site-footer,
  .hero-scroll-hint,
  .toast-container,
  .product-sticky-cta,
  .cart-drawer,
  .filter-drawer,
  .nav-mobile-menu {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .product-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}
