/* ============================================
   BEAU SOUL — Headless Shopify Storefront
   Design System: Warm, Cozy, Modern Home Furniture
   ============================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-text-primary); background: var(--color-bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* === DESIGN TOKENS === */
:root {
  /* Colors — Warm Earth Tones for Home Furniture */
  --color-bg: #FBF9F7;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F4F0EC;
  --color-border: #E5DFD6;
  --color-border-light: #EDE8E0;
  --color-text-primary: #2B2620;
  --color-text-secondary: #5C544A;
  --color-text-muted: #8A8275;
  --color-accent: #B76E7A;
  --color-accent-hover: #A05A66;
  --color-accent-fg: #FFFFFF;
  --color-accent-light: #F5E6E9;
  --color-warm: #C4A265;
  --color-warm-hover: #B08D4F;
  --color-warm-light: #F5EED9;
  --color-success: #4A7C4E;
  --color-warning: #C4754B;
  --color-error: #C04545;
  --color-sale: #C04545;
  --color-dark: #2B2620;
  --color-cream: #F3EFE9;
  --color-sage: #B8A590;
  --color-taupe: #B8A590;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(43,38,32,0.08);
  --shadow-md: 0 4px 12px rgba(43,38,32,0.10);
  --shadow-lg: 0 12px 32px rgba(43,38,32,0.14);
  --shadow-xl: 0 24px 60px rgba(43,38,32,0.18);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1280px;
  --header-height: 72px;
}

/* === CONTAINER === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); width: 100%; }
@media (max-width: 640px) { .container { padding: 0 var(--space-md); } }

/* === ANNOUNCEMENT BAR === */
.announcement-bar { background: var(--color-dark); color: #FAF8F5; text-align: center; padding: 10px var(--space-md); font-size: 13px; font-weight: 500; letter-spacing: 0.3px; }
.announcement-bar span { display: inline-flex; align-items: center; gap: 6px; }
.announcement-bar svg { width: 14px; height: 14px; }

/* === NAVIGATION === */
.nav { position: sticky; top: 0; z-index: 100; background: var(--color-surface); border-bottom: 1px solid var(--color-border); transition: box-shadow var(--transition-base); }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); gap: var(--space-lg); }
.nav-logo { font-family: var(--font-heading); font-size: 26px; font-weight: 400; color: var(--color-text-primary); white-space: nowrap; letter-spacing: -0.5px; }
.nav-logo span { color: var(--color-accent); }
.nav-links { display: flex; align-items: center; gap: var(--space-xl); flex: 1; justify-content: center; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--color-text-secondary); transition: color var(--transition-fast); position: relative; padding: 4px 0; }
.nav-link:hover, .nav-link.active { color: var(--color-text-primary); }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--color-accent); transition: width var(--transition-base); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: var(--space-md); }
.nav-action-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); color: var(--color-text-secondary); transition: all var(--transition-fast); position: relative; }
.nav-action-btn:hover { background: var(--color-surface-alt); color: var(--color-text-primary); }
.nav-action-btn svg { width: 20px; height: 20px; }
.cart-count { position: absolute; top: 2px; right: 2px; background: var(--color-warm); color: #fff; font-size: 11px; font-weight: 600; min-width: 18px; height: 18px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* === SEARCH BAR === */
.search-wrap { position: relative; }
.search-input { width: 100%; padding: 10px 16px 10px 40px; border: 1px solid var(--color-border); border-radius: var(--radius-full); font-size: 14px; background: var(--color-surface-alt); transition: all var(--transition-fast); }
.search-input:focus { outline: none; border-color: var(--color-accent); background: var(--color-surface); box-shadow: 0 0 0 3px var(--color-accent-light); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--color-text-muted); }
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); max-height: 400px; overflow-y: auto; z-index: 200; display: none; }
.search-results.show { display: block; }
.search-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; transition: background var(--transition-fast); border-bottom: 1px solid var(--color-border-light); }
.search-item:hover { background: var(--color-surface-alt); }
.search-item img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.search-item-info { flex: 1; min-width: 0; }
.search-item-title { font-size: 14px; font-weight: 500; color: var(--color-text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item-price { font-size: 13px; color: var(--color-text-muted); }
.search-item-price strong { color: var(--color-accent); }

/* === HAMBURGER / MOBILE MENU === */
.hamburger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--color-text-primary); border-radius: 2px; transition: all var(--transition-base); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: 0; left: -100%; width: 85%; max-width: 360px; height: 100vh; background: var(--color-surface); z-index: 300; transition: left var(--transition-slow); overflow-y: auto; box-shadow: var(--shadow-xl); padding: var(--space-xl) var(--space-lg); }
.mobile-menu.open { left: 0; }
.mobile-menu-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--color-text-secondary); }
.mobile-menu nav { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-xl); }
.mobile-menu nav a { font-size: 18px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--color-border-light); color: var(--color-text-primary); }
.mobile-menu nav a:hover { color: var(--color-accent); }
.mobile-menu .search-wrap { margin-bottom: var(--space-lg); }

