/* ============================================
   INN ADAPTIVE APPAREL — Design System
   Niche: Adaptive clothing & footwear for
   adults, seniors, and mobility-limited individuals
   Brand personality: Trustworthy, warm, clinical-adjacent,
   dignified, accessible
   ============================================ */

/* --- 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 { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* --- Design Tokens --- */
:root {
  /* Color palette — warm, trustworthy, clinical-adjacent */
  --color-bg: #FAF8F5;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F2EDE6;
  --color-border: #E0D9CE;
  --color-border-light: #EDE8DF;
  --color-text-primary: #1C1B19;
  --color-text-secondary: #4A4742;
  --color-text-muted: #8A857C;
  --color-accent: #2D6A6E;
  --color-accent-hover: #235558;
  --color-accent-light: #E8F0F0;
  --color-accent-fg: #FFFFFF;
  --color-warm: #C97B4B;
  --color-warm-light: #F5EBE3;
  --color-success: #4A7C59;
  --color-success-light: #E8F0EA;
  --color-warning: #C99A2E;
  --color-warning-light: #F8F0DB;
  --color-error: #B84C4C;
  --color-error-light: #F5E8E8;
  --color-sale: #B84C4C;

  /* Typography */
  --font-heading: 'Fraunces', 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(28,27,25,0.06), 0 1px 2px rgba(28,27,25,0.04);
  --shadow-md: 0 4px 12px rgba(28,27,25,0.08), 0 2px 4px rgba(28,27,25,0.04);
  --shadow-lg: 0 12px 32px rgba(28,27,25,0.10), 0 4px 8px rgba(28,27,25,0.06);
  --shadow-xl: 0 24px 48px rgba(28,27,25,0.14);

  /* 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;
  --container-narrow: 800px;
  --header-height: 72px;
}

/* --- Accessibility --- */
.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;
}
: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;
    scroll-behavior: auto !important;
  }
}

/* --- Container --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-lg); width: 100%; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-lg); width: 100%; }

/* --- Animations --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--color-accent);
  color: var(--color-accent-fg);
  text-align: center;
  padding: 10px var(--space-lg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar strong { font-weight: 700; }
.announcement-bar .ann-item { display: inline-flex; align-items: center; gap: 6px; }
.announcement-bar .ann-divider { opacity: 0.4; margin: 0 12px; }

/* --- Navigation --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: var(--space-lg);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent-fg);
  font-size: 18px; font-weight: 700;
  font-family: var(--font-heading);
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .logo-text .main { font-size: 18px; }
.nav-logo .logo-text .sub { font-size: 11px; color: var(--color-text-muted); font-family: var(--font-body); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--color-accent);
  transition: width var(--transition-base);
}
.nav-links a:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform var(--transition-fast); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  min-width: 220px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--color-surface-alt); color: var(--color-accent); }

.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-sm);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-action-btn:hover { background: var(--color-surface-alt); color: var(--color-accent); }
.nav-action-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--color-warm);
  color: #fff;
  font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  font-family: var(--font-body);
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* Search in nav */
.nav-search-wrap { position: relative; flex: 1; max-width: 320px; }
.nav-search-input {
  width: 100%; height: 40px;
  padding: 0 12px 0 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface-alt);
  font-size: 14px;
  transition: all var(--transition-fast);
}
.nav-search-input:focus { border-color: var(--color-accent); background: var(--color-surface); outline: none; }
.nav-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--color-text-muted);
}
.search-results-dropdown {
  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;
  display: none; z-index: 200;
}
.search-results-dropdown.active { display: block; }
.search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-fast);
}
.search-item:last-child { border-bottom: none; }
.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: 600; color: var(--color-text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item-price { font-size: 13px; color: var(--color-accent); font-weight: 600; }
.search-no-results { padding: 20px; text-align: center; color: var(--color-text-muted); font-size: 14px; }

/* 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.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; top: 0; left: -100%; width: 85%; max-width: 360px;
  height: 100vh; background: var(--color-surface);
  z-index: 300; padding: var(--header-height) var(--space-lg) var(--space-lg);
  overflow-y: auto;
  transition: left var(--transition-slow);
  box-shadow: var(--shadow-xl);
}
.mobile-menu.active { left: 0; }
.mobile-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(28,27,25,0.4); z-index: 250;
  opacity: 0; visibility: hidden; transition: all var(--transition-base);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  padding: 14px 0; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-primary);
}
.mobile-menu nav a:hover { color: var(--color-accent); }
.mobile-menu .mobile-search {
  margin-bottom: var(--space-lg);
}
.mobile-menu .mobile-search input {
  width: 100%; height: 44px; padding: 0 16px;
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface-alt); font-size: 15px;
}

/* --- 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);
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}
.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-surface-alt); color: var(--color-text-primary); border: 1px solid var(--color-border); }
.btn-secondary:hover { background: var(--color-border); }
.btn-ghost { background: transparent; color: var(--color-text-secondary); }
.btn-ghost:hover { background: var(--color-surface-alt); color: var(--color-text-primary); }
.btn-warm { background: var(--color-warm); color: #fff; }
.btn-warm:hover { background: #b56a3f; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.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; }
.btn .spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin 0.6s linear infinite; }

/* --- Badges --- */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px; font-size: 12px; font-weight: 600;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.badge-sale { background: var(--color-sale); color: #fff; }
.badge-new { background: var(--color-success); color: #fff; }
.badge-out { background: var(--color-text-muted); color: #fff; }
.badge-accent { background: var(--color-accent-light); color: var(--color-accent); }
.badge-warm { background: var(--color-warm-light); color: var(--color-warm); }

/* --- Sections --- */
.section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--color-surface-alt); }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px; color: var(--color-text-secondary);
  margin-top: var(--space-sm);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.section-eyebrow {
  font-size: 13px; font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-lg); }

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

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2D6A6E 0%, #1C4F52 100%);
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.35;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(28,79,82,0.85) 0%, rgba(28,79,82,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: var(--space-2xl) 0;
  animation: slideUp 0.8s ease;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); }
