/* ============================================================
   CAMBRE CRAFTED — Design System
   cambrecrafted.store | CAMBRE SELLERS LLC, Oxford MS
   Warm artisan aesthetic for handcrafted candles, soaps & bath
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  font-family: var(--font-heading);
}

/* ============================================================
   2. CSS VARIABLES
   ============================================================ */
:root {
  /* ---- Core Palette ---- */
  --charcoal:        #2C2C2C;
  --charcoal-light:  #3D3D3D;
  --charcoal-dark:   #1A1A1A;
  --cream:           #FFF8F0;
  --cream-dark:      #F5EEDF;
  --sienna:          #C96B42;
  --sienna-light:    #D88A66;
  --sienna-dark:     #A85632;
  --sage:            #8B9D77;
  --sage-light:      #A3B391;
  --sage-dark:       #6E7F5F;
  --gold:            #D4A853;
  --gold-light:      #E2C177;
  --gold-dark:       #B08B3A;

  /* ---- Semantic ---- */
  --bg-primary:      var(--cream);
  --bg-secondary:    var(--cream-dark);
  --bg-dark:         var(--charcoal);
  --text-primary:    var(--charcoal);
  --text-secondary:  #5A5A5A;
  --text-light:      #8A8A8A;
  --text-on-dark:    var(--cream);
  --border-color:    #E0D6C8;
  --border-light:    #EDE7DB;
  --success:         #5A9E6F;
  --error:           #C94242;
  --warning:         var(--gold);
  --info:            #4A7FB5;

  /* ---- Typography ---- */
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;

  --fs-xs:    0.75rem;   /* 12px */
  --fs-sm:    0.875rem;  /* 14px */
  --fs-base:  1rem;      /* 16px */
  --fs-md:    1.125rem;  /* 18px */
  --fs-lg:    1.25rem;   /* 20px */
  --fs-xl:    1.5rem;    /* 24px */
  --fs-2xl:   2rem;      /* 32px */
  --fs-3xl:   2.5rem;    /* 40px */
  --fs-4xl:   3rem;      /* 48px */
  --fs-5xl:   3.75rem;   /* 60px */

  --fw-light:     300;
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* ---- Spacing ---- */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* ---- Layout ---- */
  --max-width:      1440px;
  --content-width:  1200px;
  --sidebar-width:  420px;
  --header-height:  72px;
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      16px;
  --radius-full:    9999px;

  /* ---- Shadows ---- */
  --shadow-sm:   0 1px 3px rgba(44, 44, 44, 0.06);
  --shadow-md:   0 4px 12px rgba(44, 44, 44, 0.08);
  --shadow-lg:   0 8px 30px rgba(44, 44, 44, 0.12);
  --shadow-xl:   0 16px 50px rgba(44, 44, 44, 0.16);
  --shadow-glow: 0 0 20px rgba(201, 107, 66, 0.25);

  /* ---- Transitions ---- */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.55, 0, 1, 0.45);
  --ease-both:  cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   500ms;

  /* ---- Z-Index ---- */
  --z-dropdown:   100;
  --z-sticky:     200;
  --z-overlay:    300;
  --z-modal:      400;
  --z-toast:      500;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1 {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

h4 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
}

h5 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}

h6 {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  line-height: 1.45;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-sm   { font-size: var(--fs-sm); }
.text-xs   { font-size: var(--fs-xs); }
.text-lg   { font-size: var(--fs-lg); }
.text-center { text-align: center; }

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sienna);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-description {
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  color: var(--text-light);
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm        { gap: var(--space-sm); }
.gap-md        { gap: var(--space-md); }
.gap-lg        { gap: var(--space-lg); }
.gap-xl        { gap: var(--space-xl); }

.hidden { display: none !important; }

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  transition: box-shadow var(--duration-normal) var(--ease-out),
              background var(--duration-normal) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--sienna);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: var(--fs-md);
}

