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

:root {
  --bg: #0a0a08;
  --bg2: #111110;
  --bg3: #1a1a17;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6f32;
  --cream: #f5f0e8;
  --cream-dim: #b8b0a0;
  --white: #ffffff;
  --red: #c0392b;
  --border: rgba(201,168,76,0.18);
  --shadow: 0 8px 48px rgba(0,0,0,0.7);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.15; }
.display { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem,8vw,7rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1; }
.label { font-family: 'Tenor Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ── HEADER / NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: 0.15em;
  color: var(--gold);
}
.nav-logo span { color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: 'Tenor Sans', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cart {
  display: flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--bg);
  padding: 8px 18px; font-family: 'Tenor Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s; cursor: pointer; border: none;
}
.nav-cart:hover { background: var(--gold-light); }
.cart-count {
  background: var(--bg); color: var(--gold);
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 500;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title { margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { color: var(--cream-dim); font-size: 1rem; max-width: 420px; margin-bottom: 48px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.btn-primary {
  background: var(--gold); color: var(--bg);
  padding: 14px 36px; font-family: 'Tenor Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  color: var(--cream-dim); font-family: 'Tenor Sans', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: all 0.3s; display: inline-block;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero-image { position: relative; z-index: 1; }
.hero-watch-frame {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-watch-frame::before {
  content: ''; position: absolute; inset: 10%;
  border: 1px solid var(--border);
  animation: rotate 20s linear infinite;
}
.hero-watch-svg { width: 65%; filter: drop-shadow(0 20px 60px rgba(201,168,76,0.2)); }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 14px 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item { font-family: 'Tenor Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim); }
.marquee-item.accent { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION COMMONS ── */
.section { padding: 100px 40px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-top: 12px; }
.section-header p { color: var(--cream-dim); max-width: 500px; margin: 16px auto 0; }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 16px; }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px; }
.product-card {
  background: var(--bg2); position: relative; overflow: hidden;
  transition: transform 0.4s; cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); z-index: 2; }
.product-card:hover .product-img-wrap::after { opacity: 1; }
.product-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: var(--gold); color: var(--bg);
  font-family: 'Tenor Sans', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px;
}
.product-badge.new { background: var(--bg3); color: var(--gold); border: 1px solid var(--gold); }
.product-img-wrap {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(201,168,76,0.06); opacity: 0; transition: opacity 0.4s;
}
.product-img-wrap svg { width: 60%; transition: transform 0.5s; }
.product-card:hover .product-img-wrap svg { transform: scale(1.05) rotate(3deg); }
.product-info { padding: 24px; }
.product-collection { font-family: 'Tenor Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; margin-bottom: 6px; }
.product-ref { font-size: 0.75rem; color: var(--cream-dim); margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); }
.product-price .original { font-size: 0.9rem; color: var(--cream-dim); text-decoration: line-through; margin-right: 8px; }
.btn-add {
  background: transparent; border: 1px solid var(--border); color: var(--cream-dim);
  padding: 8px 16px; font-family: 'Tenor Sans', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s;
}
.btn-add:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ── FEATURES ── */
.features-wrap { background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.feature-item { padding: 50px 36px; border-right: 1px solid var(--border); text-align: center; }
.feature-item:last-child { border-right: none; }
.feature-icon { width: 48px; height: 48px; margin: 0 auto 20px; color: var(--gold); }
.feature-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 10px; }
.feature-item p { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.7; }

/* ── COLLECTIONS BANNER ── */
.collections-banner {
  position: relative; min-height: 500px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.coll-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 60px;
  min-height: 500px; cursor: pointer;
}
.coll-panel::before {
  content: ''; position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.coll-panel.dark::before { background: linear-gradient(135deg, #0a0a08, #1a1a17); }
.coll-panel.light::before { background: linear-gradient(135deg, #1c1a14, #252218); }
.coll-panel:hover::before { transform: scale(1.02); }
.coll-content { position: relative; z-index: 1; }
.coll-panel h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 10px 0; }
.coll-panel p { color: var(--cream-dim); margin-bottom: 24px; font-size: 0.9rem; }
.coll-watch { position: absolute; right: 60px; top: 50%; transform: translateY(-50%); width: 200px; opacity: 0.6; transition: opacity 0.4s, transform 0.4s; }
.coll-panel:hover .coll-watch { opacity: 0.9; transform: translateY(-50%) scale(1.05); }

/* ── CART MODAL ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: absolute; right: 0; top: 0; bottom: 0; width: 460px;
  background: var(--bg2); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-head { padding: 28px 32px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-head h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.cart-close { background: none; border: none; color: var(--cream-dim); font-size: 1.4rem; cursor: pointer; line-height: 1; transition: color 0.2s; }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 70px; height: 70px; background: var(--bg3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-img svg { width: 50px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; margin-bottom: 4px; }
.cart-item-price { color: var(--gold); font-size: 0.95rem; }
.cart-item-remove { background: none; border: none; color: var(--cream-dim); cursor: pointer; font-size: 0.75rem; font-family: 'Tenor Sans', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 24px 32px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 20px; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.cart-total span:last-child { color: var(--gold); }
.btn-checkout { width: 100%; background: var(--gold); color: var(--bg); padding: 16px; font-family: 'Tenor Sans', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.3s; }
.btn-checkout:hover { background: var(--gold-light); }
.cart-empty { text-align: center; padding: 60px 0; color: var(--cream-dim); }
.cart-empty svg { width: 60px; margin-bottom: 20px; opacity: 0.3; }

/* ── CHECKOUT PAGE ── */
.checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 110px 40px 80px; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.checkout-form-section h2 { font-size: 2rem; margin-bottom: 40px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-family: 'Tenor Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  color: var(--cream); padding: 12px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-summary { background: var(--bg2); border: 1px solid var(--border); padding: 36px; position: sticky; top: 90px; }
.checkout-summary h3 { font-size: 1.4rem; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.9rem; }
.summary-item span:first-child { color: var(--cream-dim); }
.summary-total { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); margin-top: 8px; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.summary-total span:last-child { color: var(--gold); }
.payment-methods { margin: 28px 0; }
.payment-label { font-family: 'Tenor Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 14px; }
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.payment-option {
  border: 1px solid var(--border); padding: 10px;
  text-align: center; cursor: pointer; transition: all 0.2s;
  font-size: 0.75rem; color: var(--cream-dim);
}
.payment-option:hover, .payment-option.active { border-color: var(--gold); color: var(--gold); }
.cashfree-badge { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 20px 0; padding: 12px; background: var(--bg3); border: 1px solid var(--border); font-size: 0.8rem; color: var(--cream-dim); }
.cashfree-badge .cf-logo { color: var(--gold); font-family: 'Tenor Sans', sans-serif; font-size: 0.9rem; letter-spacing: 0.05em; }
.secure-badge { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--cream-dim); margin-top: 10px; }

/* ── POLICY PAGES ── */
.policy-hero { padding: 140px 40px 80px; text-align: center; border-bottom: 1px solid var(--border); }
.policy-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.policy-hero .updated { font-size: 0.8rem; color: var(--cream-dim); margin-top: 16px; font-family: 'Tenor Sans', sans-serif; letter-spacing: 0.15em; }
.policy-content { max-width: 820px; margin: 0 auto; padding: 70px 40px 100px; }
.policy-content h2 { font-size: 1.6rem; margin: 48px 0 16px; color: var(--gold); }
.policy-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.policy-content p { color: var(--cream-dim); margin-bottom: 16px; line-height: 1.85; }
.policy-content ul { padding-left: 24px; margin-bottom: 16px; }
.policy-content li { color: var(--cream-dim); margin-bottom: 8px; line-height: 1.7; }
.policy-content a { color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.policy-content a:hover { border-color: var(--gold); }
.highlight-box { background: var(--bg2); border-left: 3px solid var(--gold); padding: 24px 28px; margin: 28px 0; }
.highlight-box p { margin: 0; }

/* ── ABOUT PAGE ── */
.about-hero { min-height: 70vh; display: flex; align-items: center; padding: 110px 40px 80px; position: relative; overflow: hidden; }
.about-hero-inner { max-width: 1400px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h1 { font-size: clamp(2.8rem, 5vw, 5rem); margin-bottom: 28px; }
.about-text p { color: var(--cream-dim); max-width: 480px; line-height: 1.85; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-block { background: var(--bg2); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.about-block svg { width: 60%; opacity: 0.6; }
.about-block.featured { grid-column: span 2; aspect-ratio: 2/1; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { padding: 50px 36px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); }
.stat-label { font-family: 'Tenor Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); margin-top: 6px; }
.about-story { max-width: 1400px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }
.about-story p { color: var(--cream-dim); line-height: 1.85; margin-bottom: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.team-card { background: var(--bg2); padding: 36px; text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); background: var(--bg3); }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { font-family: 'Tenor Sans', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 36px; right: 36px; z-index: 500;
  background: var(--bg2); border: 1px solid var(--gold);
  padding: 16px 24px; max-width: 320px;
  display: flex; align-items: center; gap: 12px;
  transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold); font-size: 1.2rem; }
.toast-text { font-size: 0.85rem; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 70px 40px 36px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { display: block; margin-bottom: 20px; }
.footer-brand p { color: var(--cream-dim); font-size: 0.9rem; max-width: 280px; line-height: 1.8; }
.footer-col h4 { font-family: 'Tenor Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--cream-dim); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--cream-dim); font-size: 0.8rem; }
.footer-payments { display: flex; gap: 10px; align-items: center; }
.payment-chip { background: var(--bg3); border: 1px solid var(--border); padding: 4px 12px; font-size: 0.7rem; color: var(--cream-dim); font-family: 'Tenor Sans', sans-serif; letter-spacing: 0.1em; }

/* ── SUCCESS PAGE ── */
.success-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px; }
.success-card { text-align: center; max-width: 560px; padding: 70px 60px; border: 1px solid var(--border); background: var(--bg2); }
.success-icon { width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 36px; color: var(--gold); font-size: 2rem; }
.success-card h1 { font-size: 2.5rem; margin-bottom: 16px; }
.success-card p { color: var(--cream-dim); margin-bottom: 36px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; max-width: 300px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .collections-banner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .stats-row, .about-story { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 70px 20px; }
  .nav-inner { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
