:root {
  --primary: #012b76;
  --primary-2: #0647ad;
  --secondary: #fed300;
  --accent: #00b8f8;
  --ink: #0c1a35;
  --ink-soft: #50617d;
  --muted: #7b8aa3;
  --surface: #ffffff;
  --surface-alt: #f5f8fd;
  --surface-blue: #eef6ff;
  --border: #dbe5f2;
  --success: #25d366;
  --danger: #c93333;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 18px rgba(1, 43, 118, .08);
  --shadow: 0 14px 40px rgba(1, 43, 118, .12);
  --shadow-lg: 0 24px 70px rgba(1, 43, 118, .16);
  --container: 1320px;
  --ticker-h: 36px;
  --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-alt);
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(0, 184, 248, .55); outline-offset: 3px; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--white { background: var(--surface); }
.section--blue { background: var(--surface-blue); }
.eyebrow {
  margin: 0 0 7px;
  color: var(--primary-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}
.section-heading p { margin: 7px 0 0; color: var(--ink-soft); max-width: 660px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}
.text-link:hover { color: var(--primary-2); transform: translateX(2px); }

/* Promo ticker */
.promo-ticker {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--primary);
}
.promo-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.promo-ticker__item {
  padding: 0 42px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .055em;
  white-space: nowrap;
}
.promo-ticker__item b { color: var(--secondary); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Header */
.site-header {
  position: sticky;
  top: var(--ticker-h);
  z-index: 990;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav-main {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-width: 176px; }
.brand img { width: 170px; height: 52px; object-fit: contain; object-position: left center; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-cta { display: inline-flex; }
.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  display: none;
  place-items: center;
}
.menu-button span,
.menu-button span::before,
.menu-button span::after {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  position: relative;
  display: block;
}
.menu-button span::before,
.menu-button span::after { content: ''; position: absolute; left: 0; }
.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }
.nav-secondary { border-top: 1px solid #edf2f8; background: #fff; }
.nav-links { margin: 0; padding: 0; list-style: none; display: flex; }
.nav-links a {
  display: block;
  padding: 12px 18px 10px;
  border-bottom: 3px solid transparent;
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 800;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--primary); border-bottom-color: var(--secondary); }

/* Mobile drawer */
.mobile-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(4,17,42,.48); opacity: 0; visibility: hidden; transition: .25s; }
.mobile-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  z-index: 1110;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  padding: 22px;
  background: var(--primary);
  color: #fff;
  transform: translateX(105%);
  transition: transform .3s ease;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.mobile-menu__brand { width: 150px; padding: 7px 10px; background: #fff; border-radius: 10px; }
.mobile-menu__brand img { width: 100%; }
.mobile-menu__close { width: 38px; height: 38px; border: 0; border-radius: 10px; background: rgba(255,255,255,.12); color: #fff; font-size: 1.2rem; }
.mobile-nav { display: grid; gap: 7px; margin-top: 24px; }
.mobile-nav a { padding: 13px 14px; border-radius: 12px; font-weight: 750; color: rgba(255,255,255,.88); }
.mobile-nav a:hover,
.mobile-nav a.is-active { background: rgba(255,255,255,.12); color: var(--secondary); }
.mobile-menu__help { margin-top: 26px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.08); font-size: .84rem; color: rgba(255,255,255,.76); }

/* Buttons */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 21px;
  font-weight: 850;
  font-size: .88rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 22px rgba(1,43,118,.18); }