.logo-accent {
  color: var(--sienna);
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sienna);
  border-radius: var(--radius-full);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--charcoal);
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.header-action-btn:hover {
  background: var(--cream-dark);
  color: var(--sienna);
}

.header-action-btn svg {
  width: 22px;
  height: 22px;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--sienna);
  color: white;
  font-size: 10px;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) var(--ease-out);
}

.hamburger:hover {
  background: var(--cream-dark);
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: var(--radius-full);
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: var(--z-overlay);
  padding: var(--space-2xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

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

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-nav-link:hover {
  color: var(--sienna);
}

/* ============================================================
   6. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.7) 0%,
    rgba(44, 44, 44, 0.4) 50%,
    rgba(44, 44, 44, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-2xl);
  animation: heroFadeIn 1s var(--ease-out) both;
}

.hero-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: var(--radius-full);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-title span {
  color: var(--gold-light);
}

.hero-description {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Mini hero for category / about pages */
.hero-mini {
  min-height: 40vh;
  background: var(--charcoal);
}

.hero-mini .hero-title {
  font-size: var(--fs-3xl);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  user-select: none;
  line-height: 1.2;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Primary — Burnt Sienna */
.btn-primary {
  background: var(--sienna);
  color: white;
  border-color: var(--sienna);
}

.btn-primary:hover {
  background: var(--sienna-dark);
  border-color: var(--sienna-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary — Sage Green */
.btn-secondary {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

.btn-secondary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-color);
}

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

/* Outline Light (on dark bg) */
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background: white;
  color: var(--charcoal);
  border-color: white;
}

/* Gold */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--sienna);
  border-color: transparent;
  padding: 8px 16px;
}

.btn-ghost:hover {
  background: rgba(201, 107, 66, 0.08);
}

/* Sizes */
.btn-sm {
  font-size: var(--fs-xs);
  padding: 8px 18px;
}

.btn-lg {
  font-size: var(--fs-base);
  padding: 16px 36px;
}

.btn-block {
  width: 100%;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   8. PRODUCT GRID
   ============================================================ */
.products-section {
  padding: var(--space-4xl) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

/* ============================================================
   9. PRODUCT CARDS
   ============================================================ */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-dark);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

/* Quick actions on hover */
.product-card-actions {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add {
  flex: 1;
  background: var(--sienna);
  color: white;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 10px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--duration-fast) var(--ease-out);
}

.product-quick-add:hover {
  background: var(--sienna-dark);
}

.product-quick-view {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease-out);
}

.product-quick-view:hover {
  background: var(--cream-dark);
}

.product-quick-view svg {
  width: 18px;
  height: 18px;
}

/* Card Body */
.product-card-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.product-card-category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: var(--space-xs);
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-name a:hover {
  color: var(--sienna);
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.stars svg {
  width: 14px;
  height: 14px;
}

.review-count {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.price-current {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--charcoal);
}

.price-original {
  font-size: var(--fs-sm);
  color: var(--text-light);
  text-decoration: line-through;
}

.price-savings {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--error);
}

/* ============================================================
   10. BADGES
   ============================================================ */
.badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  line-height: 1;
}

.badge-new {
  background: var(--sage);
  color: white;
}

.badge-bestseller {
  background: var(--gold);
  color: var(--charcoal);
}

.badge-sale {
  background: var(--error);
  color: white;
}

.badge-sold-out {
  background: var(--charcoal);
  color: white;
}

/* Wishlist heart on top-right */
.wishlist-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.product-card:hover .wishlist-btn {
  opacity: 1;
  transform: scale(1);
}

.wishlist-btn:hover {
  background: var(--sienna);
  color: white;
}

.wishlist-btn.active {
  opacity: 1;
  transform: scale(1);
  background: var(--sienna);
  color: white;
}

.wishlist-btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   11. CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--sidebar-width);
  max-width: 100vw;
  background: white;
  z-index: calc(var(--z-modal) + 1);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.cart-overlay.open + .cart-sidebar,