.mobile-overlay { position: fixed; inset: 0; background: rgba(43,38,32,0.5); z-index: 250; opacity: 0; pointer-events: none; transition: opacity var(--transition-base); }
.mobile-overlay.show { opacity: 1; pointer-events: auto; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: var(--radius-sm); transition: all var(--transition-fast); text-align: center; white-space: nowrap; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--color-accent); color: var(--color-accent-fg); }
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--color-warm); color: #fff; }
.btn-secondary:hover { background: var(--color-warm-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--color-text-primary); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-surface-alt); border-color: var(--color-text-muted); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* === BADGES === */
.badge { display: inline-flex; align-items: center; padding: 4px 10px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-radius: var(--radius-sm); }
.badge-sale { background: var(--color-sale); color: #fff; }
.badge-new { background: var(--color-accent); color: #fff; }
.badge-out { background: var(--color-text-muted); color: #fff; }
.badge-warm { background: var(--color-warm); color: #fff; }

/* === HERO === */
.hero { position: relative; min-height: 520px; display: flex; align-items: 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(43,38,32,0.65) 0%, rgba(43,38,32,0.35) 50%, rgba(43,38,32,0.15) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 600px; padding: var(--space-3xl) 0; }
.hero-eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--color-taupe); margin-bottom: var(--space-md); }
.hero-title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px); font-weight: 400; line-height: 1.1; color: #fff; margin-bottom: var(--space-lg); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: var(--space-xl); max-width: 480px; line-height: 1.5; }
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* === SECTIONS === */
.section { padding: var(--space-3xl) 0; }
.section-alt { background: var(--color-surface-alt); }
.section-tight { padding: var(--space-2xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); font-weight: 400; color: var(--color-text-primary); margin-bottom: var(--space-sm); }
.section-subtitle { font-size: 16px; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto; }
.section-header-left { text-align: left; }
.section-header-left .section-subtitle { margin: 0; }

/* === GRIDS === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-lg); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .grid-3, .grid-4, .grid-auto { grid-template-columns: 1fr; } }

/* === COLLECTION CARDS === */
.collection-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; display: block; transition: transform var(--transition-base); }
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.collection-card:hover img { transform: scale(1.05); }
.collection-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(43,38,32,0.75) 0%, rgba(43,38,32,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-lg); }
.collection-card-title { font-family: var(--font-heading); font-size: 24px; color: #fff; margin-bottom: 4px; }
.collection-card-count { font-size: 13px; color: rgba(255,255,255,0.8); }

/* === PRODUCT CARDS === */
.product-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition-base); border: 1px solid var(--color-border-light); display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--color-surface-alt); }
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }
.product-card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.product-card-quick-add { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(to top, rgba(43,38,32,0.8), transparent); transform: translateY(100%); transition: transform var(--transition-base); z-index: 2; }
.product-card:hover .product-card-quick-add { transform: translateY(0); }
.product-card-quick-add .btn { width: 100%; }
.product-card-info { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.product-card-vendor { font-size: 11px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-card-title { font-size: 15px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 8px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-title a:hover { color: var(--color-accent); }
.product-card-price-wrap { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.product-card-price { font-size: 17px; font-weight: 700; color: var(--color-text-primary); font-family: var(--font-mono); }
.product-card-compare-price { font-size: 14px; color: var(--color-text-muted); text-decoration: line-through; }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; font-size: 12px; color: var(--color-text-muted); }
.product-card-rating .stars { color: var(--color-warm); letter-spacing: 1px; }

/* === PRODUCT PAGE LAYOUT === */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); padding: var(--space-2xl) 0; }
@media (max-width: 768px) { .product-layout { grid-template-columns: 1fr; gap: var(--space-lg); } }

.product-gallery { position: sticky; top: calc(var(--header-height) + 20px); align-self: start; }
.gallery-main-wrap { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface-alt); aspect-ratio: 1; margin-bottom: var(--space-md); position: relative; }
.gallery-main { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform var(--transition-base); }
.gallery-main.zoomed { transform: scale(2); cursor: zoom-out; }
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; transition: border-color var(--transition-fast); background: var(--color-surface-alt); }
.gallery-thumb.active { border-color: var(--color-accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: var(--space-md); }
.product-vendor { font-size: 13px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: var(--space-sm); }
.product-title { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px); font-weight: 400; line-height: 1.2; margin-bottom: var(--space-md); }
.product-price-wrap { display: flex; align-items: baseline; gap: 12px; margin-bottom: var(--space-md); }
.product-price { font-size: 28px; font-weight: 700; color: var(--color-text-primary); font-family: var(--font-mono); }
.product-compare-price { font-size: 20px; color: var(--color-text-muted); text-decoration: line-through; }
.product-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: var(--space-md); font-size: 14px; }
.product-rating-row .stars { color: var(--color-warm); font-size: 16px; letter-spacing: 2px; }
.product-rating-row .rating-text { color: var(--color-text-muted); }
.product-short-desc { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: var(--space-lg); }

