/* ==========================================================================
   GSC11 Store Mainan - Design System
   Premium Gold/Silver Theme | Modern | Animated | Responsive
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. CSS Variables / Design Tokens                                           */
/* -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8860b;
  --gold-soft: #f7e9b8;
  --gradient-gold: linear-gradient(135deg, #f4d03f 0%, #d4af37 45%, #b8860b 100%);
  --gradient-gold-soft: linear-gradient(135deg, #fbf3d0 0%, #f7e9b8 100%);
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --silver-dark: #8a8a8a;

  /* Neutrals */
  --ink: #14141b;
  --ink-2: #1e1e28;
  --ink-3: #2a2a36;
  --charcoal: #0f0f14;
  --paper: #ffffff;
  --cream: #faf8f2;
  --cream-2: #f3efe4;
  --muted: #6b6b78;
  --muted-2: #9a9aa6;
  --line: #e7e3d6;
  --line-dark: rgba(212, 175, 55, 0.18);

  /* Semantic */
  --success: #2e9e5b;
  --danger: #d94040;
  --star: #f5a623;

  /* Typography */
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing & Sizing */
  --container: 1200px;
  --container-wide: 1360px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --header-h: 76px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(20, 20, 27, 0.06);
  --shadow: 0 10px 30px rgba(20, 20, 27, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 20, 27, 0.16);
  --shadow-gold: 0 14px 40px rgba(212, 175, 55, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
}

/* -------------------------------------------------------------------------- */
/* 2. Reset & Base                                                            */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

p { color: var(--ink-2); }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; display: block; height: auto; }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

::selection { background: var(--gold); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gradient-gold); border-radius: 10px; border: 3px solid var(--cream-2); }

/* -------------------------------------------------------------------------- */
/* 3. Layout Utilities                                                        */
/* -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container-wide { max-width: var(--container-wide); }

.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
.section-sm { padding: clamp(40px, 5vw, 64px) 0; }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--charcoal); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,0.72); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mw-720 { max-width: 720px; }
.mw-640 { max-width: 640px; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Eyebrow / section heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold-dark);
  background: var(--gradient-gold-soft);
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--line-dark);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.section-head { margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* -------------------------------------------------------------------------- */
/* 4. Buttons                                                                 */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.97rem;
  padding: 14px 28px; border-radius: 100px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gradient-gold); color: #1a1400; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(212, 175, 55, 0.48); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); background: var(--charcoal); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); background: var(--gradient-gold-soft); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.22); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }
/* Shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 140%; }

.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fb857; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4); }

/* -------------------------------------------------------------------------- */
/* 5. Header / Navigation                                                     */
/* -------------------------------------------------------------------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition), height var(--transition);
}
.header.scrolled { background: rgba(255,255,255,0.92); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; }
.brand img { height: 46px; width: auto; max-width: 160px; object-fit: contain; }
.brand span { color: var(--ink); }
.brand span b { color: var(--gold-dark); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.96rem;
  color: var(--ink-2); padding: 9px 15px; border-radius: 100px; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px;
  background: var(--gradient-gold); transform: translateX(-50%); transition: width var(--transition); border-radius: 2px;
}
.nav a:hover { color: var(--gold-dark); }
.nav a:hover::after, .nav a.active::after { width: 22px; }
.nav a.active { color: var(--gold-dark); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------- */
/* 6. Hero                                                                    */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 90px;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(212, 175, 55, 0.18), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(192, 192, 192, 0.18), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { font-size: 1.16rem; color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-head); font-size: 1.9rem; color: var(--ink); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 0.86rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-visual .main-card {
  background: #fff; border-radius: var(--radius-xl); padding: 18px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden; border: 1px solid var(--line);
}
.hero-visual .main-card img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.hero-badge {
  position: absolute; background: #fff; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; border: 1px solid var(--line);
}
.hero-badge .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--gradient-gold-soft); display: grid; place-items: center; font-size: 1.3rem; }
.hero-badge b { font-family: var(--font-head); font-size: 0.98rem; display: block; }
.hero-badge small { color: var(--muted); font-size: 0.78rem; }
.hero-badge.b1 { top: 28px; left: -26px; }
.hero-badge.b2 { bottom: 34px; right: -22px; }

.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; z-index: 0; }