.hero-stats {
  display: flex; gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { color: #fff; }
.hero-stat-num { font-family: var(--font-heading); font-size: 32px; font-weight: 700; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* --- Product Card --- */
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex; flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-border);
}
.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: 6px;
  z-index: 2;
}
.product-card-quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(28,27,25,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-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.product-card-vendor { font-size: 12px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.product-card-title {
  font-size: 15px; font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  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: 18px; 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: var(--space-sm); }
.product-card-rating .stars { color: var(--color-warm); font-size: 14px; }
.product-card-rating .count { font-size: 12px; color: var(--color-text-muted); }

/* --- Collection Card --- */
.collection-card {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(28,27,25,0.85), transparent);
  color: #fff;
}
.collection-card-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; }
.collection-card-count { font-size: 13px; opacity: 0.8; margin-top: 2px; }

/* --- Blog Card --- */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: var(--space-lg); }
.blog-card-meta { font-size: 13px; color: var(--color-text-muted); margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }
.blog-card-read-more { margin-top: var(--space-md); font-size: 14px; font-weight: 600; color: var(--color-accent); }



/* --- Blog Grid & Article (matches existing design system) --- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid-related { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  align-self: flex-start;
}
a.blog-card-read-more.btn {
  color: var(--color-text-primary);
  text-decoration: none;
}
.blog-card-title a:hover { color: var(--color-accent); }
.blog-article-header { text-align: left; margin-bottom: var(--space-lg); }
.blog-article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: var(--space-sm) 0;
}
.blog-article-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  aspect-ratio: 16/10;
  background: var(--color-surface-alt);
}
.blog-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text-primary);
}
.blog-article-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text-primary);
}
.blog-article-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-article-content a:hover { color: var(--color-accent-hover); }
.blog-article-content ol {
  padding-left: 20px;
  margin-bottom: var(--space-md);
  list-style: decimal;
}
.blog-article-content ol li {
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

/* --- Trust Badges --- */
.trust-badges {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg);
  padding: var(--space-xl) 0;
}
@media (min-width: 768px) { .trust-badges { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
}
.trust-item-icon {
  width: 56px; height: 56px;
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.trust-item-icon svg { width: 28px; height: 28px; }
.trust-item-title { font-size: 15px; font-weight: 600; color: var(--color-text-primary); }
.trust-item-desc { font-size: 13px; color: var(--color-text-muted); }

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; padding: var(--space-md) 0;
  font-size: 13px; color: var(--color-text-muted);
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .separator { opacity: 0.4; }
.breadcrumb .current { color: var(--color-text-secondary); font-weight: 500; }

/* --- Product Page Layout --- */
.product-layout {
  display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
  padding: var(--space-lg) 0 var(--space-2xl);
}
@media (min-width: 768px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}
@media (min-width: 1024px) {
  .product-layout { grid-template-columns: 1.2fr 1fr; }
}

/* Product Gallery */
.product-gallery { display: flex; flex-direction: column; gap: var(--space-md); }
.gallery-main-wrap {
  position: relative; aspect-ratio: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-light);
}
.gallery-main-wrap img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-main-wrap .zoom-hint {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,0.9); padding: 6px 12px;
  border-radius: var(--radius-full); font-size: 12px;
  color: var(--color-text-secondary); display: flex; align-items: center; gap: 4px;
}
.gallery-thumbs { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.gallery-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; transition: border-color var(--transition-fast);
  background: var(--color-surface-alt);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--color-accent); }
