/* ═══════════════════════════════════════════════════════
   SEAFOOD MARINE SDN BHD – MAIN STYLESHEET
   Premium Ocean Theme · Malaysia Edition
═══════════════════════════════════════════════════════ */

/* ──────────────────────────────
   CSS CUSTOM PROPERTIES
────────────────────────────── */
:root {
  /* Ocean colour palette */
  --ocean-900:  #012a4a;
  --ocean-800:  #013a63;
  --ocean-700:  #01497c;
  --ocean-600:  #014f86;
  --ocean-500:  #2a6f97;
  --ocean-400:  #2196f3;
  --ocean-300:  #48cae4;
  --ocean-200:  #90e0ef;
  --ocean-100:  #caf0f8;
  --ocean-50:   #e0f7fa;

  /* Accent & functional */
  --teal:       #00b4d8;
  --teal-dark:  #0096c7;
  --gold:       #ffd166;
  --gold-dark:  #f4a261;
  --wa-green:   #25D366;
  --wa-dark:    #128C7E;
  --red-fresh:  #ef233c;
  --blue-cold:  #4361ee;

  /* Neutral */
  --white:      #ffffff;
  --bg-page:    #f0f7ff;
  --bg-card:    #ffffff;
  --text-h:     #012a4a;
  --text-body:  #344e66;
  --text-muted: #6b8cae;
  --border:     #d0e8f5;

  /* Design tokens */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
  --r-full:999px;

  --sh-sm:  0 2px 10px rgba(1,42,74,.07);
  --sh-md:  0 8px 32px rgba(1,42,74,.12);
  --sh-lg:  0 20px 60px rgba(1,42,74,.18);
  --sh-xl:  0 32px 80px rgba(1,42,74,.24);

  --t: all .3s ease;
  --font: 'Poppins', sans-serif;

  --nav-h: 90px;
}

/* ──────────────────────────────
   RESET & BASE
────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text-body); background: var(--bg-page); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); border: none; background: none; cursor: pointer; }
input, textarea { font-family: var(--font); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ──────────────────────────────
   REUSABLE COMPONENTS
────────────────────────────── */
/* Section header */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--text-h); margin-bottom: 12px; line-height: 1.2; }
.section-header p { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

.sec-badge {
  display: inline-block;
  background: var(--ocean-50);
  color: var(--ocean-600);
  border: 1px solid var(--ocean-200);
  padding: 5px 18px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ocean-600); color: var(--white);
  padding: 13px 28px; border-radius: var(--r-full);
  font-size: .93rem; font-weight: 700;
  transition: var(--t);
  box-shadow: 0 6px 20px rgba(1,79,134,.28);
}
.btn-primary:hover { background: var(--ocean-700); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(1,79,134,.35); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,.6); color: var(--white);
  padding: 12px 28px; border-radius: var(--r-full);
  font-size: .93rem; font-weight: 600;
  transition: var(--t);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ──────────────────────────────
   ANNOUNCEMENT BAR
────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1001;
  transition: all .3s ease;
}
.announcement-bar.hidden { display: none; }
.ann-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.ann-inner i { color: var(--ocean-200); margin-right: 4px; }
.ann-inner strong { color: var(--white); }
.ann-divider { color: rgba(255,255,255,.25); }
.ann-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.5); font-size: .85rem; transition: var(--t); padding: 4px 8px; }
.ann-close:hover { color: var(--white); }

/* ──────────────────────────────
   NAVBAR
────────────────────────────── */
.navbar {
  position: sticky; top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,180,216,.12);
  z-index: 1000;
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: var(--sh-md); }

.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

/* Company logo image – navbar */
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--r-sm);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-logo:hover .logo-img { opacity: .88; transform: scale(1.03); }

