/* ==========================================================
   VitaMale Pro - Storefront Stylesheet (Modern Clean)
   ========================================================== */
:root {
  --primary: #0f766e;
  --primary-dark: #0c5c56;
  --primary-light: #14b8a6;
  --accent: #f59e0b;
  --danger: #ef4444;
  --success: #10b981;
  --dark: #0b1f1d;
  --dark-2: #12312e;
  --bg: #f4f8f7;
  --card: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(11, 47, 44, .08);
  --shadow-lg: 0 20px 50px rgba(11, 47, 44, .15);
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border: none; border-radius: 50px;
  font-weight: 700; font-size: 15px; transition: all .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff; box-shadow: 0 8px 20px rgba(20, 184, 166, .35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20,184,166,.45); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-ghost { background: var(--bg); color: var(--text); }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announcement {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff; text-align: center; padding: 9px 16px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 500;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; color: var(--dark); }
.logo-icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff; font-size: 20px; box-shadow: 0 6px 14px rgba(20,184,166,.35);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 14.5px; color: var(--text-muted); transition: color .2s; }
.nav a:hover { color: var(--primary); }
.header-wa {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: #25d366; color: #fff; font-weight: 700; font-size: 14px;
  border-radius: 50px; transition: all .25s; box-shadow: 0 6px 16px rgba(37,211,102,.3);
}
.header-wa:hover { transform: translateY(-2px); }
.hamburger { display: none; background: none; border: none; font-size: 26px; color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #052e2a 0%, #094c45 45%, #0f766e 100%);
  color: #fff; padding: 90px 0 120px;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero::before { width: 420px; height: 420px; background: #14b8a6; top: -140px; right: -80px; }
.hero::after { width: 360px; height: 360px; background: #f59e0b; bottom: -160px; left: -100px; opacity: .25; }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: #fbbf24; }
.hero p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.stat .num { font-size: 26px; font-weight: 800; }
.stat .lbl { font-size: 13px; color: rgba(255,255,255,.7); }
.hero-visual { position: relative; display: grid; place-items: center; }
.hero-pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px; padding: 34px; text-align: center;
  backdrop-filter: blur(10px); box-shadow: 0 30px 60px rgba(0,0,0,.35);
  transform: rotate(3deg); min-width: 300px;
}
.hero-pill .em { font-size: 80px; }
.hero-pill .nm { font-size: 20px; font-weight: 800; margin-top: 10px; }
.hero-pill .fl { font-size: 15px; color: rgba(255,255,255,.8); margin-top: 4px; }
.hero-pill .pr { font-size: 24px; font-weight: 800; color: #fbbf24; margin-top: 12px; }
.float-chip {
  position: absolute; background: #fff; color: var(--text); border-radius: 14px;
  padding: 10px 16px; font-size: 13px; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px; animation: float 4s ease-in-out infinite;
}
.float-chip.c1 { top: 6%; left: 0; }
.float-chip.c2 { bottom: 12%; right: 0; animation-delay: 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0; margin-top: -48px; position: relative; z-index: 10;
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 26px 22px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ic { font-size: 30px; }
.trust-item .t b { display: block; font-size: 14.5px; }
.trust-item .t span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Section utils ---------- */
.section { padding: 80px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 46px; }
.section-head .kicker {
  display: inline-block; color: var(--primary); background: #e6f5f3;
  padding: 6px 16px; border-radius: 50px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; color: var(--dark); }
.section-head p { color: var(--text-muted); margin-top: 12px; font-size: 15.5px; }

/* ---------- Products ---------- */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all .28s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media {
  position: relative; height: 220px; overflow: hidden;
  background: linear-gradient(145deg, #dff4f0, #fdf3d9);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .emoji { position: absolute; inset: 0; display: grid; place-items: center; font-size: 84px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
.sale-badge {
  position: absolute; top: 14px; left: 14px; background: var(--danger); color: #fff;
  font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 50px;
  box-shadow: 0 6px 14px rgba(239,68,68,.4);
}
.stock-badge {
  position: absolute; top: 14px; right: 14px; padding: 6px 12px; border-radius: 50px;
  font-size: 11.5px; font-weight: 700; background: rgba(16,185,129,.15); color: #047857;
  backdrop-filter: blur(4px); border: 1px solid rgba(16,185,129,.3);
}
.stock-badge.low { background: rgba(245,158,11,.15); color: #b45309; border-color: rgba(245,158,11,.35); }
.stock-badge.out { background: rgba(239,68,68,.15); color: #b91c1c; border-color: rgba(239,68,68,.35); }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.rating .stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.rating span { font-size: 12.5px; color: var(--text-muted); }
.product-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price { font-size: 24px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 14px; color: #9ca3af; text-decoration: line-through; }
.btn-buy {
  width: 100%; padding: 13px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff; font-weight: 700; font-size: 15px;
  transition: all .25s; box-shadow: 0 8px 18px rgba(20,184,166,.3);
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20,184,166,.4); }
.btn-buy[disabled] { background: #d1d5db; box-shadow: none; cursor: not-allowed; transform: none; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow); position: relative;
}
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-light), var(--primary)); color: #fff;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 15px; box-shadow: 0 6px 12px rgba(20,184,166,.35);
}
.step-card .ic { font-size: 40px; margin-bottom: 12px; }
.step-card h4 { font-size: 16px; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); }

/* ---------- Testimonials ---------- */
.testimonials { background: linear-gradient(180deg, #fff, #f0f7f5); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst-card {
  background: #fff; border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); position: relative;
}
.tst-card .q { font-size: 34px; color: var(--primary-light); line-height: 1; }
.tst-card p { font-size: 14px; margin: 12px 0 18px; color: var(--dark); }
.tst-user { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: grid; place-items: center; color: #fff; font-weight: 800;
}
.tst-user b { font-size: 14px; display: block; }
.tst-user span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-size: 15.5px; font-weight: 700; color: var(--dark); text-align: left;
}
.faq-q .arrow { transition: transform .3s; color: var(--primary); font-size: 18px; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 22px; font-size: 14px; color: var(--text-muted); }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, #052e2a, #0f766e); color: #fff;
  border-radius: 28px; margin: 0 auto; max-width: 1100px;
  padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 30px 60px rgba(11,47,44,.3);
}
.cta-section h2 { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #9ca3af; padding: 60px 0 30px; margin-top: 90px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid .logo { color: #fff; } 
.footer-about p { font-size: 13.5px; margin-top: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 13.5px; }
.footer li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px;
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(5,20,25,.72); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; z-index: 1000; padding: 18px;
}
.modal-overlay.show { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.modal-box {
  background: #fff; border-radius: 22px; max-width: 480px; width: 100%;
  max-height: 92vh; overflow-y: auto; padding: 30px; box-shadow: var(--shadow-lg);
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(30px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-head h3 { font-size: 20px; font-weight: 800; }
.modal-close { background: var(--bg); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; color: var(--text-muted); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 14px; font-family: inherit; background: #fafcfc; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary-light);
}
.buy-summary {
  background: #eef9f7; border-radius: 12px; padding: 16px;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.buy-summary .bs-l { font-size: 13.5px; color: var(--text-muted); }
.buy-summary .bs-r { font-weight: 800; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translate(-50%, -120%);
  background: var(--dark); color: #fff; padding: 14px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg);
  z-index: 2000; transition: transform .4s cubic-bezier(.2,.8,.3,1.1);
}
.toast.show { transform: translate(-50%, 0); }
.toast.success { background: var(--success); }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 3000;
  background: radial-gradient(circle at 50% 20%, #0e2b26, #05100e);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  transition: opacity .5s, visibility .5s;
}
.age-gate.gone { opacity: 0; visibility: hidden; }
.age-box {
  background: linear-gradient(160deg, #fff, #f0faf8); border-radius: 26px;
  max-width: 460px; width: 100%; padding: 40px 36px; text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
}
.age-icon {
  width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: grid; place-items: center; font-size: 40px; color: #fff;
  box-shadow: 0 12px 30px rgba(20,184,166,.4);
}
.age-box h2 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.age-box p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 18px; }
.age-warning {
  background: #fef3e2; border: 1.5px solid #fde9c8; color: #92400e;
  border-radius: 14px; padding: 14px; font-size: 13px; margin-bottom: 22px;
}
.age-btns { display: flex; flex-direction: column; gap: 12px; }
.age-btns .btn { width: 100%; }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 600;
  background: #25d366; color: #fff; border-radius: 50px; padding: 14px 22px;
  font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: all .25s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); }
.wa-float .pulse {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50px;
  background: rgba(37,211,102,.4); z-index: -1; animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1 } 100% { transform: scale(1.35); opacity: 0 } }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .hero { padding: 60px 0 90px; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-pill { min-width: 0; }
  .header-wa span.tx { display: none; }
  .header-wa { padding: 10px 14px; }
}