.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.cart-header h3 {
  font-size: var(--fs-lg);
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease-out);
}

.cart-close:hover {
  background: var(--cream-dark);
}

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

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-light);
}

.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--border-color);
  margin-bottom: var(--space-lg);
}

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

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

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}

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

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

.cart-item-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.qty-btn:hover {
  background: var(--cream-dark);
  border-color: var(--charcoal);
}

.qty-value {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  min-width: 24px;
  text-align: center;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  white-space: nowrap;
  text-align: right;
}

.cart-item-remove {
  color: var(--text-light);
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* Cart Footer */
.cart-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}

.cart-note {
  font-size: var(--fs-xs);
  color: var(--text-light);
  text-align: center;
  margin-top: var(--space-sm);
}

/* ============================================================
   12. CHECKOUT FORM
   ============================================================ */
.checkout-section {
  padding: var(--space-3xl) 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.form-group-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-light);
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-label .required {
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  font-size: var(--fs-sm);
  color: var(--charcoal);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px rgba(201, 107, 66, 0.12);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(201, 66, 66, 0.1);
}

.form-error-msg {
  font-size: var(--fs-xs);
  color: var(--error);
  margin-top: 4px;
}

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

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--sienna);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check-label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Order Summary Sidebar */
.order-summary {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
  max-height: calc(100vh - var(--header-height) - var(--space-2xl));
  overflow-y: auto;
}

.order-summary-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-light);
}

.order-summary-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

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

.order-item-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

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

.order-item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--charcoal);
  color: white;
  font-size: 10px;
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-totals {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--border-light);
}

.order-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.order-totals-row.total {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--charcoal);
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark);
  padding: var(--space-4xl) 0 0;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
}

.footer-brand .logo {
  color: white;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
  background: var(--sienna);
  color: white;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* Newsletter in footer */
.footer-newsletter {
  margin-top: var(--space-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: var(--fs-sm);
  transition: border-color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--sienna);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  background: var(--sienna);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: background var(--duration-fast) var(--ease-out);
}

.newsletter-btn:hover {
  background: var(--sienna-dark);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

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

.footer-payment img {
  height: 24px;
  opacity: 0.5;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer-payment img:hover {
  opacity: 1;
}

/* ============================================================
   14. TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  position: fixed;
  top: calc(var(--header-height) + var(--space-md));
  right: var(--space-lg);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--sage);
  min-width: 320px;
  max-width: 420px;
  animation: toastSlideIn var(--duration-normal) var(--ease-out) both;
}

.toast.toast-exit {
  animation: toastSlideOut var(--duration-normal) var(--ease-in) both;
}

.toast-success { border-left-color: var(--success); }
.toast-error   { border-left-color: var(--error); }
.toast-warning { border-left-color: var(--warning); }
.toast-info    { border-left-color: var(--info); }

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error   .toast-icon { color: var(--error); }
.toast-warning .toast-icon { color: var(--warning); }
.toast-info    .toast-icon { color: var(--info); }

.toast-message {
  flex: 1;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.toast-close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  flex-shrink: 0;
  transition: color var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.toast-close:hover {
  color: var(--charcoal);
  background: var(--cream-dark);
}

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

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

/* ============================================================
   15. MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.6);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out);
}

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

.modal-lg {
  max-width: 900px;
}

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

.modal-header h3 {
  font-size: var(--fs-lg);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast) var(--ease-out);
}

.modal-close:hover {
  background: var(--cream-dark);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl);
}

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

/* Quick View Modal — product specific */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.quick-view-images {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-dark);
}

.quick-view-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-info {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   16. EXTRA COMPONENTS
   ============================================================ */

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.category-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
}

.category-card-name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: white;
}

.category-card-count {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-xs);
}

/* Testimonial */
.testimonial-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: var(--fs-base);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--cream-dark);
  overflow: hidden;
}