/* Footer logo – slightly larger & inverted for dark bg */
.logo-img-footer {
  height: 85px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-logo:hover .logo-img-footer { opacity: 1; }

/* Nav links */
.nav-links { display: flex; gap: 6px; margin-left: auto; }
.nav-link {
  padding: 7px 14px; border-radius: var(--r-full);
  font-size: .87rem; font-weight: 500; color: var(--text-body);
  transition: var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: var(--ocean-50); color: var(--ocean-600); }

/* WhatsApp nav btn */
.btn-wa-nav {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: var(--white);
  padding: 9px 20px; border-radius: var(--r-full);
  font-size: .87rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa-nav:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ocean-800); border-radius: 2px; transition: var(--t); }

/* ──────────────────────────────
   HERO SECTION
────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--ocean-700) 45%, var(--teal-dark) 100%);
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 80px 24px 120px;
}

/* Animated bubbles */
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubbles span {
  position: absolute; bottom: -100px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  animation: rise linear infinite;
}
.bubbles span:nth-child(1)  { width:60px;  height:60px;  left:8%;   animation-duration:14s; animation-delay:0s; }
.bubbles span:nth-child(2)  { width:30px;  height:30px;  left:20%;  animation-duration:10s; animation-delay:3s; }
.bubbles span:nth-child(3)  { width:90px;  height:90px;  left:35%;  animation-duration:18s; animation-delay:1s; }
.bubbles span:nth-child(4)  { width:45px;  height:45px;  left:55%;  animation-duration:12s; animation-delay:5s; }
.bubbles span:nth-child(5)  { width:20px;  height:20px;  left:68%;  animation-duration:9s;  animation-delay:2s; }
.bubbles span:nth-child(6)  { width:70px;  height:70px;  left:77%;  animation-duration:16s; animation-delay:4s; }
.bubbles span:nth-child(7)  { width:35px;  height:35px;  left:90%;  animation-duration:11s; animation-delay:0.5s; }
.bubbles span:nth-child(8)  { width:50px;  height:50px;  left:44%;  animation-duration:13s; animation-delay:6s; }

@keyframes rise {
  0%   { transform: translateY(0) scale(1);   opacity:.6; }
  100% { transform: translateY(-110vh) scale(1.2); opacity:0; }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 2;
}

/* Hero content */
.hero-content { flex: 1; max-width: 580px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--ocean-100); padding: 6px 16px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.hero-tag i { color: var(--gold); }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900; color: var(--white);
  line-height: 1.12; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-accent {
  background: linear-gradient(90deg, var(--ocean-200), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc { font-size: 1rem; color: rgba(255,255,255,.78); margin-bottom: 30px; line-height: 1.72; max-width: 500px; }

/* Hero pills */
.hero-pills { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: var(--white); padding: 8px 14px; border-radius: var(--r-full);
  font-size: .83rem; font-weight: 600; backdrop-filter: blur(6px);
  transition: var(--t);
}
.pill:hover { background: rgba(255,255,255,.18); }
.pill img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* Trust badges */
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-item {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 500;
}
.trust-item i { color: var(--gold); font-size: .85rem; }

/* Hero visual */
.hero-visual { flex: 0 0 440px; position: relative; }
.hero-img-ring {
  position: relative;
  padding: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  backdrop-filter: blur(8px);
}
.hero-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--sh-xl);
}

/* Floating cards */
.hero-float-card {
  position: absolute;
  background: var(--white); border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--sh-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.4rem; }
.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-size: .9rem; color: var(--text-h); font-weight: 700; line-height: 1.2; }
.hero-float-card small  { font-size: .72rem; color: var(--text-muted); }