.gallery-thumb:hover { border-color: var(--color-accent-hover); }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: var(--space-md); }
.product-vendor { font-size: 13px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.product-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600; line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-rating-row { display: flex; align-items: center; gap: 8px; }
.product-rating-row .stars { color: var(--color-warm); font-size: 16px; }
.product-rating-row .rating-text { font-size: 14px; color: var(--color-text-secondary); }
.product-rating-row .rating-count { font-size: 13px; color: var(--color-text-muted); }

.product-price-wrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.product-price { font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: var(--color-text-primary); }
.product-compare-price { font-family: var(--font-mono); font-size: 18px; color: var(--color-text-muted); text-decoration: line-through; }
.product-save-badge { background: var(--color-sale); color: #fff; padding: 3px 10px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; }

.product-short-desc { font-size: 15px; color: var(--color-text-secondary); line-height: 1.7; }

/* Option selectors */
.option-group { display: flex; flex-direction: column; gap: 8px; }
.option-label { font-size: 14px; font-weight: 600; color: var(--color-text-primary); }
.option-label .selected-val { color: var(--color-text-muted); font-weight: 400; margin-left: 4px; }
.option-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn {
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 14px; font-weight: 500;
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  min-width: 48px; text-align: center;
}
.option-btn:hover { border-color: var(--color-accent); }
.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: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--color-text-secondary);
  transition: background var(--transition-fast);
}
.qty-btn:hover { background: var(--color-surface-alt); color: var(--color-accent); }
.qty-input {
  width: 56px; height: 44px;
  text-align: center; border: none;
  font-size: 16px; font-weight: 600;
  background: var(--color-surface);
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Product actions */
.product-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 180px; }

.availability-msg {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
}
.availability-msg.in-stock { color: var(--color-success); }
.availability-msg.out-stock { color: var(--color-error); }
.availability-msg .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* Accordions */
.product-accordions { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--color-border); }
.accordion { border-bottom: 1px solid var(--color-border); }
.accordion-header {
  width: 100%; padding: var(--space-md) 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--color-text-primary);
  text-align: left;
}
.accordion-header svg { width: 20px; height: 20px; transition: transform var(--transition-base); color: var(--color-text-muted); }
.accordion.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--transition-slow);
}
.accordion.open .accordion-body { max-height: 2000px; }
.accordion-body-inner { padding: 0 0 var(--space-md); font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }
.accordion-body-inner h3 { font-size: 15px; font-weight: 600; color: var(--color-text-primary); margin: var(--space-md) 0 var(--space-sm); }
.accordion-body-inner ul { padding-left: 20px; list-style: disc; }
.accordion-body-inner li { margin-bottom: 6px; }
.accordion-body-inner p { margin-bottom: var(--space-sm); }

