/* ============================================================
   SR Melvi Production — Landing Page
   Design system: navy + red (mengikuti warna logo), Montserrat
   untuk heading, Lato untuk body.
   ============================================================ */

:root {
  --navy-950: #0c1730;
  --navy-900: #10203f;
  --navy-800: #16294f;
  --navy-700: #1e3763;
  --navy-100: #e8edf6;
  --red-600: #e11d2e;
  --red-700: #c11424;
  --red-100: #fdeaec;
  --cream: #f7f5f1;
  --white: #ffffff;
  --ink: #21242c;
  --ink-muted: #5b6270;
  --line: #e7e4de;
  --shadow-sm: 0 2px 10px rgba(16, 32, 63, 0.08);
  --shadow-md: 0 10px 30px rgba(16, 32, 63, 0.12);
  --shadow-lg: 0 20px 50px rgba(16, 32, 63, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 0.6em;
  line-height: 1.2;
}
p { margin: 0 0 1em; color: var(--ink-muted); line-height: 1.7; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red-600);
  display: inline-block;
}

.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { font-size: 16.5px; }
.section-head.left { text-align: left; margin: 0 0 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red-600); color: #fff; box-shadow: 0 10px 24px rgba(225, 29, 46, 0.35); }
.btn-primary:hover { background: var(--red-700); box-shadow: 0 14px 30px rgba(225, 29, 46, 0.42); }
.btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy { border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline-navy:hover { background: var(--navy-800); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700) 0%, var(--red-600) 50%, var(--navy-700) 100%);
  background-size: 200% auto;
  animation: shineLine 4s linear infinite;
  z-index: 1;
}
@keyframes shineLine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.site-header.is-scrolled {
  background: rgba(16, 32, 63, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  padding: 10px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; flex-shrink: 0; }
.brand-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-desktop a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  opacity: 0.88;
  transition: opacity 0.15s;
}
.nav-desktop a:hover { opacity: 1; }
.nav-desktop a.nav-cta {
  opacity: 1;
  color: #ff8a94;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a.nav-cta::after { content: "→"; transition: transform 0.15s; }
.nav-desktop a.nav-cta:hover::after { transform: translateX(3px); }
.header-actions { display: flex; align-items: center; gap: 16px; }

/* ---------- Header account (avatar + dropdown, diisi via JS setelah cek session) ---------- */
.header-auth[hidden] { display: none; }
.header-account { position: relative; }
.header-avatar-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s, background 0.15s;
}
.header-avatar-btn:hover,
.header-avatar-btn[aria-expanded="true"] { border-color: var(--red-600); background: rgba(225,29,46,0.16); }
.header-avatar {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}
.header-account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  z-index: 220;
}
.header-account-dropdown[hidden] { display: none; }
.header-account-dropdown-head {
  padding: 8px 12px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.header-account-dropdown-head .name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-900);
}
.header-account-dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.header-account-dropdown-item:hover { background: var(--navy-100); color: var(--navy-900); }
.header-account-dropdown-item.is-danger { color: var(--red-600); }
.header-account-dropdown-item.is-danger:hover { background: var(--red-100); color: var(--red-700); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(340px, 86vw);
  background: linear-gradient(175deg, var(--navy-900), var(--navy-950) 60%);
  z-index: 200;
  padding: 22px 22px 28px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 40px rgba(0,0,0,0.3);
  overflow-y: auto;
  flex-direction: column;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.nav-mobile-logo { height: 24px; width: auto; opacity: 0.95; }
.nav-mobile-close {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.05); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.nav-mobile-close:hover { background: rgba(225,29,46,0.2); border-color: var(--red-600); }
.nav-mobile-close svg { width: 18px; height: 18px; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: rgba(255,255,255,0.92);
  padding: 13px 12px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.07); transform: translateX(2px); }