.card-1 { bottom: -20px; left: -20px; }
.card-1 i { color: var(--gold-dark); }
.card-2 { top: -16px; right: -16px; animation-delay: 1.8s; }
.card-2 i { color: var(--ocean-500); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Wave */
.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.wave-divider svg { display: block; width: 100%; }

/* ──────────────────────────────
   STATS STRIP
────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-num {
  display: block; font-size: 2rem; font-weight: 900; color: var(--ocean-600);
  line-height: 1;
}
.stat-num span { font-size: 1.4rem; color: var(--teal); }
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.stat-sep { width: 1px; height: 44px; background: var(--border); }

/* ──────────────────────────────
   BANNER CARDS
────────────────────────────── */
.banner-cards { padding: 60px 0 0; background: var(--bg-page); }
.banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.banner-card {
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex; align-items: center; gap: 28px;
  overflow: hidden; position: relative;
  min-height: 220px;
  box-shadow: var(--sh-md);
  transition: var(--t);
}
.banner-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.bc-prawn {
  background: linear-gradient(120deg, var(--ocean-900) 0%, var(--ocean-700) 60%, #01497c 100%);
}
.bc-frozen {
  background: linear-gradient(120deg, #1565c0 0%, #1976d2 50%, var(--teal-dark) 100%);
}

.bc-content { flex: 1; z-index: 1; }
.bc-tag {
  display: inline-block; background: var(--gold); color: var(--ocean-900);
  padding: 3px 12px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 10px;
}
.bc-tag-ice { background: var(--ocean-200); color: var(--ocean-800); }

.bc-content h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.bc-content p  { font-size: .88rem; color: rgba(255,255,255,.78); margin-bottom: 20px; line-height: 1.6; }

.bc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ocean-700);
  padding: 10px 22px; border-radius: var(--r-full);
  font-size: .87rem; font-weight: 700;
  transition: var(--t);
}
.bc-btn:hover { background: var(--ocean-50); transform: translateX(4px); }

.bc-img {
  flex: 0 0 200px; height: 160px; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-lg);
}
.bc-img img { width: 100%; height: 100%; object-fit: cover; }

/* ──────────────────────────────
   WHY US
────────────────────────────── */
.why-us { padding: 80px 0; background: var(--bg-page); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px 24px;
  text-align: center; border: 1px solid var(--border);
  box-shadow: var(--sh-sm); transition: var(--t);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--ocean-200); }

.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--ocean-50); color: var(--ocean-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
  transition: var(--t);
}
.why-card:hover .why-icon { background: var(--ocean-600); color: var(--white); transform: scale(1.1) rotate(-6deg); }

.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-h); margin-bottom: 8px; }
.why-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ──────────────────────────────
   PRODUCTS SECTION
────────────────────────────── */
.products { padding: 80px 0; background: var(--white); }

/* Filter */
.prod-filter {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.pf-btn {
  padding: 10px 26px; border-radius: var(--r-full);
  font-size: .88rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--text-muted);
  background: var(--white); transition: var(--t); cursor: pointer;
}
.pf-btn:hover, .pf-btn.active {
  border-color: var(--ocean-600); background: var(--ocean-600); color: var(--white);
  box-shadow: 0 4px 16px rgba(1,79,134,.25); transform: translateY(-2px);
}

/* Product grid */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Product card */
.prod-card {
  background: var(--bg-card); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--t);
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--ocean-200); }
.prod-card.hidden { display: none; }

/* Product image */
.prod-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--ocean-50);
}
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.07); }

