/* ============================================
   CORESTRIDE — Premium Footwear & Accessories
   Design: Refined Luxury Editorial
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --ink: #0e0e0e;
  --paper: #f8f5f0;
  --cream: #ede9e3;
  --bone: #d6d0c6;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --rust: #b85c38;
  --slate: #4a4a52;
  --mist: #9b9b9b;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;

  --shadow-card: 0 2px 20px rgba(14,14,14,0.08), 0 1px 4px rgba(14,14,14,0.04);
  --shadow-hover: 0 8px 40px rgba(14,14,14,0.14), 0 2px 8px rgba(14,14,14,0.06);
  --shadow-modal: 0 24px 80px rgba(14,14,14,0.22);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1320px;
  --gutter: clamp(20px, 4vw, 60px);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

.display-xl { font-size: clamp(3rem, 7vw, 7rem); font-weight: 700; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 600; letter-spacing: -0.02em; }
.display-md { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 600; }
.display-sm { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
.text-lg { font-size: 1.2rem; line-height: 1.7; }
.text-md { font-size: 1rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.05em; }
.label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── Layout ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-sm { padding: clamp(40px, 5vw, 80px) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(14,14,14,0.2);
}
.btn-primary:hover {
  background: var(--slate);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14,14,14,0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.btn-gold:hover {
  background: #b8944e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

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

.btn-ghost {
  color: var(--ink);
  padding: 0.9rem 0;
  border-bottom: 1.5px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover { border-bottom-color: var(--gold); }

.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-glass {
  background: rgba(248,245,240,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214,208,198,0.4);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.cart-btn:hover { background: var(--slate); transform: translateY(-1px); }
.cart-count {
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
  border-radius: 2px;
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 999;
  padding: 100px var(--gutter) 40px;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--bone);
  padding-bottom: 1rem;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  padding-left: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
  padding-right: 3rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stat-bar {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bone);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.hero-stat-label { font-size: 0.82rem; color: var(--mist); margin-top: 0.2rem; }

.hero-visual {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--bone) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shape {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.2) 0%, transparent 70%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--mist);
}

.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text { font-size: 0.82rem; line-height: 1.4; }
.hero-badge-text strong { display: block; font-weight: 600; }

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--slate); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ─── Feature Cards ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--cream);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.feature-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-text { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }

/* ─── Product Cards ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.product-img-wrap {
  aspect-ratio: 4/3;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone);
  font-size: 3rem;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xl);
}
.product-badge.gold { background: var(--gold); color: var(--ink); }

.product-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--rust); color: var(--white); transform: scale(1.1); }

.product-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-name { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; }
.product-desc { font-size: 0.87rem; color: var(--slate); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; }
.product-price-original { text-decoration: line-through; color: var(--mist); font-size: 0.9rem; margin-left: 0.5rem; }

.add-to-cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--gold); color: var(--ink); }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, var(--bone) 50%, var(--cream) 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; } }

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream);
}
.skeleton-img { aspect-ratio: 4/3; }
.skeleton-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.skeleton-line { height: 14px; }
.skeleton-line-short { width: 60%; }
.skeleton-line-long { width: 90%; }
.skeleton-price { height: 24px; width: 40%; }

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--bone), var(--gold));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-card);
}
.step-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem; }
.step-text { font-size: 0.87rem; color: var(--slate); line-height: 1.65; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  border: 2px solid var(--bone);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--mist); }

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  margin: 0 var(--gutter);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; }
.cta-banner-action { position: relative; z-index: 1; flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(4rem, 6vw, 7rem) 0 0;
  margin-top: clamp(4rem, 6vw, 8rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-logo span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  font-weight: 400;
}
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 1rem; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item span:first-child { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── Cart Sidebar ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.4);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--paper);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-modal);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--bone);
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.cart-close:hover { background: var(--ink); color: var(--white); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--cream);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.qty-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.qty-num { font-weight: 600; font-size: 0.9rem; min-width: 20px; text-align: center; }

.cart-item-remove {
  color: var(--mist);
  font-size: 0.75rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 0.25rem 0;
  margin-top: 0.5rem;
  display: block;
  font-family: var(--font-mono);
}
.cart-item-remove:hover { color: var(--rust); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--mist);
  gap: 1rem;
}
.cart-empty-icon { font-size: 3.5rem; }

.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--bone);
  background: var(--white);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream);
}
.cart-total-label { font-weight: 600; font-size: 1rem; }
.cart-total-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.checkout-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.checkout-btn:hover { background: var(--gold); color: var(--ink); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Page Hero ─── */
.page-hero {
  padding: calc(72px + 4rem) var(--gutter) 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.page-hero .display-md { margin-bottom: 1rem; }
.page-hero .text-lg { color: var(--slate); }

/* ─── Products Page Filter ─── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--bone);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* ─── Product Detail Page ─── */
.product-detail {
  padding-top: calc(72px + 3rem);
  padding-bottom: 5rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-gallery { position: sticky; top: 100px; }
.product-main-img {
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--bone);
  margin-bottom: 1rem;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info .product-category { font-size: 0.78rem; margin-bottom: 1rem; }
.product-detail-name { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 1.25rem; }
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.product-detail-desc {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 0.97rem;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-quantity label { font-weight: 600; font-size: 0.9rem; }
.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid var(--bone);
  border-radius: var(--radius-xl);
  padding: 0.4rem 1rem;
  background: var(--white);
}

.product-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.product-actions .btn { flex: 1; justify-content: center; min-width: 180px; }

.product-features {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bone);
}
.product-features h4 { font-size: 1rem; margin-bottom: 1.25rem; }
.product-feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.product-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.product-feature-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── About Page ─── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream) 0%, var(--bone) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(201,169,110,0.15), transparent);
}

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--cream);
}
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-title { font-weight: 600; font-size: 0.97rem; margin-bottom: 0.5rem; }
.value-text { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--bone);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--mist);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ─── Contact Page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--cream);
}
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.4rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--slate); }
.form-control {
  padding: 0.9rem 1.25rem;
  border: 1.5px solid var(--bone);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--mist); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ─── Success / Cancel Pages ─── */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  text-align: center;
}
.status-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-modal);
}
.status-icon { font-size: 4rem; margin-bottom: 1.5rem; display: block; }
.status-card h1 { margin-bottom: 1rem; }
.status-card p { color: var(--slate); margin-bottom: 2rem; font-size: 1.05rem; }