/* 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 16px rgba(28,27,25,0.08);
  padding: var(--space-sm) 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: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc-product .price { font-size: 14px; color: var(--color-accent); font-weight: 700; font-family: var(--font-mono); }
.sticky-atc .btn { flex-shrink: 0; }

/* --- Reviews --- */
.reviews-section { padding: var(--space-xl) 0; }
.reviews-summary {
  display: flex; align-items: center; gap: var(--space-xl);
  padding: var(--space-xl); background: var(--color-surface-alt);
  border-radius: var(--radius-lg); margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.reviews-avg { text-align: center; }
.reviews-avg .num { font-family: var(--font-heading); font-size: 48px; font-weight: 700; color: var(--color-text-primary); }
.reviews-avg .stars { color: var(--color-warm); font-size: 20px; margin: 4px 0; }
.reviews-avg .count { font-size: 13px; color: var(--color-text-muted); }
.reviews-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 6px; }
.rating-bar { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rating-bar .label { width: 40px; color: var(--color-text-muted); }
.rating-bar .track { flex: 1; height: 8px; background: var(--color-border); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar .fill { height: 100%; background: var(--color-warm); border-radius: var(--radius-full); transition: width 0.8s ease; }
.rating-bar .pct { width: 40px; text-align: right; color: var(--color-text-muted); }

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-sm); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.review-author { font-size: 15px; font-weight: 600; }
.review-date { font-size: 13px; color: var(--color-text-muted); }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--color-success); font-weight: 600;
  margin-left: auto;
}
.review-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.review-body { font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }
.review-stars { color: var(--color-warm); font-size: 14px; margin-bottom: 6px; }

.rating-stars { display: inline-flex; gap: 1px; }
.rating-stars .star { color: var(--color-warm); }
.rating-stars .star.empty { color: var(--color-border); }

/* --- Cart Drawer --- */
.cart-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(28,27,25,0.5); z-index: 400;
  opacity: 0; visibility: hidden; transition: all var(--transition-base);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: -100%; width: 420px; max-width: 90vw;
  height: 100vh; background: var(--color-surface);
  z-index: 500; display: flex; flex-direction: column;
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-xl);
}
.cart-drawer.active { right: 0; }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer-header h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.cart-drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 20px;
  color: var(--color-text-secondary);
  transition: background var(--transition-fast);
}
.cart-drawer-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:last-child { border-bottom: none; }
.cart-item img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 2px; }
.cart-item-variant { font-size: 13px; 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: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--color-text-secondary); }
.cart-item-qty button:hover { background: var(--color-surface-alt); }
.cart-item-qty span { width: 36px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-item-remove { font-size: 13px; color: var(--color-text-muted); transition: color var(--transition-fast); }
.cart-item-remove:hover { color: var(--color-error); }
.cart-empty { text-align: center; padding: var(--space-2xl) var(--space-lg); color: var(--color-text-muted); }
.cart-empty svg { width: 64px; height: 64px; margin: 0 auto var(--space-md); opacity: 0.3; }
.cart-empty p { font-size: 15px; margin-bottom: var(--space-lg); }
.cart-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-sm); }
.cart-subtotal span { font-size: 15px; color: var(--color-text-secondary); }
.cart-subtotal strong { font-size: 20px; font-weight: 700; font-family: var(--font-mono); }
.cart-tax-note { font-size: 13px; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.cart-footer .btn { margin-bottom: var(--space-sm); }
.cart-footer .btn:last-child { margin-bottom: 0; }

/* --- Toast --- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  padding: 14px 24px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; z-index: 600;
  opacity: 0; transition: all var(--transition-base);
  box-shadow: var(--shadow-lg); max-width: 90vw;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { background: var(--color-success); color: #fff; }
.toast-error { background: var(--color-error); color: #fff; }
.toast-info { background: var(--color-text-primary); color: #fff; }

/* --- Pagination --- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: var(--space-xl); }
.pagination-btn {
  min-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); padding: 0 12px;
}
.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; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-md);
  padding: var(--space-md) 0; margin-bottom: var(--space-lg);
}
.sort-bar .result-count { font-size: 14px; color: var(--color-text-muted); }
.sort-select {
  height: 40px; padding: 0 36px 0 14px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-surface); font-size: 14px;
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238A857C' stroke-width='2'%3E%3Cpath d='M3 4l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}

/* --- Footer --- */
.footer {
  background: #1C1B19; color: #B5B0A8;
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-3xl);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h3 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: var(--space-md); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #B5B0A8; transition: color var(--transition-fast); }
.footer-col a:hover { color: #fff; }
.footer-logo {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: var(--space-md);
  display: flex; align-items: center; gap: 8px;
}
.footer-logo .logo-mark {
  width: 36px; height: 36px; background: var(--color-accent);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 18px; font-weight: 700;
}
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: var(--space-md); max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; margin-top: var(--space-md); }
.social-links a {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; transition: all var(--transition-fast);
}
.social-links a:hover { background: var(--color-accent); }
.social-links svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: var(--space-xl); padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-md);
  font-size: 13px; color: #8A857C;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.footer-payments .pay-badge {
  background: rgba(255,255,255,0.08); padding: 4px 10px;
  border-radius: var(--radius-sm); font-size: 11px; font-weight: 600;
  color: #B5B0A8; letter-spacing: 0.02em;
}

