/* ============================================================
   FASHIONATE BAGS — style.css
   Palette: Midnight Navy · Champagne Gold · Ivory · Mocha
   Fonts: Cormorant Garamond (display) · Jost (body)
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162235;
  --navy-light:  #1E3045;
  --gold:        #C9A84C;
  --gold-light:  #E4C578;
  --gold-pale:   #F5E9C8;
  --ivory:       #FAF7F2;
  --ivory-dark:  #F0EBE1;
  --mocha:       #6B4C3B;
  --mocha-light: #9C7060;
  --white:       #FFFFFF;
  --text-dark:   #0D1B2A;
  --text-mid:    #3D4F5C;
  --text-muted:  #7A8E9C;
  --amazon:      #E8920A;
  --amazon-h:    #C97D08;
  --success:     #3A9E6A;
  --border:      rgba(201,168,76,0.18);
  --shadow-sm:   0 2px 12px rgba(13,27,42,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,42,0.14);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.2);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

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

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--navy); }

/* ════════════════════════════════════
   LOADER
════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-brand {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.loader-bar {
  width: 200px; height: 2px;
  background: rgba(201,168,76,0.25);
  border-radius: 2px; margin: 0 auto;
  overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderBar 1.6s ease forwards;
}
@keyframes loaderBar { to { width: 100%; } }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  animation: navSlide 0.7s ease both;
}
@keyframes navSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--gold); flex-shrink: 0;
}
.logo-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  transition: transform var(--transition);
}
.logo:hover .logo-icon svg { transform: rotate(-8deg) scale(1.05); }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.02em;
}
.logo-text em { color: var(--gold); font-style: italic; }

/* Nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 0.15rem; flex-wrap: nowrap; overflow-x: auto;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-item {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.75rem; border-radius: 20px;
  transition: all var(--transition); white-space: nowrap;
  letter-spacing: 0.03em;
}
.nav-item:hover { color: var(--gold-light); }
.nav-item.active {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

/* Burger */
.burger {
  display: none; flex-direction: column;
  justify-content: center; align-items: center;
  width: 36px; height: 36px; gap: 5px; flex-shrink: 0;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-mid);
    flex-direction: column; align-items: stretch;
    padding: 1.2rem 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    overflow-x: unset;
    gap: 0.25rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-item {
    font-size: 1rem; padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
  }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 95vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1A2D42 100%);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(1.5rem, 6vw, 5rem) 5rem;
}

/* Big BG text */
.hero-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700; font-style: italic;
  color: rgba(201,168,76,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap;
  letter-spacing: 0.05em; user-select: none;
}

.hero-content {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  position: relative; z-index: 2;
}

/* Left */
.hero-left { animation: heroLeft 1s 0.3s ease both; }
@keyframes heroLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px; padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white); margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic; color: var(--gold);
  font-weight: 400;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 440px;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: var(--radius-xl);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
  cursor: pointer; border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.45);
}

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-light);
  padding: 0.85rem 2rem; border-radius: var(--radius-xl);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-metrics {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.metric { display: flex; flex-direction: column; }
.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.metric-num sup { font-size: 1rem; }
.metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-top: 0.2rem; }
.metric-divider { width: 1px; height: 36px; background: rgba(201,168,76,0.2); }

/* Right */
.hero-right { animation: heroRight 1s 0.5s ease both; position: relative; }
@keyframes heroRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-img {
  width: 100%; border-radius: var(--radius-lg);
  height: clamp(380px, 55vh, 580px);
  object-fit: cover;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.15);
  display: block;
}

.hero-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  min-width: 150px;
}
.badge-label { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.07em; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.badge-item { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); display: block; }
.badge-price { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: block; margin-top: 0.15rem; }

.hero-accent-circle {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  top: -30px; right: -30px;
  pointer-events: none;
}
.hero-accent-circle::before {
  content: ''; position: absolute; inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: clamp(1.5rem, 6vw, 5rem);
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.35); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, rgba(201,168,76,0.5), transparent);
  animation: scrollGrow 2s ease-in-out infinite;
}
@keyframes scrollGrow {
  0%,100% { width: 40px; opacity: 0.4; }
  50%     { width: 80px; opacity: 1; }
}