.testimonial-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.testimonial-location {
  font-size: var(--fs-xs);
  color: var(--text-light);
}

/* Feature / USP Bar */
.usp-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-3xl) 0;
}

.usp-item {
  text-align: center;
  padding: var(--space-lg);
}

.usp-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-md);
  background: rgba(201, 107, 66, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna);
}

.usp-icon svg {
  width: 24px;
  height: 24px;
}

.usp-title {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.usp-text {
  font-size: var(--fs-xs);
  color: var(--text-light);
  margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--text-light);
  transition: color var(--duration-fast);
}

.breadcrumbs a:hover {
  color: var(--sienna);
}

.breadcrumbs .separator {
  font-size: var(--fs-xs);
}

.breadcrumbs .current {
  color: var(--charcoal);
  font-weight: var(--fw-medium);
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-3xl) 0;
}

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

.divider-icon {
  color: var(--sienna);
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--sienna);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Skeleton Loader */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--cream-dark) 25%,
    rgba(255, 255, 255, 0.4) 50%,
    var(--cream-dark) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

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

/* ============================================================
   17. ANIMATIONS
   ============================================================ */
.fade-in {
  animation: fadeIn var(--duration-normal) var(--ease-out) both;
}

.slide-up {
  animation: slideUp var(--duration-normal) var(--ease-out) both;
}

.scale-in {
  animation: scaleIn var(--duration-normal) var(--ease-out) both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Stagger children */
.stagger-children > *:nth-child(1)  { animation-delay: 0ms;   }
.stagger-children > *:nth-child(2)  { animation-delay: 60ms;  }
.stagger-children > *:nth-child(3)  { animation-delay: 120ms; }
.stagger-children > *:nth-child(4)  { animation-delay: 180ms; }
.stagger-children > *:nth-child(5)  { animation-delay: 240ms; }
.stagger-children > *:nth-child(6)  { animation-delay: 300ms; }
.stagger-children > *:nth-child(7)  { animation-delay: 360ms; }
.stagger-children > *:nth-child(8)  { animation-delay: 420ms; }
.stagger-children > *:nth-child(9)  { animation-delay: 480ms; }
.stagger-children > *:nth-child(10) { animation-delay: 540ms; }
.stagger-children > *:nth-child(11) { animation-delay: 600ms; }
.stagger-children > *:nth-child(12) { animation-delay: 660ms; }

/* ============================================================
   18. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Up to 1440px ---- */
@media (max-width: 1440px) {
  .container {
    max-width: 1100px;
  }
}

/* ---- Up to 1024px (Tablet Landscape) ---- */
@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
  }

  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }

  .hero-title {
    font-size: var(--fs-4xl);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

  .order-summary {
    position: static;
    max-height: none;
  }

  .usp-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-view-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Up to 768px (Tablet Portrait) ---- */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
  h3 { font-size: var(--fs-lg); }

  .hero {
    min-height: 70vh;
  }

  .hero-title {
    font-size: var(--fs-3xl);
  }

  .hero-description {
    font-size: var(--fs-base);
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-card-actions {
    opacity: 1;
    transform: translateY(0);
  }

  .wishlist-btn {
    opacity: 1;
    transform: scale(1);
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cart-sidebar {
    width: 100%;
  }

  .modal {
    margin: var(--space-md);
    max-height: 90vh;
  }

  .toast-container {
    left: var(--space-md);
    right: var(--space-md);
  }

  .toast {
    min-width: auto;
    max-width: none;
  }

  .usp-bar {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ---- Up to 375px (Mobile) ---- */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: var(--fs-2xl);
  }

  .hero-content {
    padding: var(--space-lg);
  }

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

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

  .container {
    padding: 0 var(--space-md);
  }

  .usp-bar {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ============================================================
   19. PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .cart-sidebar,
  .cart-overlay,
  .toast-container,
  .modal-overlay,
  .hamburger,
  .header-actions {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
