/* ============================================================
   Vincor Labs — style.css
   Linked from: index.html via <link rel="stylesheet" href="css/style.css">
   ============================================================ */

/* ── RESET & TOKENS ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-dark:  #0a2540;
  --blue-mid:   #1a4b8c;
  --blue-light: #2e78d8;
  --blue-pale:  #e8f1fc;
  --white:      #ffffff;
  --black:      #0d0d0d;
  --gray:       #5a6475;
  --gray-light: #f4f7fb;
  --border:     #d0dce8;
  --max-w:      960px;
  --radius:     6px;
  --shadow:     0 2px 16px rgba(10,37,64,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── WHATSAPP FLOAT BUTTON ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: background .2s, transform .2s;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
}

.whatsapp-float.hidden {
  display: none;
}



.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: var(--white);
}

.whatsapp-float img {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.section { padding: 70px 20px; }
.section-gray { background: var(--gray-light); }

/* ── AGE GATE ───────────────────────────────────────────── */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.age-box {
  background: var(--white);
  border-radius: 10px;
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.age-box .logo-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.age-box .logo-txt span { color: var(--blue-light); }

.age-box p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
}

.age-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 16px 0 8px;
}

.age-box .disclaimer {
  font-size: 12px;
  color: var(--gray);
  margin: 16px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  line-height: 1.6;
}

.age-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.btn-yes, .btn-no {
  padding: 12px 36px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}

.btn-yes {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}

.btn-yes:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-no {
  background: var(--white);
  color: var(--gray);
  border-color: var(--border);
}

.btn-no:hover { background: var(--gray-light); }

/* ── SITE WRAPPER ───────────────────────────────────────── */
#site { display: none; }

/* ── TOP BAR ────────────────────────────────────────────── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  padding: 7px 0;
  text-align: center;
  letter-spacing: .3px;
}

.topbar span { margin: 0 10px; }

/* ── HEADER / NAV ───────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0;
  }

  .header-inner .logo {
    flex: 1;
  }

  .cart-icon-btn {
    margin-right: 8px;
  }
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 1px;
}

.logo span { color: var(--blue-light); }

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-dark);
  transition: color .2s;
}

nav a:hover { color: var(--blue-light); }

.nav-cta {
  background: var(--blue-mid) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── MOBILE BURGER ──────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue-dark);
  border-bottom: 1px solid var(--border);
  display: block;
}

.mobile-nav a:last-child {
  background: var(--blue-mid);
  color: var(--white) !important;
  text-align: center;
  font-weight: 700;
}

.mobile-nav.active { display: flex; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  color: var(--white);
  padding: 90px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: #7ec8fc;
}

.hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--blue-dark);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}

.hero-note {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-dark);
}

.trust-item .ico { font-size: 18px; }

/* ── SECTION TITLES ─────────────────────────────────────── */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
}

.tag-line {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}

/* ── PRODUCTS ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(26,75,140,.14);
  transform: translateY(-3px);
}

.product-img {
  background: #ffffff;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.product-body { padding: 16px; }

.product-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-mid);
}

.btn-add {
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-add:hover { background: var(--blue-dark); }

.product-badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── WHY US ─────────────────────────────────────────────── */
.why-us { background: var(--blue-pale); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
}

.feature-ico { font-size: 36px; margin-bottom: 14px; }

.feature-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  background: url('../img/vancouver-buildings-lake.jpg') center center / cover no-repeat;
  border-radius: 10px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border: 1px solid var(--border);
}

.about-list { margin-top: 16px; }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  line-height: 1.5;
}

.about-list li::before {
  content: '✓';
  color: var(--blue-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── HOW IT WORKS ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--blue-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.step p { font-size: 13px; color: var(--gray); }

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.stars {
  color: #f6a828;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.reviewer { font-weight: 600; font-size: 13px; color: var(--blue-dark); }
.reviewer-loc { font-size: 12px; color: var(--gray); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { 
  max-width: 680px;
  margin: 0 auto;
}

#faq .tag-line,
#faq .section-title {
  display: block;
  text-align: center;
}

.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--blue-dark);
  cursor: pointer;
  gap: 12px;
}

.faq-q .arrow {
  font-size: 20px;
  transition: transform .25s;
  color: var(--blue-light);
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  color: var(--gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  line-height: 1.6;
}

.faq-item.open .faq-a { max-height: 200px; padding-top: 10px; }
.faq-item.open .arrow { transform: rotate(90deg); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgb(255, 255, 255);
  font-size: 13px;
}

.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--blue-light); }

.footer-about { line-height: 1.7; margin-bottom: 16px; }

.footer-col h5 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.719);
  transition: color .2s;
}

.footer-col ul li a:hover { color: var(--blue-light); }

.disclaimer-bar {
  background: #0a2540;
  padding: 14px 20px;
  text-align: center;
  font-size: 11px;
  color: rgb(255, 255, 255);
  border-top: 1px solid rgba(170, 163, 163, 0.06);
  line-height: 1.6;
  max-width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.footer-bottom a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* ── CART ICON ───────────────────────────────────────────── */
.cart-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}

.cart-count {
  background: var(--blue-light);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 1px 7px;
  font-family: 'Barlow', sans-serif;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .cart-icon-btn { display: flex; }

  .about-split { grid-template-columns: 1fr; gap: 30px; }
  .about-img-placeholder { height: 200px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-bar .container { gap: 20px; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 20px 50px; }
}