.btn--primary:hover { background: var(--primary-2); box-shadow: 0 12px 28px rgba(1,43,118,.24); }
.btn--yellow { background: var(--secondary); color: var(--primary); box-shadow: 0 8px 20px rgba(254,211,0,.25); }
.btn--yellow:hover { background: #ffe143; }
.btn--whatsapp { background: var(--success); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.24); }
.btn--whatsapp:hover { background: #1dbb57; }
.btn--ghost { border-color: var(--border); background: #fff; color: var(--primary); }
.btn--ghost:hover { border-color: var(--accent); background: var(--surface-blue); }
.btn--small { min-height: 38px; padding: 8px 15px; font-size: .78rem; }

/* Hero */
.hero-slider { position: relative; background: var(--primary); overflow: hidden; }
.hero-stage { position: relative; min-height: 520px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity .6s ease, transform .7s ease;
}
.hero-slide.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; z-index: 2; }
.hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,22,63,.83) 0%, rgba(1,22,63,.62) 36%, rgba(1,22,63,.1) 72%, rgba(1,22,63,.06) 100%); }
.hero-slide--banner .hero-slide__shade { background: linear-gradient(90deg, rgba(1,43,118,.05), rgba(1,43,118,.02)); }
.hero-content { position: relative; z-index: 2; min-height: 520px; display: flex; align-items: center; }
.hero-content__panel { width: min(600px, 54%); color: #fff; padding: 46px 0 62px; }
.hero-slide--banner .hero-content__panel { margin-left: auto; width: min(390px, 34%); padding: 0; align-self: end; margin-bottom: 58px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.hero-kicker::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); }
.hero-content h1 { margin: 0; max-width: 640px; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero-content p { margin: 18px 0 24px; max-width: 560px; color: rgba(255,255,255,.82); font-size: clamp(.98rem, 1.45vw, 1.12rem); }
.hero-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 9px; margin-bottom: 23px; }
.hero-price strong { font-size: clamp(1.7rem, 3vw, 2.45rem); color: var(--secondary); letter-spacing: -.03em; }
.hero-price del { color: rgba(255,255,255,.62); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-slide--banner .hero-content__panel .hero-kicker,
.hero-slide--banner .hero-content__panel h1,
.hero-slide--banner .hero-content__panel p,
.hero-slide--banner .hero-content__panel .hero-price { display: none; }
.hero-slide--banner .hero-actions { justify-content: flex-end; }
.hero-mobile-copy { display: none; }
.hero-dots { position: absolute; z-index: 6; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); transition: width .25s ease, border-radius .25s ease, background .25s ease; }
.hero-dot.is-active { width: 28px; border-radius: 99px; background: var(--secondary); }