/* --- 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);
}

/* --- Forms --- */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-md); }
.form-label { font-size: 14px; font-weight: 600; color: var(--color-text-primary); }
.form-input, .form-select, .form-textarea {
  height: 48px; padding: 0 16px;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: var(--color-surface); font-size: 15px;
  transition: all var(--transition-fast);
  width: 100%;
}
.form-textarea { height: auto; padding: 12px 16px; min-height: 120px; resize: vertical; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-accent); outline: none;
  box-shadow: 0 0 0 3px var(--color-accent-light);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* --- Collection Hero --- */
.collection-hero {
  position: relative; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--color-accent);
}
.collection-hero img { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.collection-hero-overlay { position: absolute; inset: 0; background: rgba(28,79,82,0.6); }
.collection-hero-content { position: relative; z-index: 2; text-align: center; padding: var(--space-2xl) var(--space-lg); color: #fff; }
.collection-hero h1 { font-family: var(--font-heading); font-size: clamp(28px, 5vw, 44px); font-weight: 600; }
.collection-hero p { font-size: 16px; margin-top: var(--space-sm); max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.9; }

/* --- 404 Page --- */
.error-page { text-align: center; padding: var(--space-3xl) var(--space-lg); }
.error-page .code { font-family: var(--font-heading); font-size: clamp(80px, 15vw, 160px); font-weight: 700; color: var(--color-accent); line-height: 1; }
.error-page h1 { font-family: var(--font-heading); font-size: 28px; margin: var(--space-md) 0; }
.error-page p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: var(--space-lg); }

/* --- Policy Page --- */
.policy-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); padding: var(--space-xl) 0; }
@media (min-width: 768px) { .policy-layout { grid-template-columns: 240px 1fr; } }
.policy-sidebar { display: flex; flex-direction: column; gap: 4px; }
.policy-sidebar a {
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}
.policy-sidebar a:hover, .policy-sidebar a.active { background: var(--color-accent-light); color: var(--color-accent); }
.policy-content h1 { font-family: var(--font-heading); font-size: 32px; margin-bottom: var(--space-lg); }
.policy-content h2 { font-family: var(--font-heading); font-size: 22px; margin: var(--space-lg) 0 var(--space-sm); }
.policy-content p { margin-bottom: var(--space-md); line-height: 1.7; color: var(--color-text-secondary); }
.policy-content ul { padding-left: 20px; margin-bottom: var(--space-md); list-style: disc; }
.policy-content li { margin-bottom: 8px; color: var(--color-text-secondary); }

/* --- Page Content --- */
.page-content { padding: var(--space-xl) 0; }
.page-content h1 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); margin-bottom: var(--space-lg); }
.page-content h2 { font-family: var(--font-heading); font-size: 24px; margin: var(--space-lg) 0 var(--space-sm); }
.page-content p { margin-bottom: var(--space-md); line-height: 1.8; color: var(--color-text-secondary); }
.page-content ul { padding-left: 20px; margin-bottom: var(--space-md); list-style: disc; }
.page-content li { margin-bottom: 8px; color: var(--color-text-secondary); }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }
.contact-info-card { background: var(--color-surface-alt); border-radius: var(--radius-lg); padding: var(--space-xl); }
.contact-info-card h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: var(--space-md); }
.contact-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: var(--space-md); }
.contact-info-item svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-item .label { font-size: 13px; color: var(--color-text-muted); }
.contact-info-item .value { font-size: 15px; font-weight: 600; color: var(--color-text-primary); }