/* Product tags */
.prod-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; z-index: 2;
}
.tag-fresh   { background: #fce4e8; color: #c62828; }
.tag-best    { background: #fff3cd; color: #856404; }
.tag-frozen  { background: #dde8ff; color: #1a56db; }
.tag-new     { background: #d1f5d3; color: #1a7431; }

.prod-tag-halal {
  position: absolute; top: 12px; right: 12px;
  background: #1a7431; color: var(--white);
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; z-index: 2;
}

/* Hover overlay CTA */
.prod-hover-cta {
  position: absolute; inset: 0;
  background: rgba(1,42,74,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
  backdrop-filter: blur(3px);
}
.prod-card:hover .prod-hover-cta { opacity: 1; }

.phc-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa-green); color: var(--white);
  padding: 12px 24px; border-radius: var(--r-full);
  font-size: .9rem; font-weight: 700;
  transform: translateY(12px); opacity: 0;
  transition: all .3s ease .1s;
  cursor: pointer;
}
.prod-card:hover .phc-btn { transform: translateY(0); opacity: 1; }
.phc-btn:hover { background: var(--wa-dark); transform: scale(1.05) !important; }

/* Product body */
.prod-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.prod-cat-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.prod-cat { font-size: .75rem; font-weight: 700; color: var(--ocean-500); text-transform: uppercase; letter-spacing: .05em; }

.prod-type {
  font-size: .7rem; font-weight: 700; padding: 2px 10px; border-radius: var(--r-full);
}
.fresh-dot  { background: #fce4e8; color: #c62828; }
.frozen-dot { background: #dde8ff; color: #1a56db; }

.prod-name { font-size: 1.05rem; font-weight: 700; color: var(--text-h); margin-bottom: 8px; line-height: 1.3; }
.prod-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }

/* Specs */
.prod-specs { margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.prod-specs li { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--text-body); }
.prod-specs li i { color: var(--ocean-400); width: 14px; flex-shrink: 0; }

/* Footer */
.prod-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.prod-price { display: flex; align-items: baseline; gap: 4px; }
.price-main { font-size: 1.3rem; font-weight: 900; color: var(--ocean-700); }
.price-unit { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

.btn-order-wa {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa-green); color: var(--white);
  padding: 9px 18px; border-radius: var(--r-full);
  font-size: .84rem; font-weight: 700; cursor: pointer;
  transition: var(--t);
  border: none;
}
.btn-order-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 5px 16px rgba(37,211,102,.35); }

/* CTN notice banner */
.ctn-notice {
  display: flex; align-items: center; gap: 12px;
  background: var(--ocean-50); border: 1px solid var(--ocean-200);
  border-radius: var(--r-md); padding: 14px 20px;
  margin-bottom: 32px;
  font-size: .9rem; color: var(--text-body);
}
.ctn-notice i { color: var(--ocean-500); font-size: 1.1rem; flex-shrink: 0; }
.ctn-notice strong { color: var(--ocean-700); }

/* Wide card spanning full row */
.prod-card-wide { grid-column: 1 / -1; flex-direction: row; gap: 0; }
.prod-card-wide .prod-img-wrap { flex: 0 0 340px; aspect-ratio: unset; min-height: 320px; }
.prod-card-wide .prod-body { flex: 1; padding: 28px; }

/* Product specs block (replaces .prod-specs ul) */
.prod-specs-block {
  margin-bottom: 16px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; font-size: .83rem;
}
.spec-row {
  display: grid; grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0; padding: 9px 14px;
  border-bottom: 1px solid var(--border);
}
.spec-row:last-child { border-bottom: none; }
.spec-header {
  background: var(--ocean-800); color: var(--white);
  font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em;
}
.spec-row i { color: var(--ocean-400); margin-right: 5px; }
.spec-sizes { display: flex; flex-wrap: wrap; gap: 5px; }
.size-badge {
  background: var(--ocean-100); color: var(--ocean-800);
  border: 1px solid var(--ocean-200);
  padding: 2px 10px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700;
}

/* HOSO size pills */
.hoso-sizes {
  margin-bottom: 16px;
}
.hoso-size-header {
  display: block;
  padding: 7px 12px;
  background: var(--ocean-800); color: var(--white);
  font-weight: 700; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .05em; border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.hoso-size-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 12px;
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: var(--ocean-50);
}
.hoso-pill {
  display: inline-block;
  padding: 5px 14px;
  background: var(--white);
  border: 1.5px solid var(--ocean-300);
  border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  color: var(--ocean-700);
}

/* Product footer for CTN (no price, just label + button) */
.prod-footer-ctn {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto;
  gap: 12px; flex-wrap: wrap;
}
.ctn-label {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 700; color: var(--ocean-600);
  background: var(--ocean-50); border: 1px solid var(--ocean-200);
  padding: 6px 14px; border-radius: var(--r-full);
}
.ctn-label i { color: var(--ocean-500); }

/* Delivery summary table */
.delivery-summary { margin-top: 52px; margin-bottom: 52px; }
.delivery-summary h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-h); margin-bottom: 20px; text-align: center; }
.del-table { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.del-table-head {
  display: grid; grid-template-columns: 1.5fr 2fr 1.2fr 2fr;
  padding: 13px 20px;
  background: var(--ocean-800); color: var(--white);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.del-table-row {
  display: grid; grid-template-columns: 1.5fr 2fr 1.2fr 2fr;
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  font-size: .87rem; color: var(--text-body); transition: background .2s;
  align-items: center;
}
.del-table-row:last-child { border-bottom: none; }
.del-table-row:hover { background: var(--ocean-50); }
.del-table-row i { color: var(--ocean-500); margin-right: 6px; }
.del-speed { font-weight: 700; }
.del-speed.green { color: #16a34a; }
.del-speed.blue  { color: var(--ocean-500); }

/* Highlighted delivery info row */
.ddi-highlight {
  background: var(--ocean-50); border-radius: var(--r-sm);
  padding: 7px 10px !important;
  border: 1px solid var(--ocean-200); margin-bottom: 4px;
}
.ddi-highlight i { color: var(--gold-dark) !important; }
.ddi-highlight strong { color: var(--ocean-700); }

/* Hero pills icon variant */
.pill i { color: var(--ocean-200); font-size: .9rem; }

/* Wholesale CTA */
.wholesale-cta {
  margin-top: 52px;
  background: linear-gradient(120deg, var(--ocean-900), var(--ocean-700));
  border-radius: var(--r-xl); padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; box-shadow: var(--sh-lg);
}
.wc-text { display: flex; align-items: center; gap: 16px; color: var(--white); }
.wc-text i { font-size: 1.8rem; color: var(--ocean-200); flex-shrink: 0; }
.wc-text strong { display: block; font-size: 1.05rem; font-weight: 700; }
.wc-text span   { font-size: .87rem; color: rgba(255,255,255,.7); }

.btn-wa-wholesale {
  display: flex; align-items: center; gap: 9px;
  background: var(--wa-green); color: var(--white);
  padding: 13px 28px; border-radius: var(--r-full);
  font-size: .9rem; font-weight: 700;
  transition: var(--t); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-wa-wholesale:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); }

/* ──────────────────────────────
   ABOUT US
────────────────────────────── */
.about { padding: 80px 0; background: var(--bg-page); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Image side */
.about-img-stack { position: relative; }
.about-main-img {
  width: 100%; border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); aspect-ratio: 4/3; object-fit: cover;
}
.about-since-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--ocean-700); color: var(--white);
  border-radius: var(--r-lg); padding: 20px 24px;
  text-align: center; box-shadow: var(--sh-lg);
}
.since-year { display: block; font-size: .75rem; font-weight: 600; opacity: .8; }
.since-num  { display: block; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.since-text { display: block; font-size: .72rem; opacity: .75; margin-top: 2px; }

/* Text side */
.about-text-side h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--text-h); margin-bottom: 14px; line-height: 1.2; }
.about-lead { font-size: 1.05rem; color: var(--text-body); font-weight: 500; margin-bottom: 16px; line-height: 1.72; }
.about-text-side p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