/* Option selectors */
.option-group { margin-bottom: var(--space-lg); }
.option-label { font-size: 13px; font-weight: 600; color: var(--color-text-primary); margin-bottom: var(--space-sm); text-transform: uppercase; letter-spacing: 0.5px; }
.option-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn { padding: 8px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--color-text-secondary); background: var(--color-surface); transition: all var(--transition-fast); }
.option-btn:hover { border-color: var(--color-text-muted); }
.option-btn.active { border-color: var(--color-accent); background: var(--color-accent-light); color: var(--color-accent); font-weight: 600; }
.option-btn.unavailable { opacity: 0.4; text-decoration: line-through; cursor: not-allowed; }

/* Quantity control */
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 40px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--color-text-secondary); transition: background var(--transition-fast); }
.qty-btn:hover { background: var(--color-surface-alt); color: var(--color-text-primary); }
.qty-input { width: 50px; height: 44px; text-align: center; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); font-size: 15px; font-weight: 600; }
.qty-input:focus { outline: none; }

/* ATC area */
.product-atc-row { display: flex; gap: 12px; margin: var(--space-lg) 0; }
.product-atc-row .btn { flex: 1; height: 52px; font-size: 15px; }
.availability-msg { font-size: 14px; margin-bottom: var(--space-md); display: flex; align-items: center; gap: 6px; }
.availability-msg.in-stock { color: var(--color-success); }
.availability-msg.out-stock { color: var(--color-error); }

/* Accordions */
.product-accordions { margin: var(--space-xl) 0; }
.accordion { border-bottom: 1px solid var(--color-border); }
.accordion-header { width: 100%; padding: var(--space-md) 0; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: var(--color-text-primary); text-align: left; }
.accordion-header:hover { color: var(--color-accent); }
.accordion-icon { width: 20px; height: 20px; transition: transform var(--transition-base); }
.accordion.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.accordion.open .accordion-body { max-height: 800px; }
.accordion-body-inner { padding: 0 0 var(--space-md); font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }
.accordion-body-inner ul { padding-left: 20px; margin: var(--space-sm) 0; }
.accordion-body-inner li { list-style: disc; margin-bottom: 4px; }