/* --- Checkout --- */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); padding: var(--space-lg) 0; }
@media (min-width: 900px) { .checkout-layout { grid-template-columns: 1.5fr 1fr; } }
.checkout-form-section {
  background: var(--color-surface); border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-xl); margin-bottom: var(--space-lg);
}
.checkout-form-section h2 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 600;
  margin-bottom: var(--space-md); display: flex; align-items: center; gap: 10px;
}
.checkout-form-section .step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; font-family: var(--font-body);
}
.checkout-summary {
  background: var(--color-surface); border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  position: sticky; top: calc(var(--header-height) + 16px);
  align-self: start;
}
.checkout-summary h2 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: var(--space-md); }
.checkout-summary-items { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-md); }
.checkout-summary-item { display: flex; gap: 12px; }
.checkout-summary-item img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.checkout-summary-item .info { flex: 1; }
.checkout-summary-item .title { font-size: 14px; font-weight: 600; line-height: 1.4; }
.checkout-summary-item .variant { font-size: 13px; color: var(--color-text-muted); }
.checkout-summary-item .qty-price { display: flex; justify-content: space-between; margin-top: 4px; font-size: 13px; }
.checkout-summary-totals { border-top: 1px solid var(--color-border); padding-top: var(--space-md); display: flex; flex-direction: column; gap: 8px; }
.checkout-summary-totals .row { display: flex; justify-content: space-between; font-size: 14px; }
.checkout-summary-totals .row.total { font-size: 18px; font-weight: 700; border-top: 1px solid var(--color-border); padding-top: 12px; margin-top: 4px; }
.checkout-summary-totals .row.total .amount { font-family: var(--font-mono); color: var(--color-accent); }

/* Card payment form */
.card-form { display: flex; flex-direction: column; gap: var(--space-md); }
.card-input-group { position: relative; }
.card-input-group .card-icon {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  display: flex; gap: 4px;
}
.card-input-group .card-icon svg { width: 28px; height: 18px; }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.card-security-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--color-text-muted);
  padding: 12px; background: var(--color-success-light);
  border-radius: var(--radius-sm); margin-top: var(--space-sm);
}
.card-security-note svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; }

/* --- Thank You Page --- */
.thank-you-page { text-align: center; padding: var(--space-3xl) 0; }
.thank-you-icon {
  width: 80px; height: 80px; margin: 0 auto var(--space-lg);
  background: var(--color-success-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scaleIn 0.5s ease;
}
.thank-you-icon svg { width: 40px; height: 40px; color: var(--color-success); }
.thank-you-page h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 48px); margin-bottom: var(--space-md); }
.thank-you-page .order-num { font-size: 16px; color: var(--color-text-muted); margin-bottom: var(--space-xl); }
.thank-you-page .order-num strong { color: var(--color-accent); font-family: var(--font-mono); }
.order-details-card {
  max-width: 640px; margin: 0 auto var(--space-xl);
  background: var(--color-surface); border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg); padding: var(--space-xl); text-align: left;
}
.order-details-card h2 { font-family: var(--font-heading); font-size: 22px; margin-bottom: var(--space-md); }
.order-details-card .order-item { display: flex; gap: 12px; padding: var(--space-sm) 0; border-bottom: 1px solid var(--color-border-light); }
.order-details-card .order-item:last-child { border-bottom: none; }
.order-details-card .order-item img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; }
.order-details-card .order-item .info { flex: 1; }
.order-details-card .order-item .title { font-size: 15px; font-weight: 600; }
.order-details-card .order-item .variant { font-size: 13px; color: var(--color-text-muted); }
.order-details-card .order-item .qty { font-size: 13px; color: var(--color-text-secondary); }
.order-details-card .order-item .price { font-size: 15px; font-weight: 700; font-family: var(--font-mono); text-align: right; }
.order-totals { margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--color-border); }
.order-totals .row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.order-totals .row.grand { font-size: 18px; font-weight: 700; border-top: 1px solid var(--color-border); padding-top: 12px; margin-top: 8px; }
.order-totals .row.grand .amount { font-family: var(--font-mono); color: var(--color-accent); }