.about-vals { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.aval {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px;
  transition: var(--t);
}
.aval:hover { border-color: var(--ocean-300); box-shadow: var(--sh-sm); }
.aval i { color: var(--ocean-500); font-size: 1rem; width: 20px; flex-shrink: 0; }
.aval span { font-size: .87rem; color: var(--text-body); font-weight: 500; }

/* ──────────────────────────────
   DELIVERY SECTION
────────────────────────────── */
.delivery { padding: 80px 0; background: var(--white); }

.delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }

.del-zone-card {
  border-radius: var(--r-lg); border: 1px solid var(--border);
  overflow: hidden; box-shadow: var(--sh-sm); transition: var(--t);
}
.del-zone-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.dz-header {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--ocean-800);
}
.dz-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.dz-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.dz-badge {
  display: inline-block; background: var(--wa-green); color: var(--white);
  padding: 2px 10px; border-radius: var(--r-full); font-size: .7rem; font-weight: 700;
}
.dz-badge-blue { background: var(--teal); }

.dz-list { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.dz-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--text-body); padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.dz-list li:last-child { border-bottom: none; }
.dz-list li i { color: var(--teal); margin-top: 3px; flex-shrink: 0; }

.dz-delivery-info { padding: 16px 24px; background: var(--ocean-50); }
.ddi { display: flex; align-items: flex-start; gap: 9px; font-size: .82rem; color: var(--text-body); padding: 5px 0; }
.ddi i { color: var(--ocean-500); margin-top: 2px; flex-shrink: 0; }