/* Sticky ATC */
.sticky-atc { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-surface); border-top: 1px solid var(--color-border); box-shadow: 0 -4px 12px rgba(43,38,32,0.08); padding: 12px var(--space-lg); z-index: 90; transform: translateY(100%); transition: transform var(--transition-base); display: flex; align-items: center; gap: var(--space-md); }
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-product { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.sticky-atc-product img { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.sticky-atc-product .info { min-width: 0; }
.sticky-atc-product .title { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc-product .price { font-size: 14px; font-weight: 700; color: var(--color-accent); font-family: var(--font-mono); }
@media (max-width: 640px) { .sticky-atc { padding: 10px var(--space-md); } .sticky-atc-product .title { font-size: 13px; } }

/* === TRUST BADGES === */
.trust-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
@media (max-width: 768px) { .trust-badges { grid-template-columns: repeat(2, 1fr); } }
.trust-item { text-align: center; padding: var(--space-lg); }
.trust-item svg { width: 36px; height: 36px; color: var(--color-accent); margin-bottom: var(--space-sm); }
.trust-item-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.trust-item-desc { font-size: 13px; color: var(--color-text-muted); }

/* === REVIEWS === */
.reviews-section { margin: var(--space-2xl) 0; }
.reviews-summary { display: flex; gap: var(--space-xl); align-items: center; margin-bottom: var(--space-xl); flex-wrap: wrap; }
.reviews-avg { text-align: center; }
.reviews-score { font-size: 48px; font-weight: 700; font-family: var(--font-mono); color: var(--color-text-primary); }
.reviews-score-out { font-size: 16px; color: var(--color-text-muted); }
.reviews-stars { color: var(--color-warm); font-size: 18px; letter-spacing: 2px; margin: 4px 0; }
.reviews-count { font-size: 13px; color: var(--color-text-muted); }
.reviews-bars { flex: 1; min-width: 200px; }
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rating-bar-label { font-size: 13px; color: var(--color-text-muted); width: 40px; }
.rating-bar-track { flex: 1; height: 8px; background: var(--color-surface-alt); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--color-warm); border-radius: var(--radius-full); transition: width var(--transition-slow); }
.rating-bar-pct { font-size: 12px; color: var(--color-text-muted); width: 36px; text-align: right; }

.review-card { background: var(--color-surface); border: 1px solid var(--color-border-light); border-radius: var(--radius-md); padding: var(--space-lg); margin-bottom: var(--space-md); }
.review-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: var(--space-sm); }
.review-author { font-weight: 600; font-size: 15px; }
.review-verified { font-size: 12px; color: var(--color-success); display: flex; align-items: center; gap: 4px; }
.review-title { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.review-body { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }
.review-stars { color: var(--color-warm); font-size: 14px; letter-spacing: 2px; margin-bottom: 6px; }
.review-date { font-size: 12px; color: var(--color-text-muted); }

/* === CART DRAWER === */
.cart-overlay { position: fixed; inset: 0; background: rgba(43,38,32,0.5); z-index: 400; opacity: 0; pointer-events: none; transition: opacity var(--transition-base); }
.cart-overlay.show { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: -100%; width: 100%; max-width: min(420px, 100vw); height: 100vh; background: var(--color-surface); z-index: 500; transition: right var(--transition-slow); display: flex; flex-direction: column; box-shadow: var(--shadow-xl); }
.cart-drawer.open { right: 0; }
.cart-drawer-header { display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg); border-bottom: 1px solid var(--color-border); }
.cart-drawer-header h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 400; display: flex; align-items: center; gap: 8px; }
.cart-drawer-header .badge { background: var(--color-accent); }
.cart-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--color-text-muted); border-radius: var(--radius-full); }
.cart-close:hover { background: var(--color-surface-alt); }
.cart-lines { flex: 1; overflow-y: auto; padding: var(--space-md) var(--space-lg); }
.cart-item { display: flex; gap: 12px; padding: var(--space-md) 0; border-bottom: 1px solid var(--color-border-light); }
.cart-item img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--color-surface-alt); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 14px; font-weight: 500; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-variant { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--color-text-primary); font-family: var(--font-mono); }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-item-qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.cart-item-qty button { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--color-text-secondary); }
.cart-item-qty button:hover { background: var(--color-surface-alt); }
.cart-item-qty span { width: 32px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-item-remove { font-size: 12px; color: var(--color-text-muted); text-decoration: underline; }
.cart-item-remove:hover { color: var(--color-error); }
.cart-empty { text-align: center; padding: var(--space-3xl) var(--space-lg); }
.cart-empty svg { width: 48px; height: 48px; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.cart-empty p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.cart-footer { padding: var(--space-lg); border-top: 1px solid var(--color-border); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-sm); }
.cart-subtotal strong { font-size: 18px; font-family: var(--font-mono); }
.cart-tax-note { font-size: 12px; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.cart-footer .btn { margin-bottom: 8px; }

/* === TOAST === */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--color-text-primary); color: #fff; padding: 14px 24px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; z-index: 999; opacity: 0; transition: all var(--transition-base); box-shadow: var(--shadow-lg); max-width: 90%; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-success { background: var(--color-success); }
.toast-error { background: var(--color-error); }

/* === BREADCRUMB === */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-muted); padding: var(--space-md) 0; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { color: var(--color-border); }
.breadcrumb-item.current { color: var(--color-text-primary); font-weight: 500; }