/* Benefit bar */
.benefit-bar { background: #fff; border-bottom: 1px solid var(--border); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit-item { display: flex; align-items: center; gap: 13px; padding: 20px 22px; border-right: 1px solid var(--border); }
.benefit-item:last-child { border-right: 0; }
.benefit-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--primary); background: var(--surface-blue); font-size: 1.2rem; }
.benefit-item strong { display: block; font-size: .9rem; line-height: 1.25; }
.benefit-item span { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; }

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-card { min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.category-card:hover { transform: translateY(-4px); border-color: #b8cff0; box-shadow: var(--shadow-sm); }
.category-card__icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--primary); color: var(--secondary); font-weight: 900; }
.category-card h3 { margin: 14px 0 2px; font-size: .98rem; }
.category-card p { margin: 0; color: var(--muted); font-size: .76rem; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.product-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-5px); border-color: #b9cdeb; box-shadow: var(--shadow); }
.product-card__image { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--surface-alt); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card__image img { transform: scale(1.045); }
.badge { position: absolute; top: 10px; left: 10px; z-index: 2; padding: 5px 9px; border-radius: 999px; font-size: .62rem; font-weight: 900; letter-spacing: .075em; }
.badge--promo { background: var(--secondary); color: var(--primary); box-shadow: 0 5px 15px rgba(254,211,0,.25); }
.product-card__body { padding: 15px 15px 16px; }
.product-card__brand { margin: 0 0 5px; color: var(--primary-2); font-size: .65rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { min-height: 2.7em; margin: 0 0 10px; font-size: .92rem; line-height: 1.35; }
.product-card h3 a:hover { color: var(--primary-2); }
.price-row { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price-row strong { color: var(--primary); font-size: 1.03rem; }
.price-row del { color: var(--muted); font-size: .72rem; }
.price-row span { padding: 2px 6px; border-radius: 6px; color: var(--danger); background: #fff0ef; font-size: .63rem; font-weight: 850; }
.product-card__meta { margin: 8px 0 12px; color: var(--muted); font-size: .7rem; }
.product-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }

/* Contact/location */
.location-card { display: grid; grid-template-columns: .95fr 1.4fr; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.location-info { padding: 42px; }
.location-info h2 { margin: 0 0 10px; font-size: clamp(1.65rem,3vw,2.25rem); letter-spacing: -.035em; }
.location-info > p { margin: 0 0 25px; color: var(--ink-soft); }
.contact-list { display: grid; gap: 14px; margin: 0 0 24px; }
.contact-row { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; }
.contact-row__icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--surface-blue); }
.contact-row small { display: block; color: var(--muted); font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.contact-row strong { font-size: .88rem; }
.location-map { min-height: 430px; background: #e7eef7; }
.location-map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: saturate(.88) contrast(.96); }

/* CTA */
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; min-height: 260px; padding: 44px; border-radius: var(--radius-xl); background: linear-gradient(120deg, var(--primary) 0%, #0647ad 70%, #087bbf 100%); color: #fff; box-shadow: var(--shadow); }
.cta-card::after { content: ''; position: absolute; right: -70px; top: -80px; width: 310px; height: 310px; border-radius: 50%; border: 58px solid rgba(254,211,0,.12); }
.cta-card__copy { position: relative; z-index: 2; }
.cta-card h2 { margin: 0; max-width: 680px; font-size: clamp(1.9rem,3vw,2.7rem); line-height: 1.1; letter-spacing: -.04em; }
.cta-card p { max-width: 670px; margin: 13px 0 23px; color: rgba(255,255,255,.78); }
.cta-card__logo { position: relative; z-index: 2; justify-self: end; width: min(270px,100%); padding: 18px; border-radius: 20px; background: #fff; box-shadow: 0 14px 40px rgba(0,0,0,.18); }

/* Page hero */
.page-hero { padding: 58px 0 54px; color: #fff; background: linear-gradient(120deg, var(--primary), var(--primary-2)); text-align: center; }
.page-hero p { max-width: 680px; margin: 12px auto 0; color: rgba(255,255,255,.76); }
.page-hero__crumb { display: inline-flex; gap: 7px; margin-bottom: 12px; color: rgba(255,255,255,.68); font-size: .77rem; font-weight: 750; }

/* Product filters */
.filter-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { min-height: 38px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--ink-soft); font-size: .78rem; font-weight: 800; }
.filter-chip:hover,
.filter-chip.is-active { border-color: var(--primary); background: var(--primary); color: #fff; }
.result-count { color: var(--muted); font-size: .8rem; white-space: nowrap; }

/* About */
.story-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 34px; align-items: start; }
.story-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.story-card h2, .story-card h3 { margin-top: 0; }
.story-card p { color: var(--ink-soft); }
.promise-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.promise-item { padding: 18px; border-radius: var(--radius); background: var(--surface-blue); }
.promise-item strong { display: block; color: var(--primary); }
.promise-item span { color: var(--ink-soft); font-size: .82rem; }
.source-note { margin-top: 18px; padding: 14px 16px; border-left: 4px solid var(--secondary); background: #fffbdf; color: #5f5530; font-size: .8rem; }

/* Footer: flat, no wave */
.site-footer { padding: 58px 0 26px; background: var(--primary); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.35fr; gap: 42px; }
.footer-brand { width: 190px; padding: 10px 12px; border-radius: 12px; background: #fff; }
.footer-desc { max-width: 320px; margin: 16px 0 20px; color: rgba(255,255,255,.62); font-size: .84rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.social-link { min-height: 34px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; color: rgba(255,255,255,.7); font-size: .7rem; }
.social-link:hover { border-color: var(--secondary); color: var(--secondary); }
.footer-col h3 { margin: 0 0 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.13); font-size: .94rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col li, .footer-col a { color: rgba(255,255,255,.62); font-size: .8rem; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 42px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.46); font-size: .74rem; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-badge { padding: 5px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; color: rgba(255,255,255,.68); font-size: .66rem; font-weight: 800; }

/* Floating controls */
.wa-float, .back-to-top { position: fixed; z-index: 900; bottom: 24px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.17); transition: transform var(--transition), opacity var(--transition), visibility var(--transition); }
.wa-float { right: 24px; width: 56px; height: 56px; background: var(--success); color: #fff; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 27px; height: 27px; fill: currentColor; }
.back-to-top { left: 24px; width: 46px; height: 46px; border: 0; background: var(--secondary); color: var(--primary); font-size: 1.2rem; font-weight: 900; opacity: 0; visibility: hidden; transform: translateY(12px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --ticker-h: 34px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 56px 0; }
  .nav-main { min-height: 64px; }
  .brand img { width: 154px; height: 46px; }
  .nav-secondary, .nav-cta { display: none; }
  .menu-button { display: grid; }
  .hero-stage { min-height: 0; aspect-ratio: 16 / 9; }
  .hero-content { min-height: 100%; }
  .hero-content__panel { width: 62%; padding: 26px 0 42px; }
  .hero-content h1 { font-size: clamp(2rem,6vw,3.2rem); }
  .hero-slide--banner .hero-content__panel { width: 34%; margin-bottom: 42px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: 0; }
  .benefit-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .location-card { grid-template-columns: 1fr; }
  .location-map, .location-map iframe { min-height: 330px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__logo { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .promo-ticker__item { padding: 0 26px; font-size: .67rem; }
  .section { padding: 38px 0; }
  .section--tight { padding: 30px 0; }
  .section-heading { align-items: flex-start; margin-bottom: 20px; }
  .section-heading h2 { font-size: 1.55rem; }
  .section-heading p { font-size: .82rem; }
  .text-link { font-size: .74rem; }
  .brand img { width: 142px; height: 42px; }

  /* Mobile hero is image-only so the four benefit badges follow it immediately. */
  .hero-slider { background: var(--primary); }
  .hero-stage { height: auto !important; min-height: 0; aspect-ratio: 16 / 9; background: var(--primary); }
  .hero-slide { display: block; width: 100%; height: 100%; background: var(--primary); transform: none; }
  .hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
  .hero-slide__shade, .hero-content, .hero-mobile-copy { display: none; }
  .hero-dots { bottom: 12px; align-items: center; padding: 5px 8px; border-radius: 999px; background: rgba(1,22,63,.22); backdrop-filter: blur(5px); }
  .hero-dot { width: 9px; height: 9px; min-width: 9px; padding: 0; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; appearance: none; background: rgba(255,255,255,.7); box-shadow: 0 1px 5px rgba(0,0,0,.15); }
  .hero-dot.is-active { width: 28px; min-width: 28px; border-radius: 99px; border-color: var(--secondary); background: var(--secondary); }

  .benefit-item { padding: 13px 11px; gap: 9px; }
  .benefit-icon { width: 36px; height: 36px; border-radius: 10px; font-size: .98rem; }
  .benefit-item strong { font-size: .75rem; }
  .benefit-item span { font-size: .64rem; }
  .category-grid { grid-template-columns: repeat(2,1fr); gap: 9px; }
  .category-card { min-height: 112px; padding: 14px; }
  .category-card__icon { width: 36px; height: 36px; }
  .category-card h3 { font-size: .83rem; }
  .category-card p { font-size: .68rem; }
  .product-grid { gap: 10px; }
  .product-card__body { padding: 10px 10px 11px; }
  .product-card__brand { font-size: .55rem; }
  .product-card h3 { min-height: 2.7em; margin-bottom: 7px; font-size: .76rem; }
  .price-row { gap: 5px; }
  .price-row strong { font-size: .88rem; }
  .price-row del { font-size: .62rem; }
  .price-row span { font-size: .55rem; }
  .product-card__meta { margin: 6px 0 9px; font-size: .61rem; }
  .product-card__actions { grid-template-columns: 1fr; }
  .product-card__actions .btn--ghost { display: none; }
  .btn--small { min-height: 34px; padding: 7px 9px; font-size: .7rem; }
  .location-info { padding: 25px 19px; }
  .location-info h2 { font-size: 1.55rem; }
  .location-map, .location-map iframe { min-height: 260px; }
  .cta-card { min-height: 0; padding: 28px 20px; border-radius: 22px; }
  .cta-card h2 { font-size: 1.6rem; }
  .page-hero { padding: 40px 0 38px; }
  .page-hero h1 { font-size: 1.75rem; }
  .filter-toolbar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .filter-list { gap: 6px; }
  .filter-chip { min-height: 34px; padding: 7px 11px; font-size: .7rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 27px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .wa-float { width: 50px; height: 50px; right: 15px; bottom: 18px; }
  .back-to-top { width: 40px; height: 40px; left: 15px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ===== Revision: hero stability, cart, WhatsApp chat and footer ===== */
body.cart-open { overflow: hidden; }

/* Keep wide hero media proportional and prevent clipped slide content on desktop. */
@media (min-width: 901px) {
  .hero-stage {
    height: clamp(540px, 56.25vw, 820px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .hero-content { min-height: 100%; }
  .hero-slide--banner .hero-slide__image { object-position: center center; }
  .hero-slide--sembako .hero-slide__shade {
    background: linear-gradient(90deg, rgba(1,22,63,.88) 0%, rgba(1,22,63,.7) 34%, rgba(1,22,63,.22) 58%, rgba(1,22,63,.04) 100%);
  }
  .hero-slide--sembako .hero-content__panel { width: min(510px, 43%); }
}

@media (min-width: 601px) and (max-width: 900px) {
  .hero-stage { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .hero-slide--sembako .hero-content__panel { width: 54%; }
  .hero-slide--sembako .hero-slide__shade {
    background: linear-gradient(90deg, rgba(1,22,63,.86), rgba(1,22,63,.56) 42%, rgba(1,22,63,.08) 78%);
  }
}

/* Category pictograms replace abbreviation letters. */
.category-card__icon svg { width: 24px; height: 24px; fill: currentColor; }

/* Header cart button */
.cart-button {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  color: var(--primary);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.cart-button:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--surface-blue); }
.cart-button svg { width: 22px; height: 22px; fill: currentColor; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-size: .62rem;
  line-height: 1;
  font-weight: 900;
}
.cart-count.is-empty { display: none; }

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(5,18,42,.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  width: min(92vw, 440px);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -24px 0 70px rgba(0,0,0,.18);
  transform: translateX(104%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 17px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header > div { display: grid; }
.cart-drawer__header span { color: var(--primary-2); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cart-drawer__header strong { margin-top: 2px; font-size: 1.15rem; }
.cart-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--primary);
}
.cart-close svg, .cart-remove svg { width: 20px; height: 20px; fill: currentColor; }
.cart-drawer__body { overflow-y: auto; padding: 8px 20px 20px; }
.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__image { width: 86px; height: 86px; overflow: hidden; border: 1px solid var(--border); border-radius: 13px; background: var(--surface-alt); }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { min-width: 0; }
.cart-item__name { display: block; margin-bottom: 5px; font-size: .83rem; line-height: 1.35; font-weight: 800; }
.cart-item__name:hover { color: var(--primary-2); }
.cart-item__info > strong { color: var(--primary); font-size: .86rem; }
.cart-item__controls { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.cart-qty { display: grid; grid-template-columns: 31px 42px 31px; overflow: hidden; border: 1px solid var(--border); border-radius: 10px; background: #fff; }
.cart-qty button { width: 31px; height: 31px; border: 0; background: var(--surface-blue); color: var(--primary); font-weight: 900; }
.cart-qty input { width: 42px; height: 31px; padding: 0; border: 0; border-inline: 1px solid var(--border); color: var(--ink); background: #fff; text-align: center; font-size: .75rem; font-weight: 800; -moz-appearance: textfield; }
.cart-qty input::-webkit-inner-spin-button, .cart-qty input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.cart-remove { width: 32px; height: 32px; display: grid; place-items: center; border: 0; border-radius: 9px; background: #fff0ef; color: var(--danger); }
.cart-drawer__footer { padding: 18px 20px 20px; border-top: 1px solid var(--border); background: #fff; box-shadow: 0 -10px 24px rgba(1,43,118,.05); }
.cart-total { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 13px; }
.cart-total span { color: var(--muted); font-size: .78rem; }
.cart-total strong { color: var(--primary); font-size: 1.18rem; }
.cart-checkout { width: 100%; border: 0; }
.cart-checkout:disabled { cursor: not-allowed; opacity: .45; transform: none; box-shadow: none; }
.cart-drawer__footer small { display: block; margin-top: 9px; color: var(--muted); font-size: .67rem; text-align: center; }
.cart-empty { min-height: 58vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px 20px; text-align: center; }
.cart-empty > svg { width: 48px; height: 48px; margin-bottom: 14px; fill: var(--primary); opacity: .28; }
.cart-empty strong { font-size: 1.02rem; }
.cart-empty p { margin: 7px 0 17px; color: var(--muted); font-size: .78rem; }

/* Footer logo is intentionally compact; all footer copy stays white. */
.footer-brand { width: 145px; padding: 8px 10px; }
.footer-desc,
.footer-col li,
.footer-col a,
.footer-bottom,
.footer-badge,
.social-link { color: #fff; }
.footer-col a:hover { color: #fff; opacity: .78; }
.footer-badge { border-color: rgba(255,255,255,.3); }

/* WhatsApp floating bubble opens an in-page chat first. */
.wa-float {
  border: 0;
  animation: wa-float-motion 2.8s ease-in-out infinite;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(37,211,102,.42);
  border-radius: 50%;
  animation: wa-ring 2s ease-out infinite;
  pointer-events: none;
}
.wa-float.is-open { animation-play-state: paused; }
@keyframes wa-float-motion {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wa-ring {
  0% { opacity: .8; transform: scale(.82); }
  75%, 100% { opacity: 0; transform: scale(1.28); }
}
.wa-chatbox {
  position: fixed;
  z-index: 950;
  right: 24px;
  bottom: 92px;
  width: min(360px, calc(100vw - 30px));
  overflow: hidden;
  border-radius: 18px;
  background: #efeae2;
  box-shadow: 0 20px 65px rgba(0,0,0,.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.97);
  transform-origin: right bottom;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.wa-chatbox.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-chatbox__header { min-height: 68px; display: flex; align-items: center; gap: 10px; padding: 11px 12px; background: #075e54; color: #fff; }
.wa-chatbox__avatar { width: 43px; height: 43px; flex: 0 0 43px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #fff; }
.wa-chatbox__avatar img { width: 37px; height: 37px; object-fit: contain; }
.wa-chatbox__identity { min-width: 0; display: grid; }
.wa-chatbox__identity strong { font-size: .88rem; }
.wa-chatbox__identity span { color: rgba(255,255,255,.8); font-size: .68rem; }
.wa-chatbox__close { width: 35px; height: 35px; margin-left: auto; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.wa-chatbox__close svg { width: 19px; height: 19px; fill: currentColor; }
.wa-chatbox__body {
  min-height: 180px;
  padding: 19px 15px 22px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(7,94,84,.055) 1px, transparent 1px);
  background-size: 17px 17px;
}
.wa-message { position: relative; width: min(88%, 275px); padding: 9px 10px 7px; border-radius: 4px 12px 12px 12px; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.wa-message::before { content: ''; position: absolute; top: 0; left: -8px; border-top: 9px solid #fff; border-left: 9px solid transparent; }
.wa-message span { display: block; margin-bottom: 3px; color: #128c7e; font-size: .65rem; font-weight: 800; }
.wa-message p { margin: 0; color: #202c33; font-size: .78rem; line-height: 1.45; }
.wa-message small { display: block; margin-top: 4px; color: #829199; font-size: .59rem; text-align: right; }
.wa-chatbox__form { display: grid; grid-template-columns: 1fr 43px; gap: 8px; padding: 10px; background: #f0f2f5; }
.wa-chatbox__form input { min-width: 0; height: 42px; padding: 0 15px; border: 1px solid transparent; border-radius: 999px; outline: 0; background: #fff; color: #202c33; font-size: .78rem; }
.wa-chatbox__form.has-error input { border-color: #d94a4a; animation: wa-shake .2s linear 2; }
.wa-chatbox__form button { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #00a884; color: #fff; }
.wa-chatbox__form button svg { width: 20px; height: 20px; fill: currentColor; }
@keyframes wa-shake { 50% { transform: translateX(3px); } }

@media (max-width: 600px) {
  /* Keep every mobile slide locked to the same landscape frame. */
  .hero-stage {
    min-height: 0;
    height: auto !important;
    aspect-ratio: 16 / 9;
    transition: none;
  }
  .hero-slide {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  .hero-slide__image { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-mobile-copy { display: none; }
  .hero-dots { bottom: 12px; }

  .brand img { width: 132px; height: 39px; }
  .nav-actions { gap: 7px; }
  .cart-button { width: 40px; height: 40px; flex-basis: 40px; border-radius: 11px; }
  .cart-button svg { width: 20px; height: 20px; }
  .menu-button { width: 40px; height: 40px; }
  .cart-count { top: -5px; right: -5px; min-width: 18px; height: 18px; font-size: .56rem; }

  .footer-brand { width: 118px; padding: 7px 8px; }
  .footer-desc, .footer-col li, .footer-col a, .footer-bottom, .footer-badge { color: #fff; }

  .cart-drawer { width: min(94vw, 410px); }
  .cart-drawer__header { padding: 16px 15px 14px; }
  .cart-drawer__body { padding: 7px 15px 18px; }
  .cart-drawer__footer { padding: 15px; }
  .cart-item { grid-template-columns: 72px 1fr; gap: 10px; }
  .cart-item__image { width: 72px; height: 72px; }
  .cart-item__name { font-size: .76rem; }

  .wa-chatbox { right: 15px; bottom: 80px; width: calc(100vw - 30px); }
  .wa-chatbox__body { min-height: 160px; }
}