/* Order Steps */
.order-steps { text-align: center; }
.order-steps h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-h); margin-bottom: 36px; }

.steps-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; max-width: 160px; position: relative;
}
.step-num {
  position: absolute; top: -12px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ocean-600); color: var(--white);
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(1,79,134,.3);
}
.step-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--ocean-50); color: var(--ocean-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 2px solid var(--border);
}
.step-item:nth-child(4) .step-icon { background: #d1f5d3; color: var(--wa-dark); border-color: var(--wa-green); }

.step-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-h); text-align: center; }
.step-text span   { display: block; font-size: .78rem; color: var(--text-muted); text-align: center; }

.step-line { flex: 1; min-width: 40px; height: 2px; background: var(--border); margin: 0 8px; margin-top: -32px; }

/* ──────────────────────────────
   TESTIMONIALS
────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
}
.light-header h2 { color: var(--white) !important; }
.light-header p   { color: rgba(255,255,255,.7) !important; }
.sec-badge-light  { background: rgba(255,255,255,.12) !important; color: var(--ocean-100) !important; border-color: rgba(255,255,255,.2) !important; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 28px;
  backdrop-filter: blur(8px); transition: var(--t);
}
.testi-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }

.testi-stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: .9rem; color: rgba(255,255,255,.82); line-height: 1.7; font-style: italic; margin-bottom: 20px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ocean-500), var(--teal));
  color: var(--white); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--white); }
.testi-author small  { display: block; font-size: .76rem; color: rgba(255,255,255,.55); }

/* ──────────────────────────────
   CONTACT SECTION
────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--bg-page); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Info side */
.contact-info h2  { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--text-h); margin-bottom: 12px; }
.contact-info > p { font-size: .95rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ci-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 20px;
  transition: var(--t);
}
.ci-item:hover { border-color: var(--ocean-300); box-shadow: var(--sh-sm); }
.ci-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--ocean-50); color: var(--ocean-600);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ci-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--text-h); margin-bottom: 2px; }
.ci-item span   { font-size: .87rem; color: var(--text-muted); }

/* Payment methods */
.pm-label { font-size: .8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.pm-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--r-full); font-size: .8rem;
  color: var(--text-body); font-weight: 600;
}
.pm-badge i { color: var(--ocean-500); }

/* CTA card */
.contact-cta-card {
  position: sticky; top: calc(var(--nav-h) + 16px);
}
.cta-card-inner {
  background: var(--ocean-800);
  border-radius: var(--r-xl); padding: 40px;
  text-align: center; box-shadow: var(--sh-xl);
}
.cta-wa-icon { font-size: 3rem; color: var(--wa-green); margin-bottom: 16px; }

.cta-card-inner h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-card-inner p  { font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: 28px; line-height: 1.65; }

.btn-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--wa-green); color: var(--white);
  padding: 18px 36px; border-radius: var(--r-full);
  transition: var(--t); width: 100%;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
}
.btn-wa-big:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,.45); }
.btn-wa-big i { font-size: 1.6rem; }
.btn-wa-big strong { display: block; font-size: 1rem; font-weight: 700; }
.btn-wa-big small  { display: block; font-size: .76rem; opacity: .8; }