.nav-mobile-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #ff8a94;
}
.nav-mobile-icon svg { width: 17px; height: 17px; }
.nav-mobile a.nav-mobile-cta {
  margin-top: 10px;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.3);
}
.nav-mobile a.nav-mobile-cta .nav-mobile-icon { background: rgba(255,255,255,0.18); color: #fff; }
.nav-mobile a.nav-mobile-cta:hover { transform: translateX(0) translateY(-1px); }

.nav-mobile-auth { margin-top: auto; padding-top: 22px; }
.nav-mobile-auth[hidden] { display: none; }
.nav-mobile-login-btn {
  display: block;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 13px;
  transition: background 0.15s, border-color 0.15s;
}
.nav-mobile-login-btn:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.nav-mobile-register-link {
  display: block;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  padding: 12px 4px 0;
}
.nav-mobile-register-link:hover { color: #fff; }
.nav-mobile-profile {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}
.nav-mobile-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.nav-mobile-profile-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
}
.nav-mobile-account-item {
  display: flex; align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 11px 12px;
  border-radius: 10px;
}
.nav-mobile-account-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-mobile-account-item.is-danger { color: #ffb4bb; }
.nav-mobile-account-item.is-danger:hover { background: rgba(225,29,46,0.18); color: #fff; }

.nav-scrim {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 190;
}
.nav-scrim.is-open, .nav-mobile.is-open + .nav-scrim { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--navy-950);
  background-size: cover;
  background-position: center 30%;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 0s linear 1.4s;
}
.hero-bg-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s ease, visibility 0s linear 0s;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(12,23,48,0.94) 10%, rgba(12,23,48,0.76) 45%, rgba(12,23,48,0.46) 75%),
    linear-gradient(0deg, rgba(12,23,48,0.45), rgba(12,23,48,0.45));
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(24px, 8vw, 140px);
  padding-right: clamp(24px, 6vw, 48px);
}
.hero-inner-content { max-width: 640px; width: 100%; }
.hero .eyebrow { color: #ffb4bb; }
.hero .eyebrow::before { background: #ffb4bb; }
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.14;
  margin-bottom: 22px;
}
.hero h1 span { color: #ff8a94; }
.hero p.lead {
  color: rgba(255,255,255,0.86);
  font-size: clamp(15px, 1.6vw, 17.5px);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 36px);
}
.hero-stats div strong {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #fff;
}
.hero-stats div span { font-size: 12.5px; color: rgba(255,255,255,0.72); }
.hero-dots {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 48px);
  bottom: 32px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.hero-dots button.is-active { background: #fff; width: 22px; border-radius: 5px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  min-width: 0;
}
.trust-item div:last-child { min-width: 0; }
.trust-item strong, .trust-item span { display: block; overflow-wrap: break-word; }
.trust-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--red-100);
  color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item strong { display: block; font-family: 'Montserrat', Arial, sans-serif; font-size: 14px; color: var(--navy-900); }
.trust-item span { font-size: 12.5px; color: var(--ink-muted); }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card .img-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: #f1efe9; }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 16px 18px 20px; }
.product-card-body h3 { font-size: 15.5px; margin-bottom: 4px; }
.product-card-body a.ask {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700; font-size: 12.5px;
  color: var(--red-600);
  margin-top: 6px;
}
.product-card-body a.ask svg { width: 14px; height: 14px; }
.products-cta { text-align: center; margin-top: 44px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-grid a { border-radius: 14px; overflow: hidden; position: relative; display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,23,48,0.35), rgba(12,23,48,0) 45%);
  opacity: 0; transition: opacity 0.25s;
}
.gallery-grid a:hover::after { opacity: 1; }

/* ---------- Why us ---------- */
/* ---------- Order online (landing) ---------- */
.order-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.order-feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.order-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-100);
  color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.order-feature-icon svg { width: 24px; height: 24px; }
.order-feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.order-feature-card p { font-size: 14px; margin-bottom: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.why-card .num {
  font-family: 'Abril Fatface', serif;
  font-size: 34px;
  color: var(--red-100);
  -webkit-text-stroke: 1.5px var(--red-600);
  color: transparent;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(225,29,46,0.35), transparent 55%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 16px; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.cta-phone { margin-top: 22px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; letter-spacing: 0.04em; color: rgba(255,255,255,0.75); font-size: 14px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.contact-list { display: grid; gap: 20px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--navy-100); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .icon svg { width: 22px; height: 22px; }
.contact-row strong { display: block; font-family: 'Montserrat', Arial, sans-serif; font-size: 14.5px; color: var(--navy-900); margin-bottom: 3px; }
.contact-row span, .contact-row a { font-size: 14.5px; color: var(--ink-muted); }
.contact-row a:hover { color: var(--red-600); }
.contact-card {
  background: var(--navy-950);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 34px;
  text-align: center;
}
.contact-card h3 { color: #fff; font-size: 20px; }
.contact-card p { color: rgba(255,255,255,0.75); font-size: 14.5px; }
.contact-card .btn-primary { width: 100%; justify-content: center; margin-top: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.55); padding: 40px 0 26px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 22px; }
.footer-top img { height: 30px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a { font-size: 13.5px; color: rgba(255,255,255,0.65); white-space: nowrap; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 20px; font-size: 12.5px; }
.footer-legal-nav { display: flex; flex-wrap: nowrap; gap: 18px; }
.footer-legal-nav a { font-size: 12.5px; color: rgba(255,255,255,0.65); white-space: nowrap; }
.footer-legal-nav a:hover { color: #fff; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 150;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.4s infinite;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 24px rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 24px rgba(37, 211, 102, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 24px rgba(37, 211, 102, 0.45); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .nav-desktop { display: none; }
  .header-auth { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .order-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 110px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 18px 26px; }
  .hero-dots { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid .tall { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .order-feature-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 44px 24px; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: nowrap; gap: 14px; width: 100%; }
  .footer-nav a { font-size: 11.5px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal-nav { justify-content: center; width: 100%; gap: 6px; }
  .footer-legal-nav a { flex: 1 1 0; font-size: 9.5px; line-height: 1.35; white-space: normal; }
}