/* --- FAQ --- */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item .accordion-header { padding: var(--space-md) 0; }
.faq-answer { padding: 0 0 var(--space-md); font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none !important; }
.fade-in { animation: fadeIn 0.5s ease; }
.slide-up { animation: slideUp 0.5s ease; }

/* --- Responsive Nav --- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-search-wrap { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav-logo .logo-text .sub { display: none; }
  .hero { min-height: 480px; }
  .hero-stats { gap: var(--space-lg); }
  .hero-stat-num { font-size: 24px; }
}

/* --- Brand Story --- */
.brand-story {
  display: grid; grid-template-columns: 1fr; gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) { .brand-story { grid-template-columns: 1fr 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: clamp(24px, 4vw, 36px); margin-bottom: var(--space-md); line-height: 1.2; }
.brand-story-text p { font-size: 16px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: var(--space-md); }

/* --- Benefits Grid --- */
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  background: var(--color-surface); border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md); padding: var(--space-xl);
  transition: all var(--transition-base);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-card .icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
}
.benefit-card .icon svg { width: 24px; height: 24px; }
.benefit-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: var(--space-sm); }
.benefit-card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--color-surface); border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md); padding: var(--space-xl);
}
.testimonial-card .stars { color: var(--color-warm); font-size: 18px; margin-bottom: var(--space-sm); }
.testimonial-card .quote { font-size: 15px; color: var(--color-text-secondary); line-height: 1.7; margin-bottom: var(--space-md); font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author .name { font-size: 15px; font-weight: 600; }
.testimonial-card .author .role { font-size: 13px; color: var(--color-text-muted); }
.testimonial-card .author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-accent-light); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}

/* --- Newsletter --- */
.newsletter {
  background: var(--color-accent); color: #fff;
  padding: var(--space-2xl) 0; text-align: center;
}
.newsletter h2 { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 36px); margin-bottom: var(--space-sm); }
.newsletter p { font-size: 16px; opacity: 0.9; margin-bottom: var(--space-lg); }
.newsletter-form { display: flex; gap: var(--space-sm); max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px; height: 48px; padding: 0 16px;
  border: none; border-radius: var(--radius-sm); font-size: 15px;
}
.newsletter-form button { flex-shrink: 0; }

/* --- CTA Section --- */
.cta-section {
  background: var(--color-surface-alt);
  text-align: center; padding: var(--space-2xl) 0;
}
.cta-section h2 { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 36px); margin-bottom: var(--space-md); }
.cta-section p { font-size: 16px; color: var(--color-text-secondary); margin-bottom: var(--space-lg); max-width: 560px; margin-left: auto; margin-right: auto; }


/* --- Blog Article: Table of Contents --- */
.blog-article-content .toc {
  list-style: none;
  padding: var(--space-md);
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin: var(--space-lg) 0;
}
.blog-article-content .toc li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-xs);
}
.blog-article-content .toc li:last-child {
  margin-bottom: 0;
}
.blog-article-content .toc a {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-article-content .toc a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* --- Blog Article: FAQ Section --- */
.blog-article-content .faq-section {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
}
.blog-article-content .faq-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border);
}
.blog-article-content .faq-section h3:first-child {
  margin-top: 0;
}
.blog-article-content .faq-section p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

/* --- Blog Article: Inline Images --- */
.blog-article-content img {
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  max-width: 100%;
  height: auto;
}

/* --- Blog Article: Content Typography --- */
.blog-article-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  scroll-margin-top: 80px;
}
.blog-article-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
  scroll-margin-top: 80px;
}
.blog-article-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}
.blog-article-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}
.blog-article-content ul li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
  list-style: disc;
}
.blog-article-content ul li strong {
  color: var(--color-text-primary);
}
.blog-article-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: var(--color-accent-light);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}
.blog-article-content a:hover {
  text-decoration-color: var(--color-accent);
}