.cta-note {
  margin-top: 16px; font-size: .8rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 8px; justify-content: center;
}
.cta-note i { color: var(--gold); }

.social-row { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.social-row span { font-size: .82rem; color: rgba(255,255,255,.5); }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; border: 1px solid rgba(255,255,255,.15);
  transition: var(--t);
}
.social-row a:hover { background: var(--ocean-500); color: var(--white); transform: translateY(-2px); }

/* ──────────────────────────────
   FOOTER
────────────────────────────── */
.footer { background: var(--ocean-900); padding: 64px 0 0; color: rgba(255,255,255,.65); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }

.footer-brand p { font-size: .87rem; line-height: 1.7; margin: 14px 0 18px; }

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  padding: 4px 12px; border-radius: var(--r-full); font-size: .74rem; font-weight: 600;
}
.footer-badges span i { color: var(--ocean-300); }

.footer-col h5 {
  font-size: .88rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.55);
  transition: var(--t); display: inline-block;
}
.footer-col ul li a:hover { color: var(--ocean-200); padding-left: 4px; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; padding: 4px 0; }
.footer-contact-list li i { color: var(--teal); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom i { color: #ef4444; }

/* ──────────────────────────────
   FLOATING WHATSAPP BUTTON
────────────────────────────── */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa-green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transition: var(--t);
  animation: wa-pulse 3s ease-in-out infinite;
}
.fab-wa:hover { background: var(--wa-dark); transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,.6); }

.fab-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--ocean-900); color: var(--white);
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
  font-family: var(--font);
}
.fab-tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: var(--ocean-900);
}
.fab-wa:hover .fab-tooltip { opacity: 1; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.55); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,.8), 0 0 0 14px rgba(37,211,102,.08); }
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed; bottom: 104px; right: 30px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ocean-700); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  box-shadow: var(--sh-md); transition: var(--t);
  opacity: 0; pointer-events: none; transform: translateY(8px);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top-btn:hover   { background: var(--ocean-800); transform: translateY(-3px); }

