:root {
  --navy: #0b1f3a;
  --navy-light: #142b52;
  --gold: #f5b400;
  --gold-dark: #d99e00;
  --red: #d62828;
  --ink: #10141c;
  --ink-soft: #4a5468;
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --border: #e3e7ee;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(11, 31, 58, 0.18);
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin: 0 0 12px;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-size: 0.82rem;
  margin: 0 0 8px;
}
.eyebrow--light { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-mark { color: var(--navy); }
.brand-mark--accent { color: var(--gold-dark); }
.brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  align-self: center;
}

.main-nav { display: flex; gap: 22px; flex-shrink: 0; }
.main-nav a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.account-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  white-space: nowrap;
}
.account-btn:hover { border-color: var(--gold); }

.account-tabs { display: flex; gap: 6px; padding: 0 24px; margin-bottom: 18px; }
.account-tab {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.account-tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
#account-login-form, #account-signup-form { padding: 0 24px 20px; }
#account-logged-in { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 12px; }
.account-welcome { color: var(--ink-soft); }
.account-orders-link, .account-logout-btn { width: 100%; justify-content: center; }

.cat-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-menu-btn:hover { background: var(--navy-light); }

.cat-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}
.cat-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.cat-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 91;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  box-shadow: 20px 0 40px -20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.cat-menu-panel.is-open { transform: translateX(0); }

.cat-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cat-menu-head h3 { margin: 0; font-size: 1.3rem; }
.cat-menu-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}
.cat-menu-label {
  margin: 18px 24px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cat-menu-list { padding: 0 8px 16px; list-style: none; margin: 0; }
.cat-menu-item { border-bottom: 1px solid var(--border); }

.cat-menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}
.cat-menu-toggle:hover { background: var(--bg-alt); }
.cat-menu-toggle span { color: var(--gold-dark); font-size: 1.2rem; transition: transform 0.2s ease; }
.cat-menu-item.is-open .cat-menu-toggle span { transform: rotate(90deg); }

.cat-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.cat-menu-item.is-open .cat-submenu { max-height: 600px; }
.cat-submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.cat-submenu a:hover { background: var(--bg-alt); color: var(--navy); }
.cat-submenu li:first-child a { font-weight: 700; color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-dark); }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; padding: 10px 18px; }
.btn--whatsapp:hover { background: #1ebe5b; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 88px 0 70px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 140% at 100% 0%, rgba(22,48,90,0.88) 0%, rgba(11,31,58,0.92) 55%, rgba(11,31,58,0.95) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold); }
.hero .btn--outline { border-color: #fff; color: #fff; }
.hero .btn--outline:hover { background: #fff; color: var(--navy); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.08;
  max-width: 16ch;
}
.hero-text {
  color: #c7d1e3;
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: #c7d1e3;
  font-size: 0.9rem;
}
.hero-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.3rem;
}
.hero-visual { display: flex; justify-content: center; }
.hero-badge {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-align: center;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4);
}

/* Promo carousel */
.promo-carousel {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.promo-track {
  display: flex;
  transition: transform 0.5s ease;
}
.promo-slide {
  flex: 0 0 100%;
  position: relative;
  height: min(560px, 82vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease;
}
.promo-arrow:hover { background: rgba(255,255,255,0.3); }
.promo-arrow--prev { left: 16px; }
.promo-arrow--next { right: 16px; }

.promo-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}
.promo-dot.is-active { background: var(--gold); width: 22px; border-radius: 4px; }

@media (max-width: 760px) {
  .promo-slide { height: 82vw; }
  .promo-arrow { display: none; }
}

/* Strip */
.strip { background: var(--navy-light); }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 16px 24px;
  color: #dfe6f2;
  font-size: 0.88rem;
}
.strip-item strong { color: var(--gold); }

/* Trust bar */
.trust-bar { padding: 0 0 24px; }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-right: 1px solid var(--border);
  color: var(--navy);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; color: var(--gold-dark); }
.trust-item strong { display: block; font-size: 0.92rem; }
.trust-item span { display: block; font-size: 0.8rem; color: var(--ink-soft); }
.trust-item--link { transition: background 0.15s ease; }
.trust-item--link:hover { background: var(--bg-alt); }

/* Sections */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--navy); color: #dfe6f2; }
.section--dark h2 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.cat-icon { font-size: 1.9rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.cat-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: 0.92rem; }
.cat-card-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.cat-card-btn:hover { color: var(--gold-dark); }

/* Enhanced state when a real product photo is available (added via JS) */
.cat-card.has-photo {
  min-height: 260px;
  justify-content: flex-end;
  padding: 22px;
  background-color: var(--navy);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 30%;
  color: #fff;
  overflow: hidden;
  border-color: transparent;
}
.cat-card.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0) 0%, rgba(11,31,58,0.35) 55%, rgba(11,31,58,0.92) 100%);
  z-index: 0;
}
.cat-card.has-photo .cat-icon,
.cat-card.has-photo p { display: none; }
.cat-card.has-photo h3,
.cat-card.has-photo .cat-card-btn { position: relative; z-index: 1; }
.cat-card.has-photo h3 { color: #fff; font-size: 1.3rem; }
.cat-card.has-photo .cat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  margin-top: 8px;
}
.cat-card.has-photo .cat-card-btn:hover { background: #fff; color: var(--navy); }
.cat-note { margin-top: 32px; color: var(--ink-soft); }
.cat-note a { color: var(--red); font-weight: 700; }

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.benefit h3 { font-size: 1.1rem; }
.benefit p { color: var(--ink-soft); margin: 0; font-size: 0.92rem; }

/* About */
.about-inner { max-width: 760px; }
.about-copy p { color: #c7d1e3; font-size: 1.05rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  display: block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-icon { color: var(--navy); margin-bottom: 14px; }
.contact-card--whatsapp .contact-icon { color: #25d366; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-card p { margin: 0; color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--navy); color: #9fb0cf; padding: 56px 0 0; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-mark { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.footer-brand-col p { margin: 10px 0 0; font-size: 0.85rem; line-height: 1.6; max-width: 32ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { font-size: 0.85rem; color: #9fb0cf; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0; }
.footer-copy { font-size: 0.85rem; margin: 0; }
.footer-credit {
  text-align: center;
  font-size: 0.78rem;
  color: #6f80a0;
  margin: 18px 24px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.55);
  z-index: 60;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 960px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--border); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-badge { width: 160px; height: 160px; font-size: 0.95rem; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .btn--whatsapp span { display: none; }
  .btn--whatsapp { padding: 10px; }
  .account-btn span { display: none; }
  .account-btn { padding: 9px; }
  .cat-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