/* Hero responsive */
@media (max-width: 800px) {
  .hero { min-height: auto; padding: 2rem clamp(1.5rem,5vw,3rem) 4rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-img { height: 280px; }
  .hero-badge-float { left: 10px; bottom: -14px; }
  .hero-scroll-hint { display: none; }
}

/* ════════════════════════════════════
   MARQUEE
════════════════════════════════════ */
.marquee-strip {
  background: var(--navy-light);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.85rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track span {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}
.marquee-track .dot { color: var(--gold); font-size: 0.6rem; }

/* ════════════════════════════════════
   SECTIONS (shared)
════════════════════════════════════ */
.section { padding: 6rem 0; }
.section-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 0.75rem;
}
.section-sub { color: var(--text-muted); font-size: 0.95rem; }

/* ════════════════════════════════════
   CATEGORIES SECTION
════════════════════════════════════ */
.categories-section {
  background: var(--navy);
  padding: 5rem 0;
}
.categories-section .section-title { color: var(--white); }
.categories-section .section-sub { color: rgba(255,255,255,0.45); }

.cat-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}

.cat-card {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 30px; padding: 0.7rem 1.4rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer; transition: all var(--transition);
  letter-spacing: 0.02em;
}
.cat-card svg {
  width: 15px; height: 15px;
  stroke: rgba(201,168,76,0.6);
  fill: none; flex-shrink: 0;
  transition: stroke var(--transition);
}
.cat-card:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.15);
}
.cat-card:hover svg { stroke: var(--gold); }
.cat-card.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.cat-card.active svg { stroke: var(--navy); }

/* ════════════════════════════════════
   COLLECTION SECTION
════════════════════════════════════ */
.collection-section { background: var(--ivory); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.8rem;
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  animation: cardFade 0.5s ease both;
}
@keyframes cardFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(13,27,42,0.16);
}

/* Image */
.card-img-wrap {
  position: relative; overflow: hidden;
  height: 260px; background: var(--ivory-dark);
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .card-img { transform: scale(1.08); }

/* Wish */
.card-wish {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted);
  transition: all var(--transition); cursor: pointer;
  border: none;
}
.card-wish:hover { transform: scale(1.15); color: #E05C5C; }
.card-wish.liked { color: #E05C5C; }

/* Overlay */
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.5rem;
}
.product-card:hover .card-overlay { opacity: 1; }
.overlay-tag {
  font-size: 0.78rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.07em;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px; padding: 0.35rem 1rem;
  backdrop-filter: blur(4px);
}

/* Category chip */
.card-category {
  position: absolute; top: 12px; left: 12px;
  background: rgba(13,27,42,0.75);
  color: var(--gold-light);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 10px;
  backdrop-filter: blur(4px);
}

/* Card body */
.card-body {
  padding: 1.2rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-weight: 600;
  color: var(--text-dark); line-height: 1.35;
}

.card-stars { display: flex; align-items: center; gap: 0.4rem; }
.stars-icons { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }
.stars-count { font-size: 0.75rem; color: var(--text-muted); }

.card-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(13,27,42,0.06);
}
.price-wrap {}
.price-lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.price-val { font-size: 1.35rem; font-weight: 600; color: var(--text-dark); font-family: 'Cormorant Garamond', serif; }
.stock-badge {
  font-size: 0.7rem; font-weight: 600;
  color: var(--success);
  display: flex; align-items: center; gap: 0.25rem;
}
.stock-badge::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
}

.card-buy-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--amazon);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all var(--transition); margin-top: 0.6rem;
  width: 100%; border: none;
}
.card-buy-btn:hover {
  background: var(--amazon-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,146,10,0.35);
}
.card-buy-btn svg {
  width: 14px; height: 14px; fill: none;
  stroke: currentColor; stroke-width: 2; flex-shrink: 0;
}

/* No results */
.no-results {
  display: none;
  text-align: center; padding: 5rem 1rem;
  color: var(--text-muted);
}
.no-results.visible { display: block; }
.no-results p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  color: var(--text-mid);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3.5rem clamp(1.5rem,5vw,3rem) 2rem;
}
.footer-inner { max-width: 1400px; margin: 0 auto; text-align: center; }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--white); display: block; margin-bottom: 0.8rem;
}
.footer-logo em { color: var(--gold); font-style: italic; }

.footer-brand p {
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  max-width: 480px; margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.footer-links {
  display: flex; gap: 2rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }

/* ════════════════════════════════════
   BACK TO TOP
════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 300;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy); border: none;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: all var(--transition); cursor: pointer;
}
.back-top.visible { display: flex; }
.back-top:hover { background: var(--gold-light); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-metrics { gap: 1rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .card-img-wrap { height: 180px; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}