/* ─── Policy Pages ─── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(72px + 3rem) var(--gutter) 5rem;
}
.policy-content h1 { margin-bottom: 0.5rem; }
.policy-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--mist); letter-spacing: 0.1em; margin-bottom: 3rem; display: block; }
.policy-content h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.policy-content h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.policy-content p { color: var(--slate); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.policy-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.policy-content li { color: var(--slate); line-height: 1.8; font-size: 0.95rem; list-style: disc; margin-bottom: 0.5rem; }

/* ─── Toast ─── */
.toast-container { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2000; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.toast {
  background: var(--ink);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-modal);
  animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.toast.success { background: #2d6a4f; }
.toast.error { background: var(--rust); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(20px); } }

/* ─── Loading State ─── */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--mist);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--mist); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--bone); }

/* ─── About Team Section ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--cream);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.team-name { font-weight: 600; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--gold); font-family: var(--font-mono); }

/* ─── Scroll Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 4rem var(--gutter) 3rem; }
  .hero-title { font-size: clamp(2.8rem, 8vw, 5rem); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-gallery { position: static; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-stat-bar { gap: 1.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { margin: 0 1rem; }
}

@media (max-width: 480px) {
  :root { --gutter: 16px; }
  .products-grid { grid-template-columns: 1fr; }
}