/* Marquee ticker */
.marquee { background: var(--ink); color: #fff; overflow: hidden; padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); }
.marquee-track span::before { content: "★"; color: var(--gold); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------- */
/* 7. Cards - Category / Product                                              */
/* -------------------------------------------------------------------------- */
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 30px 26px;
  background: #fff; border: 1px solid var(--line); min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cat-card::before { content: ""; position: absolute; inset: 0; background: var(--gradient-gold-soft); opacity: 0; transition: opacity var(--transition); z-index: 0; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cat-card:hover::before { opacity: 0.5; }
.cat-card .ico { width: 58px; height: 58px; border-radius: 16px; background: var(--gradient-gold); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 16px; position: relative; z-index: 1; box-shadow: var(--shadow-gold); }
.cat-card h3 { font-size: 1.2rem; margin-bottom: 6px; position: relative; z-index: 1; }
.cat-card p { font-size: 0.9rem; color: var(--muted); position: relative; z-index: 1; margin-bottom: 12px; }
.cat-card .link { font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--gold-dark); position: relative; z-index: 1; display: inline-flex; gap: 6px; align-items: center; }
.cat-card:hover .link { gap: 10px; }

/* Product card */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product-media { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--cream); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-tag { position: absolute; top: 14px; left: 14px; background: var(--gradient-gold); color: #1a1400; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; z-index: 2; }
.product-tag.tag-hot { background: linear-gradient(135deg,#ff7a45,#d94040); color: #fff; }
.product-tag.tag-new { background: linear-gradient(135deg,#39b6a8,#2e9e5b); color: #fff; }
.product-fav { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.9); display: grid; place-items: center; z-index: 2; opacity: 0; transform: translateY(-6px); transition: var(--transition); }
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.product-body h3 a:hover { color: var(--gold-dark); }
.rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; font-size: 0.85rem; color: var(--muted); }
.rating .stars { color: var(--star); letter-spacing: 1px; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { display: flex; flex-direction: column; }
.price .now { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.price .was { font-size: 0.82rem; color: var(--muted-2); text-decoration: line-through; }
.btn-cart { width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: #fff; display: grid; place-items: center; transition: var(--transition); flex-shrink: 0; }
.btn-cart:hover { background: var(--gradient-gold); color: #1a1400; transform: rotate(-8deg) scale(1.05); }

/* -------------------------------------------------------------------------- */
/* 8. Feature / Why choose                                                    */
/* -------------------------------------------------------------------------- */
.feature { text-align: center; padding: 34px 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); transition: var(--transition); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.feature .ico { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 20px; background: var(--gradient-gold-soft); display: grid; place-items: center; font-size: 1.8rem; transition: var(--transition); }
.feature:hover .ico { transform: rotate(-6deg) scale(1.08); }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--muted); }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-item b { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); display: block; line-height: 1; }
.stat-item span { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-top: 8px; display: block; }

/* -------------------------------------------------------------------------- */
/* 9. Testimonials                                                            */
/* -------------------------------------------------------------------------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition); position: relative; }
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi .quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: 0.6; color: var(--gold); opacity: 0.35; }
.testi .stars { color: var(--star); margin-bottom: 12px; letter-spacing: 2px; }
.testi p { font-size: 0.98rem; margin-bottom: 20px; color: var(--ink-2); }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gradient-gold); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #1a1400; }
.testi .who b { font-family: var(--font-head); font-size: 0.95rem; display: block; }
.testi .who span { font-size: 0.82rem; color: var(--muted); }

/* -------------------------------------------------------------------------- */
/* 10. FAQ (accordion)                                                        */
/* -------------------------------------------------------------------------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q .plus { width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; flex-shrink: 0; transition: var(--transition); font-size: 1.2rem; color: var(--gold-dark); }
.faq-item.open .plus { background: var(--gradient-gold); color: #1a1400; transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.97rem; }

/* -------------------------------------------------------------------------- */
/* 11. CTA banner                                                             */
/* -------------------------------------------------------------------------- */
.cta-banner { position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: clamp(40px, 6vw, 72px); background: var(--gradient-gold); text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 20%, rgba(255,255,255,0.4), transparent 60%); }
.cta-banner h2 { color: #1a1400; position: relative; }
.cta-banner p { color: #4a3c00; position: relative; max-width: 560px; margin: 14px auto 28px; }
.cta-banner .btn-dark { position: relative; }

/* -------------------------------------------------------------------------- */
/* 12. Footer                                                                 */
/* -------------------------------------------------------------------------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer .brand span { color: #fff; }
.footer-about p { margin: 18px 0; font-size: 0.94rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.94rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 0.92rem; align-items: flex-start; }
.footer-contact .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: var(--transition); }
.socials a:hover { background: var(--gradient-gold); color: #1a1400; transform: translateY(-4px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.88rem; }
.footer-bottom a:hover { color: var(--gold); }

/* -------------------------------------------------------------------------- */
/* 13. Page hero (inner pages) + breadcrumb                                   */
/* -------------------------------------------------------------------------- */
.page-hero { padding: calc(var(--header-h) + 56px) 0 56px; background: radial-gradient(800px 400px at 80% -20%, rgba(212,175,55,0.16), transparent 60%), var(--cream); text-align: center; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.86rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb .sep { color: var(--muted-2); }
.breadcrumb .current { color: var(--gold-dark); font-weight: 600; }

/* -------------------------------------------------------------------------- */
/* 14. Filter toolbar (catalog)                                               */
/* -------------------------------------------------------------------------- */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; padding: 9px 18px; border-radius: 100px; background: #fff; border: 1.5px solid var(--line); color: var(--ink-2); transition: var(--transition); }
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.search-box { position: relative; }
.search-box input { width: 280px; max-width: 100%; padding: 12px 18px 12px 44px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; transition: var(--transition); }
.search-box input:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 4px rgba(212,175,55,0.12); }
.search-box .ico { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.no-results { text-align: center; padding: 60px 20px; color: var(--muted); grid-column: 1/-1; }

/* -------------------------------------------------------------------------- */
/* 15. Product detail                                                         */
/* -------------------------------------------------------------------------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-main-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--cream); aspect-ratio: 1/1; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .product-cat { font-size: 0.82rem; }
.pd-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.pd-price { display: flex; align-items: baseline; gap: 14px; margin: 20px 0; }
.pd-price .now { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: var(--gold-dark); }
.pd-price .was { font-size: 1.1rem; color: var(--muted-2); text-decoration: line-through; }
.pd-price .save { background: var(--gradient-gold-soft); color: var(--gold-dark); font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; padding: 4px 12px; border-radius: 100px; }
.pd-desc { color: var(--ink-2); margin-bottom: 24px; }
.pd-meta { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.pd-meta .row { display: flex; gap: 12px; font-size: 0.95rem; }
.pd-meta .row b { min-width: 130px; font-family: var(--font-head); }
.pd-meta .in-stock { color: var(--success); font-weight: 600; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pd-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 26px; }
.pd-features .f { display: flex; gap: 12px; align-items: center; font-size: 0.9rem; }
.pd-features .f .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient-gold-soft); display: grid; place-items: center; flex-shrink: 0; }

/* Rich content / article body */
.prose { max-width: 780px; margin-inline: auto; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.8em; padding-top: 0.2em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.4em; }
.prose p { font-size: 1.06rem; line-height: 1.8; color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul li { list-style: disc; margin-bottom: 0.6em; padding-left: 6px; }
.prose ol li { list-style: decimal; margin-bottom: 0.6em; padding-left: 6px; }
.prose li::marker { color: var(--gold-dark); }
.prose blockquote { border-left: 4px solid var(--gold); padding: 8px 22px; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--ink-2); }
.prose img { border-radius: var(--radius); margin: 1.5em 0; }
.prose a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose .callout { background: var(--gradient-gold-soft); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 22px 24px; }
.prose .callout h3 { margin-top: 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--cream); font-family: var(--font-head); }

/* Article meta + cards */
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; margin-bottom: 8px; }
.article-meta .tag { background: var(--gradient-gold-soft); color: var(--gold-dark); font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.blog-card .media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .media img { transform: scale(1.06); }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.18rem; margin: 10px 0 10px; }
.blog-card p { font-size: 0.94rem; color: var(--muted); margin-bottom: 16px; }
.blog-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--gold-dark); display: inline-flex; gap: 6px; align-items: center; }
.blog-card:hover .more { gap: 10px; }

/* -------------------------------------------------------------------------- */
/* 16. Contact                                                                */
/* -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-info .info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; transition: var(--transition); background: #fff; }
.contact-info .info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.contact-info .info-card .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-gold-soft); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info .info-card b { font-family: var(--font-head); display: block; margin-bottom: 4px; }
.contact-info .info-card p, .contact-info .info-card a { color: var(--muted); font-size: 0.94rem; }
.contact-info .info-card a:hover { color: var(--gold-dark); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); transition: var(--transition); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(212,175,55,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 10px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 40px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* -------------------------------------------------------------------------- */
/* 17. Misc: back-to-top, WA float, badges, 404                               */
/* -------------------------------------------------------------------------- */
.to-top { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; z-index: 900; opacity: 0; transform: translateY(20px) scale(0.8); transition: var(--transition); box-shadow: var(--shadow); }
.to-top.show { opacity: 1; transform: translateY(0) scale(1); }
.to-top:hover { background: var(--gradient-gold); color: #1a1400; }
.wa-float { position: fixed; bottom: 24px; left: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; z-index: 900; box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: var(--transition); animation: wa-pulse 2.4s infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.trust-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); font-family: var(--font-head); font-weight: 500; }
.trust-badge .ico { color: var(--success); }

.err-404 { text-align: center; padding: calc(var(--header-h) + 80px) 0 100px; }
.err-404 .big { font-family: var(--font-head); font-weight: 800; font-size: clamp(6rem, 20vw, 12rem); line-height: 1; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Divider */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* -------------------------------------------------------------------------- */
/* 18. Scroll Reveal Animations                                               */
/* -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal].in { transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* Floating animation */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.floaty { animation: float 5s ease-in-out infinite; }
.floaty-2 { animation: float 6s ease-in-out infinite; animation-delay: -2s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.anim-up { animation: fadeInUp 0.8s var(--ease) both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.25s; } .d3 { animation-delay: 0.4s; } .d4 { animation-delay: 0.55s; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
.spin-slow { animation: spinSlow 22s linear infinite; }

/* Preloader */
.preloader { position: fixed; inset: 0; background: var(--cream); z-index: 4000; display: grid; place-items: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader .ring { width: 62px; height: 62px; border: 4px solid var(--line); border-top-color: var(--gold); border-radius: 50%; animation: spinSlow 0.9s linear infinite; }

/* -------------------------------------------------------------------------- */
/* 19. Responsive                                                             */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .pd-grid { grid-template-columns: 1fr; gap: 34px; }
  .pd-gallery { position: static; }
}
@media (max-width: 860px) {
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); right: 0; width: min(320px, 84vw); height: calc(100vh - var(--header-h));
    background: #fff; flex-direction: column; align-items: stretch; gap: 4px; padding: 24px; box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform var(--transition); overflow-y: auto; border-left: 1px solid var(--line);
  }
  .nav.open { transform: translateX(0); display: flex; }
  .nav a { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav a:hover { background: var(--cream); }
  .nav a::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: 12px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 30px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .pd-features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { gap: 22px; }
  .hero-badge.b1 { left: 8px; }
  .hero-badge.b2 { right: 8px; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .search-box input { width: 100%; }
  .section { padding: 54px 0; }
  .pd-price .now { font-size: 1.7rem; }
  .to-top { bottom: 84px; }
}

/* -------------------------------------------------------------------------- */
/* 20. Reduced motion                                                         */
/* -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Admin-managed SEO article footer */
.admin-seo-article-section { padding-top: 24px; }
.admin-seo-article { display: grid; grid-template-columns: minmax(260px,.72fr) 1.28fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-lg); }
.admin-seo-article.is-text-only { grid-template-columns: 1fr; }
.admin-seo-article__image { min-height: 100%; background: var(--cream-2); }
.admin-seo-article__image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.admin-seo-article__body { padding: clamp(30px,5vw,58px); }
.admin-seo-article__eyebrow { display: inline-block; margin-bottom: 15px; padding: 6px 13px; border: 1px solid rgba(212,175,55,.28); border-radius: 999px; color: var(--gold-dark); background: var(--gradient-gold-soft); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.admin-seo-article__body h2 { margin-bottom: 20px; color: var(--ink); }
.admin-seo-article__content-wrap { position: relative; max-height: 250px; overflow: hidden; }
.admin-seo-article__content-wrap::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 95px; pointer-events: none; background: linear-gradient(to bottom,rgba(255,255,255,0),#fff 88%); transition: opacity .25s; }
.admin-seo-article__content-wrap.is-expanded { max-height: none; }
.admin-seo-article__content-wrap.is-expanded::after { opacity: 0; }
.admin-seo-article__content { color: var(--muted); line-height: 1.8; }
.admin-seo-article__content p { margin-bottom: 14px; }
.admin-seo-article__content h2,.admin-seo-article__content h3 { margin: 25px 0 10px; color: var(--ink); }
.admin-seo-article__content ul,.admin-seo-article__content ol { margin: 14px 0; padding-left: 24px; list-style: revert; }
.admin-seo-article__toggle { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 11px 18px; border: 1px solid rgba(212,175,55,.32); border-radius: 999px; color: var(--ink); background: var(--gradient-gold-soft); font-weight: 800; cursor: pointer; transition: var(--transition); }
.admin-seo-article__toggle:hover { color: var(--charcoal); background: var(--gradient-gold); box-shadow: var(--shadow-gold); }
.admin-seo-article__toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s; }
.admin-seo-article__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
@media(max-width:760px){.admin-seo-article{grid-template-columns:1fr}.admin-seo-article__image img{min-height:220px;max-height:310px}.admin-seo-article__body{padding:28px 22px}}