/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: var(--space-2xl); }
.pagination-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--color-text-secondary); transition: all var(--transition-fast); }
.pagination-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.pagination-btn.active { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* === SORT BAR === */
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-lg); gap: var(--space-md); flex-wrap: wrap; }
.sort-bar-info { font-size: 14px; color: var(--color-text-muted); }
.sort-select { padding: 8px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 14px; background: var(--color-surface); color: var(--color-text-primary); cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--color-accent); }

/* === COLLECTION HERO === */
.collection-hero { position: relative; min-height: 280px; display: flex; align-items: center; overflow: hidden; }
.collection-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,38,32,0.6) 0%, rgba(43,38,32,0.3) 100%); }
.collection-hero-content { position: relative; z-index: 2; padding: var(--space-2xl) 0; }
.collection-hero-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: var(--space-sm); }
.collection-hero-desc { font-size: 16px; color: rgba(255,255,255,0.9); max-width: 600px; }

/* === FOOTER === */
.footer { background: var(--color-dark); color: #C4B8A8; padding: var(--space-2xl) 0 var(--space-lg); margin-top: var(--space-3xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--font-heading); font-size: 24px; color: #fff; margin-bottom: var(--space-md); }
.footer-logo span { color: var(--color-warm); }
.footer-desc { font-size: 14px; line-height: 1.6; margin-bottom: var(--space-md); max-width: 320px; }
.footer-col h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: var(--space-md); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #C4B8A8; transition: color var(--transition-fast); }
.footer-col ul li a:hover { color: var(--color-sage); }
.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact a { color: #C4B8A8; }
.footer-contact a:hover { color: var(--color-sage); }
.social-links { display: flex; gap: 12px; margin-top: var(--space-md); }
.social-links a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); background: rgba(255,255,255,0.1); transition: all var(--transition-fast); }
.social-links a:hover { background: var(--color-accent); }
.social-links svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-lg); display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: var(--space-sm); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments span { font-size: 11px; padding: 4px 8px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); }

/* === POLICY PAGES === */
.policy-page { max-width: 800px; margin: 0 auto; padding: var(--space-2xl) 0; }
.policy-page h1 { font-family: var(--font-heading); font-size: 36px; margin-bottom: var(--space-lg); }
.policy-page h2 { font-size: 22px; font-weight: 600; margin: var(--space-xl) 0 var(--space-md); color: var(--color-text-primary); }
.policy-page h3 { font-size: 18px; font-weight: 600; margin: var(--space-lg) 0 var(--space-sm); }
.policy-page p { margin-bottom: var(--space-md); color: var(--color-text-secondary); line-height: 1.7; }
.policy-page ul { padding-left: 20px; margin-bottom: var(--space-md); }
.policy-page li { list-style: disc; margin-bottom: 6px; color: var(--color-text-secondary); }
.policy-sidebar { display: flex; gap: var(--space-2xl); }
.policy-sidebar aside { width: 240px; flex-shrink: 0; }
.policy-sidebar aside ul li { margin-bottom: 8px; list-style: none; }
.policy-sidebar aside ul li a { font-size: 14px; padding: 8px 12px; border-radius: var(--radius-sm); display: block; transition: all var(--transition-fast); }
.policy-sidebar aside ul li a:hover, .policy-sidebar aside ul li a.active { background: var(--color-surface-alt); color: var(--color-accent); }
.policy-sidebar .policy-content { flex: 1; min-width: 0; }
@media (max-width: 768px) { .policy-sidebar { flex-direction: column; } .policy-sidebar aside { width: 100%; } }

/* === CONTACT FORM === */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 15px; background: var(--color-surface); transition: all var(--transition-fast); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px var(--color-accent-light); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-error { font-size: 13px; color: var(--color-error); margin-top: 4px; }
.form-success { background: var(--color-accent-light); color: var(--color-accent); padding: var(--space-md); border-radius: var(--radius-sm); margin-bottom: var(--space-md); font-weight: 500; }

