/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */
:root {
  --peach: #f0a184;
  --peach-light: #fbe2d3;
  --peach-pale: #fff4ee;
  --plum: #3d2a2c;
  --plum-soft: #6b4d4f;
  --ivory: #fff8f3;
  --rose: #d98a82;
  --sage: #8a9a78;
  --sage-pale: #eef1e8;
  --gold: #cf9b4e;
  --white: #ffffff;
  --line: #ecdcd0;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-drape: 28px 28px 8px 8px;
  --radius-soft: 20px;
  --shadow-card: 0 10px 30px -12px rgba(61, 42, 44, 0.18);
  --shadow-pop: 0 18px 40px -14px rgba(61, 42, 44, 0.28);
  --container: 1180px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Scroll-reveal: elemen muncul halus saat masuk viewport (lihat main.js initReveal) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--plum);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--plum); font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }

.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag { font-family: var(--font-display); font-style: italic; color: var(--rose); font-size: 1.05rem; margin-bottom: 6px; display: block; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.2; }
.section-head p { margin-top: 12px; color: var(--plum-soft); font-size: 1.02rem; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary { background: var(--plum); color: var(--peach-pale); box-shadow: var(--shadow-card); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn-outline { border: 1.5px solid var(--plum); color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--peach-pale); }
.btn-wa { background: var(--sage); color: var(--white); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn-block { width: 100%; justify-content: center; }

/* Wave/fold divider — motif "lipatan kain" antar section */
.fold-divider { display: block; width: 100%; height: 56px; }
.fold-divider path { fill: var(--ivory); }

/* ============================================================================
   NAVBAR
   ============================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255, 248, 243, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.navbar.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -14px rgba(61,42,44,0.25); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-mark-wrap { width: 38px; height: 38px; flex-shrink: 0; display: block; }
.brand-mark-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.96rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--rose); transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--peach-light); color: var(--plum); transition: transform 0.18s ease, background 0.18s ease;
}
.icon-btn:hover { background: var(--peach); color: var(--white); transform: translateY(-2px); }
.icon-btn.wa:hover { background: #25d366; }
.icon-btn svg { width: 19px; height: 19px; }
.nav-toggle { display: none; width: 40px; height: 40px; place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--plum); position: relative; transition: 0.2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ============================================================================
   TOP MARQUEE STRIP
   ============================================================================ */
.marquee-strip { background: var(--plum); color: var(--peach-pale); overflow: hidden; padding: 9px 0; margin-top: 76px; }
.marquee-track { display: flex; width: max-content; gap: 48px; animation: marquee 26s linear infinite; }
.marquee-track span { font-size: 0.85rem; letter-spacing: 0.02em; white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.marquee-track span::before { content: "✦"; color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================================
   HERO
   ============================================================================ */
.hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-eyebrow-line { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--rose); font-weight: 600; font-size: 0.92rem; }
.hero-eyebrow-line svg { width: 18px; height: 18px; }
.hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1.12; letter-spacing: -0.01em; }
.hero h1 .underline-wrap { position: relative; display: inline-block; }
.hero h1 .underline-wrap svg { position: absolute; left: 0; bottom: -6px; width: 100%; height: 14px; }
.hero-desc { margin-top: 22px; font-size: 1.08rem; color: var(--plum-soft); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust div { display: flex; align-items: center; gap: 10px; }
.hero-trust svg { width: 22px; height: 22px; color: var(--sage); flex-shrink: 0; }
.hero-trust strong { display: block; font-size: 1.05rem; font-family: var(--font-display); }
.hero-trust span { font-size: 0.82rem; color: var(--plum-soft); }

.hero-visual { position: relative; height: 460px; }
.hero-blob {
  position: absolute; inset: 0; margin: auto; width: 380px; height: 380px; border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  background: radial-gradient(circle at 32% 28%, var(--peach-light), var(--peach) 78%);
  opacity: 0.85;
  transition: transform 0.3s ease-out;
}
.hero-card {
  position: absolute; width: 200px; border-radius: var(--radius-drape);
  background: var(--white); box-shadow: var(--shadow-pop); padding: 12px;
}
.hero-card img, .hero-card .ph { width: 100%; height: 220px; border-radius: 20px 20px 4px 4px; object-fit: cover; }
.hero-card.c1 { top: 6%; left: 2%; transform: rotate(-9deg); z-index: 3; }
.hero-card.c2 { bottom: 4%; right: 0; transform: rotate(7deg); z-index: 2; width: 190px; }
.hero-card.c3 { top: 34%; left: 38%; transform: rotate(-2deg); z-index: 4; width: 180px; }

/* ============================================================================
   PLACEHOLDER PRODUK (dipakai saat belum ada foto produk)
   ============================================================================ */
.ph { display: grid; place-items: center; background: var(--peach-light); position: relative; overflow: hidden; }
.ph svg { width: 46%; height: 46%; color: var(--plum); opacity: 0.55; }
.ph.tone-2 { background: var(--sage-pale); }
.ph.tone-3 { background: #f6e2c9; }
.ph.tone-4 { background: #f4d6d2; }

/* ============================================================================
   KATEGORI
   ============================================================================ */
.categories { padding: 84px 0 60px; }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.cat-card { text-align: center; padding: 26px 10px; border-radius: 26px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.cat-icon { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; overflow: hidden; }
.cat-icon svg { width: 30px; height: 30px; color: var(--plum); }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-card span { font-weight: 600; font-size: 0.92rem; }
.cat-card small { display: block; color: var(--plum-soft); font-size: 0.78rem; margin-top: 3px; }

/* ============================================================================
   KATALOG
   ============================================================================ */
.catalog { background: var(--peach-pale); padding: 76px 0 90px; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tabs button {
  padding: 10px 20px; border-radius: 999px; background: var(--white); font-size: 0.88rem; font-weight: 600;
  color: var(--plum-soft); border: 1px solid var(--line); transition: 0.18s;
}
.filter-tabs button.active, .filter-tabs button:hover { background: var(--plum); color: var(--peach-pale); border-color: var(--plum); }
.filter-tabs button.bs-filter { border-color: var(--gold); color: var(--gold); }
.filter-tabs button.bs-filter.active, .filter-tabs button.bs-filter:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.search-box { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; min-width: 230px; }
.search-box svg { width: 17px; height: 17px; color: var(--plum-soft); flex-shrink: 0; }
.search-box input { border: none; background: none; outline: none; font-family: inherit; font-size: 0.92rem; width: 100%; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius-drape); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.product-media { position: relative; height: 210px; overflow: hidden; }
.product-media img, .product-media .ph { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; z-index: 2; }
.product-badge.diskon { background: var(--rose); }
.product-badge-bs {
  position: absolute; top: 12px; right: 12px; z-index: 2; display: flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--gold), #e8b76b); color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; box-shadow: 0 4px 10px -4px rgba(207,155,78,0.6);
}
.product-badge-bs svg { width: 12px; height: 12px; }
.media-overlay {
  position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 14px;
  background: linear-gradient(180deg, rgba(61,42,44,0) 45%, rgba(61,42,44,0.55) 100%);
  opacity: 0; transition: opacity 0.25s ease;
}
.product-card:hover .media-overlay { opacity: 1; }
.media-overlay span { color: var(--white); font-weight: 600; font-size: 0.84rem; }
.product-body { padding: 18px 18px 20px; }
.product-cat { font-size: 0.74rem; color: var(--rose); font-weight: 700; text-transform: none; }
.product-body h3 { font-size: 1.05rem; margin: 4px 0 8px; line-height: 1.3; }
.product-mini-spec { font-size: 0.78rem; color: var(--plum-soft); margin-bottom: 10px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-price strong { font-size: 1.12rem; font-family: var(--font-display); }
.product-price del { color: var(--plum-soft); font-size: 0.85rem; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn { padding: 10px 14px; font-size: 0.84rem; flex: 1; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--plum-soft); grid-column: 1 / -1; }

.load-more-wrap { text-align: center; margin-top: 40px; }

/* ============================================================================
   BEST SELLER (carousel horizontal)
   ============================================================================ */
.bestseller { padding: 86px 0 30px; }
.bestseller-scroll-wrap { display: flex; align-items: center; gap: 12px; }
.bestseller-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 20px; scrollbar-width: none; flex: 1;
}
.bestseller-track::-webkit-scrollbar { display: none; }
.bestseller-track .product-card { min-width: 250px; max-width: 250px; flex: 0 0 auto; scroll-snap-align: start; }
.bs-nav { width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-card); display: grid; place-items: center; flex-shrink: 0; color: var(--plum); transition: 0.18s; }
.bs-nav:hover { background: var(--gold); color: var(--white); }
.bs-nav svg { width: 18px; height: 18px; }
.bs-nav.prev svg { transform: scaleX(-1); }
@media (max-width: 720px) { .bs-nav { display: none; } }

/* ============================================================================
   KENAPA PILIH KAMI
   ============================================================================ */
.why-us { padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.why-item { padding: 30px 24px; border-radius: var(--radius-soft); border: 1px solid var(--line); }
.why-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--sage-pale); display: grid; place-items: center; margin-bottom: 18px; }
.why-icon svg { width: 24px; height: 24px; color: var(--sage); }
.why-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why-item p { color: var(--plum-soft); font-size: 0.92rem; }

/* ============================================================================
   TENTANG KAMI
   ============================================================================ */
.about { background: var(--plum); color: var(--peach-pale); padding: 90px 0; }
.about .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-frame { border-radius: 30% 70% 65% 35% / 40% 35% 65% 60%; overflow: hidden; aspect-ratio: 1/1; background: linear-gradient(150deg, var(--peach), var(--rose)); display: grid; place-items: center; }
.about-frame svg { width: 40%; height: 40%; color: var(--plum); opacity: 0.8; }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .section-tag { color: var(--peach); }
.about-copy h2 { color: var(--peach-pale); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-copy p { color: #e8d4cd; font-size: 1rem; margin-bottom: 26px; }
.about-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.about-stats div strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--peach); }
.about-stats div span { font-size: 0.82rem; color: #cbb0a9; }

/* ============================================================================
   CARA PESAN (langkah — memang berurutan, jadi wajar diberi nomor)
   ============================================================================ */
.how-to { padding: 90px 0; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.how-item { position: relative; padding-top: 8px; }
.how-item::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--peach); color: var(--white); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 18px;
}
.how-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.how-item p { font-size: 0.9rem; color: var(--plum-soft); }

/* ============================================================================
   TESTIMONI
   ============================================================================ */
.testimonials { background: var(--peach-pale); padding: 90px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--white); border-radius: 6px 26px 26px 26px; padding: 28px; box-shadow: var(--shadow-card); }
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p.quote { font-size: 0.96rem; color: var(--plum-soft); margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--white); font-family: var(--font-display); font-weight: 600; }
.testi-person strong { display: block; font-size: 0.92rem; }
.testi-person span { font-size: 0.78rem; color: var(--plum-soft); }

/* ============================================================================
   INSTAGRAM FEED
   ============================================================================ */
.instagram-feed { padding: 90px 0; text-align: center; }
.instagram-feed .section-head { margin-left: auto; margin-right: auto; }
.ig-follow { display: inline-flex; align-items: center; gap: 9px; color: var(--rose); font-weight: 700; margin-bottom: 30px; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ig-tile { aspect-ratio: 1/1; border-radius: 18px; display: grid; place-items: center; position: relative; overflow: hidden; transition: transform 0.2s ease; }
.ig-tile:hover { transform: scale(1.04); }
.ig-tile svg { width: 26px; height: 26px; color: var(--white); opacity: 0.9; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0; }
.ig-tile::after { content: ""; position: absolute; inset: 0; background: rgba(61,42,44,0.12); }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq { padding: 90px 0; max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-size: 1.05rem; }
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s ease; color: var(--rose); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--plum-soft); font-size: 0.94rem; max-width: 640px; }

/* ============================================================================
   LOKASI
   ============================================================================ */
.location { background: var(--sage-pale); padding: 90px 0; }
.location .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.location-info { display: flex; flex-direction: column; justify-content: center; }
.location-row { display: flex; gap: 14px; margin-bottom: 20px; }
.location-row svg { width: 22px; height: 22px; color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.location-row strong { display: block; margin-bottom: 3px; }
.location-row span, .location-row p { color: var(--plum-soft); font-size: 0.94rem; white-space: pre-line; }
.map-frame { border-radius: var(--radius-soft); overflow: hidden; min-height: 340px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ============================================================================
   FOOTER
   ============================================================================ */
footer { background: var(--plum); color: #e8d4cd; padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-row .brand-mark-wrap { width: 30px; height: 30px; }
.footer-brand h3 { color: var(--peach-pale); font-size: 1.3rem; margin: 0; }
.footer-brand p { font-size: 0.9rem; color: #cbb0a9; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; transition: 0.2s; }
.footer-social a:hover { background: var(--peach); }
.footer-social svg { width: 17px; height: 17px; color: var(--peach-pale); }
.footer-col h4 { color: var(--peach-pale); font-size: 0.95rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--peach); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.82rem; color: #b89d95; flex-wrap: wrap; gap: 10px; }

/* ============================================================================
   FLOATING BUTTONS
   ============================================================================ */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-wa {
  display: flex; align-items: center; gap: 10px; background: #25d366; color: var(--white);
  padding: 15px 22px; border-radius: 999px; box-shadow: var(--shadow-pop); font-weight: 700; font-size: 0.92rem;
}
.float-wa svg { width: 22px; height: 22px; }
.float-wa .pulse-ring { position: absolute; }
.to-top {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-card);
  display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }
.to-top svg { width: 18px; height: 18px; color: var(--plum); }

/* ============================================================================
   MODAL DETAIL PRODUK
   ============================================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(61,42,44,0.55); z-index: 700;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 28px; max-width: 780px; width: 100%; max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
}
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--peach-pale); display: grid; place-items: center; z-index: 2; }
.modal-close svg { width: 16px; height: 16px; }
.modal-media { position: relative; min-height: 280px; }
.modal-media img, .modal-media .ph { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 32px; }
.modal-info .product-cat { font-size: 0.78rem; }
.modal-bs-tag { display: inline-flex; align-items: center; gap: 4px; background: linear-gradient(135deg, var(--gold), #e8b76b); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-left: 8px; }
.modal-bs-tag svg { width: 11px; height: 11px; }
.modal-info h2 { font-size: 1.4rem; margin: 6px 0 12px; }
.modal-specs { margin: 18px 0; padding: 16px; background: var(--peach-pale); border-radius: 16px; display: grid; gap: 8px; font-size: 0.88rem; }
.modal-specs div { display: flex; justify-content: space-between; }
.modal-specs span:first-child { color: var(--plum-soft); }
.modal-desc { color: var(--plum-soft); font-size: 0.94rem; margin-bottom: 20px; }
.modal-price { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: baseline; gap: 10px; }
.modal-price del { font-size: 0.95rem; color: var(--plum-soft); }

/* ============================================================================
   TOAST
   ============================================================================ */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); background: var(--plum); color: var(--peach-pale);
  padding: 13px 24px; border-radius: 999px; font-size: 0.88rem; opacity: 0; transition: 0.25s ease; z-index: 900; pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; order: -1; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .about .container { grid-template-columns: 1fr; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .location .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-media { min-height: 220px; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; background: var(--ivory); flex-direction: column; padding: 26px; gap: 22px;
    box-shadow: 0 20px 30px -20px rgba(0,0,0,0.2); transform: translateY(-130%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: grid; }
  .marquee-strip { margin-top: 76px; }
  .catalog-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { width: 100%; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-grid, .testi-grid, .how-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-card { width: 150px !important; }
  .hero-card img, .hero-card .ph { height: 160px; }
  .bestseller-track .product-card { min-width: 210px; max-width: 210px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