/* ──────────────────────────────
   ORDER MODAL
────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(1,42,74,.65);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(6px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; max-width: 480px; width: 100%;
  position: relative; box-shadow: var(--sh-xl);
  transform: scale(.92) translateY(20px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-page); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--t);
}
.modal-close:hover { background: var(--ocean-50); color: var(--ocean-700); }

.modal-wa-icon { font-size: 2.8rem; color: var(--wa-green); text-align: center; margin-bottom: 12px; }
.modal-title  { font-size: 1.3rem; font-weight: 800; color: var(--text-h); text-align: center; margin-bottom: 6px; }
.modal-sub    { font-size: .88rem; color: var(--text-muted); text-align: center; margin-bottom: 16px; }

.modal-product-info {
  background: var(--ocean-50); border: 1px solid var(--ocean-200);
  border-radius: var(--r-md); padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px;
  text-align: center;
}
.mpn { font-size: 1.05rem; font-weight: 700; color: var(--ocean-700); }
.mpp { font-size: .9rem;  color: var(--text-muted); font-weight: 600; }

/* Quantity control */
.modal-qty-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.modal-qty-row label { font-size: .88rem; font-weight: 600; color: var(--text-body); flex-shrink: 0; }
.qty-ctrl { display: flex; align-items: center; gap: 0; border: 2px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.qty-btn {
  width: 36px; height: 36px; background: var(--ocean-50); color: var(--ocean-700);
  font-size: 1.1rem; font-weight: 700; transition: var(--t); cursor: pointer; border: none;
}
.qty-btn:hover { background: var(--ocean-600); color: var(--white); }
#modalQty {
  width: 48px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  font-size: .95rem; font-weight: 700; color: var(--text-h); padding: 6px 0; height: 36px; background: var(--white);
  outline: none;
}
.qty-unit { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.modal-note {
  width: 100%; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 12px 16px; font-size: .88rem; color: var(--text-body);
  resize: vertical; outline: none; margin-bottom: 20px;
  transition: border-color .25s;
}
.modal-note:focus { border-color: var(--ocean-400); }

.modal-btns { display: flex; gap: 12px; }
.mbtn-cancel {
  flex: 1; padding: 13px; border-radius: var(--r-full);
  border: 2px solid var(--border); color: var(--text-muted);
  font-size: .9rem; font-weight: 600; cursor: pointer; transition: var(--t);
  font-family: var(--font);
}
.mbtn-cancel:hover { border-color: var(--text-muted); }
.mbtn-confirm {
  flex: 2; padding: 13px; border-radius: var(--r-full);
  background: var(--wa-green); color: var(--white);
  font-size: .93rem; font-weight: 700; cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.mbtn-confirm:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* ──────────────────────────────
   SCROLL ANIMATIONS
────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
[data-aos][data-delay="100"] { transition-delay: .1s; }
[data-aos][data-delay="200"] { transition-delay: .2s; }
[data-aos][data-delay="300"] { transition-delay: .3s; }
[data-aos][data-delay="400"] { transition-delay: .4s; }
[data-aos][data-delay="500"] { transition-delay: .5s; }

/* ──────────────────────────────
   RESPONSIVE — 1024px
────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { flex: 0 0 360px; }
  .prod-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid  { grid-template-columns: 1fr; gap: 40px; }
  .about-img-side { max-width: 600px; margin: 0 auto; }
  .delivery-grid  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .contact-cta-card { position: static; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────────────────
   RESPONSIVE — 768px
────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 4px;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); padding: 20px 24px 28px;
    box-shadow: var(--sh-lg); border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open .nav-link { padding: 11px 16px; font-size: .95rem; border-radius: var(--r-md); }

  .hamburger { display: flex; }
  .btn-wa-nav span { display: none; }
  .btn-wa-nav { padding: 9px 14px; }

  .hero { padding: 60px 24px 100px; }
  .hero-inner { flex-direction: column; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-pills, .hero-cta-row, .trust-row { justify-content: center; }
  .hero-desc { max-width: 100%; }
  .hero-visual { flex: unset; width: 100%; max-width: 400px; margin: 0 auto; }
  .card-1 { display: none; }

  .banner-grid { grid-template-columns: 1fr; }
  .banner-card { flex-direction: column; gap: 20px; padding: 28px; }
  .bc-img { flex: unset; width: 100%; height: 200px; border-radius: var(--r-md); }

  .prod-card-wide { grid-column: unset; flex-direction: column; }
  .prod-card-wide .prod-img-wrap { flex: unset; min-height: unset; aspect-ratio: 4/3; }
  .del-table-head, .del-table-row { grid-template-columns: 1fr 1.5fr; gap: 4px; font-size: .78rem; padding: 10px 14px; }
  .del-table-head span:nth-child(3),
  .del-table-head span:nth-child(4),
  .del-table-row  span:nth-child(3),
  .del-table-row  span:nth-child(4) { display: none; }
  .prod-grid  { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }

  .steps-row { flex-direction: column; align-items: flex-start; gap: 20px; padding-left: 32px; }
  .step-line { width: 2px; height: 30px; margin: -10px 0 -10px 33px; }
  .step-item { flex-direction: row; max-width: 100%; }
  .step-num  { top: 0; left: -28px; }
  .wholesale-cta { flex-direction: column; text-align: center; }
  .wc-text { flex-direction: column; text-align: center; }

  .modal-box { padding: 28px 20px; }
  .modal-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { gap: 8px; }
  .stat-sep { display: none; }
  .stat-item { padding: 8px 16px; }
  .ann-inner { gap: 8px; }
  .ann-divider { display: none; }
}

/* ──────────────────────────────
   RESPONSIVE — 480px
────────────────────────────── */
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero h1  { font-size: 1.9rem; }
  .fab-wa   { bottom: 20px; right: 20px; }
  .scroll-top-btn { bottom: 94px; right: 22px; }
  .hero-float-card { display: none; }
  .about-since-badge { left: 0; }
}