/* === FAQ === */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; padding: var(--space-md) 0; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 500; text-align: left; color: var(--color-text-primary); }
.faq-question:hover { color: var(--color-accent); }
.faq-icon { width: 20px; height: 20px; transition: transform var(--transition-base); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 var(--space-md); font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }

/* === NEWSLETTER === */
.newsletter { background: var(--color-dark); color: #fff; padding: var(--space-2xl) 0; text-align: center; }
.newsletter h2 { font-family: var(--font-heading); font-size: 32px; margin-bottom: var(--space-sm); }
.newsletter p { color: #C4B8A8; margin-bottom: var(--space-lg); }
.newsletter-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: none; border-radius: var(--radius-sm); font-size: 15px; }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { padding: 14px 28px; }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* === 404 PAGE === */
.error-page { text-align: center; padding: var(--space-3xl) 0; }
.error-page h1 { font-family: var(--font-heading); font-size: 120px; color: var(--color-accent); line-height: 1; }
.error-page h2 { font-size: 24px; margin-bottom: var(--space-md); }
.error-page p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }

/* === SKELETON === */
.skeleton { background: linear-gradient(90deg, var(--color-surface-alt) 25%, var(--color-border-light) 50%, var(--color-surface-alt) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

.fade-in { animation: fadeIn var(--transition-slow); }
.slide-up { animation: slideUp var(--transition-slow); }

/* === BLOG === */
.blog-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border-light); transition: all var(--transition-base); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card-info { padding: var(--space-lg); }
.blog-card-title { font-family: var(--font-heading); font-size: 20px; margin-bottom: var(--space-sm); line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--color-text-secondary); margin-bottom: var(--space-md); line-height: 1.6; }
.blog-card-meta { font-size: 13px; color: var(--color-text-muted); display: flex; gap: 12px; }

/* === UTILITY === */
.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; }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.w-full { width: 100%; }

/* === MOBILE NAVIGATION RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .nav-logo { flex: 1; text-align: center; }
}
@media (min-width: 901px) {
  .hamburger { display: none; }
  .mobile-menu, .mobile-overlay { display: none; }
}

/* Prevent any horizontal overflow globally */
html, body { max-width: 100%; overflow-x: hidden; }

/* === ACCESSIBILITY === */
*:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* === BRAND STORY === */
.brand-story { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: center; }
@media (max-width: 768px) { .brand-story { grid-template-columns: 1fr; } }
.brand-story-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.brand-story-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-text h2 { font-family: var(--font-heading); font-size: 32px; margin-bottom: var(--space-md); }
.brand-story-text p { font-size: 16px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: var(--space-md); }

/* === VALUE PROPS === */
.value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 768px) { .value-props { grid-template-columns: 1fr; } }
.value-prop { text-align: center; padding: var(--space-xl); }
.value-prop-icon { width: 56px; height: 56px; margin: 0 auto var(--space-md); display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); background: var(--color-accent-light); }
.value-prop-icon svg { width: 28px; height: 28px; color: var(--color-accent); }
.value-prop h3 { font-size: 18px; font-weight: 600; margin-bottom: var(--space-sm); }
.value-prop p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }

/* === LIFESTYLE BANNER === */
.lifestyle-banner { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 360px; display: flex; align-items: center; }
.lifestyle-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lifestyle-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,38,32,0.7) 0%, rgba(43,38,32,0.2) 100%); }
.lifestyle-banner-content { position: relative; z-index: 2; padding: var(--space-2xl); max-width: 500px; }
.lifestyle-banner-content h2 { font-family: var(--font-heading); font-size: 32px; color: #fff; margin-bottom: var(--space-sm); }
.lifestyle-banner-content p { color: rgba(255,255,255,0.9); margin-bottom: var(--space-lg); }

/* === RELATED PRODUCTS === */
.related-products { margin: var(--space-2xl) 0; }

/* === PAGE CONTENT === */
.page-content { max-width: 800px; margin: 0 auto; padding: var(--space-2xl) 0; }
.page-content h1 { font-family: var(--font-heading); font-size: 36px; margin-bottom: var(--space-lg); }
.page-content h2 { font-size: 24px; margin: var(--space-xl) 0 var(--space-md); }
.page-content p { margin-bottom: var(--space-md); color: var(--color-text-secondary); line-height: 1.7; }
.page-content img { border-radius: var(--radius-md); margin: var(--space-md) 0; }

/* === CHECKOUT PAGE === */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: var(--space-2xl); padding: var(--space-xl) 0 var(--space-3xl); }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-form-section { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-xl); margin-bottom: var(--space-lg); }
.checkout-form-section h2 { font-family: var(--font-heading); font-size: 22px; margin-bottom: var(--space-lg); display: flex; align-items: center; gap: 10px; }
.checkout-form-section h2 .step-num { width: 28px; height: 28px; background: var(--color-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-family: var(--font-body); font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.checkout-summary { position: sticky; top: calc(var(--header-height) + 20px); align-self: start; }
.checkout-summary-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-lg); }
.checkout-summary-card h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: var(--space-md); }
.checkout-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--color-border-light); }
.checkout-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--color-surface-alt); }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-title { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.checkout-item-variant { font-size: 12px; color: var(--color-text-muted); }
.checkout-item-meta { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }
.checkout-item-total { font-size: 14px; font-weight: 700; font-family: var(--font-mono); white-space: nowrap; }
.checkout-totals { margin-top: var(--space-md); padding-top: var(--space-md); border-top: 2px solid var(--color-border); }
.checkout-total-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.checkout-total-row.grand { font-size: 18px; font-weight: 700; padding-top: 12px; border-top: 1px solid var(--color-border); margin-top: 8px; }
.checkout-total-row.grand strong { font-family: var(--font-mono); }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 2px solid var(--color-border); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition-fast); }
.payment-option:hover { border-color: var(--color-text-muted); }
.payment-option.selected { border-color: var(--color-accent); background: var(--color-accent-light); }
.payment-option-icon { width: 40px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; }
.payment-option-icon.visa { background: #1A1F71; }
.payment-option-icon.paypal { background: #003087; }
.payment-option-icon.card { background: var(--color-accent); }
.payment-option-label { font-size: 14px; font-weight: 500; }
.payment-option-desc { font-size: 12px; color: var(--color-text-muted); }
.card-fields { margin-top: var(--space-md); display: none; }
.card-fields .form-group { margin-bottom: var(--space-sm); }
.place-order-btn { width: 100%; padding: 16px; font-size: 16px; font-weight: 700; background: var(--color-accent); color: #fff; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition-fast); margin-top: var(--space-lg); }
.place-order-btn:hover { background: var(--color-accent-hover); }
.place-order-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-empty { text-align: center; padding: var(--space-3xl) var(--space-lg); }
.checkout-empty svg { width: 64px; height: 64px; color: var(--color-text-muted); margin: 0 auto var(--space-md); display: block; }

/* === ORDER CONFIRMATION === */
.confirmation-page { max-width: 700px; margin: 0 auto; padding: var(--space-2xl) 0 var(--space-3xl); text-align: center; }
.confirmation-icon { width: 80px; height: 80px; margin: 0 auto var(--space-lg); background: var(--color-accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.confirmation-icon svg { width: 40px; height: 40px; color: var(--color-accent); }
.confirmation-page h1 { font-family: var(--font-heading); font-size: 36px; margin-bottom: var(--space-sm); }
.confirmation-order-num { font-size: 18px; font-weight: 600; color: var(--color-accent); margin-bottom: var(--space-md); }
.confirmation-details { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-xl); margin: var(--space-xl) 0; text-align: left; }
.confirmation-details h3 { font-size: 18px; margin-bottom: var(--space-md); padding-bottom: var(--space-sm); border-bottom: 1px solid var(--color-border); }
.confirmation-detail-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.confirmation-detail-row strong { font-family: var(--font-mono); }
.confirmation-items { margin: var(--space-md) 0; }
.confirmation-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--color-border-light); }
.confirmation-item img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; }
.confirmation-item-info { flex: 1; }
.confirmation-item-title { font-size: 14px; font-weight: 500; }
.confirmation-item-meta { font-size: 12px; color: var(--color-text-muted); }
.confirmation-item-price { font-size: 14px; font-weight: 700; font-family: var(--font-mono); }
.about-hero { text-align: center; padding: var(--space-3xl) 0; }
.about-hero h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 48px); margin-bottom: var(--space-md); }
.about-hero p { font-size: 18px; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin: var(--space-2xl) 0; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-stat { text-align: center; }
.about-stat-num { font-family: var(--font-heading); font-size: 40px; color: var(--color-accent); }
.about-stat-label { font-size: 14px; color: var(--color-text-muted); }
