/* =========================================================
   HOKDI STORE — Dog Dental Powder Landing Page
   ========================================================= */

:root {
  --navy: #101a34;
  --navy-light: #1c2c52;
  --orange: #f2732e;
  --orange-dark: #d95f1e;
  --green: #2e9e6b;
  --cream: #fbf7f0;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-300: #cfd4de;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text: #1a2238;
  --shadow-sm: 0 2px 8px rgba(16, 26, 52, 0.08);
  --shadow-md: 0 8px 24px rgba(16, 26, 52, 0.12);
  --shadow-lg: 0 20px 48px rgba(16, 26, 52, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1180px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
section { padding: 72px 0; }
h1, h2, h3, h4 { margin: 0 0 12px; font-weight: 700; line-height: 1.2; }
h2.section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 8px;
}
p.section-sub {
  text-align: center;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 17px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-dark);
  background: #fef1e7;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242, 115, 46, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242, 115, 46, 0.45); }
.btn-block { width: 100%; }
.btn small { display: block; font-weight: 500; font-size: 12px; opacity: 0.9; }

/* ---------- Top announcement bar ---------- */
.announce-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 12px;
  letter-spacing: 0.3px;
}
.announce-bar strong { color: #ffd8a8; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-wrap img { height: 36px; width: auto; }
nav.main-nav { display: flex; gap: 28px; }
nav.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
}
nav.main-nav a:hover { color: var(--orange-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 12px 22px; font-size: 15px; }
@media (max-width: 860px) {
  nav.main-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 40px 0 60px; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  aspect-ratio: 1 / 1;
}
.gallery-main img,
.gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  display: none;
}
.gallery-main img.is-visible,
.gallery-main video.is-visible {
  display: block;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumbs button {
  position: relative;
  border: 2px solid var(--gray-100);
  background: var(--white);
  border-radius: 10px;
  padding: 0;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs button.active { border-color: var(--orange); }
.gallery-thumbs .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 26, 52, 0.45);
  color: var(--white);
  font-size: 18px;
}

.hero-copy h1 { font-size: clamp(30px, 4vw, 42px); }
.hero-copy .lede { font-size: 18px; color: var(--gray-700); margin-bottom: 18px; }

.stars { color: #f5a623; letter-spacing: 2px; font-size: 17px; }

.selector-group { margin-bottom: 18px; }
.selector-label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.selector-label span.value { color: var(--orange-dark); font-weight: 700; }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  border: 2px solid var(--gray-300);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pill:hover { border-color: var(--orange); }
.pill.active {
  border-color: var(--orange);
  background: #fef1e7;
  color: var(--orange-dark);
}

.buybox {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.buybox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.buybox-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  background: #e9f7f0;
  padding: 6px 12px;
  border-radius: 999px;
}
.buybox-price-note { font-size: 13px; color: var(--gray-500); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-700);
}
.trust-row .item { display: flex; align-items: center; gap: 6px; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--navy);
  color: var(--white);
  padding: 36px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-grid .num { font-size: 30px; font-weight: 800; color: var(--orange); }
.stat-grid .label { font-size: 13px; color: #c9d1e6; margin-top: 4px; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--gray-50);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin: 0 auto 16px;
}
.comparison-media { margin-top: 48px; text-align: center; }
.comparison-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: min(560px, 100%); margin: 0 auto; }

/* ---------- Benefits ---------- */
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .benefits-wrap { grid-template-columns: 1fr; } }
.benefits-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.benefit-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-item { display: flex; gap: 14px; }
.benefit-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fef1e7;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.benefit-item h4 { margin: 0 0 4px; font-size: 16px; }
.benefit-item p { margin: 0; color: var(--gray-500); font-size: 14.5px; }

/* ---------- Ingredients ---------- */
.section-alt { background: var(--gray-50); }
.ingredients-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .ingredients-wrap { grid-template-columns: 1fr; } }
.ingredients-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.ing-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.ing-list li {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.ing-list b { color: var(--navy); }

/* ---------- Before / after ---------- */
.ba-wrap { text-align: center; }
.ba-wrap img { max-width: min(560px, 100%); margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- Sizing ---------- */
.sizing-wrap { text-align: center; }
.sizing-wrap img { max-width: min(620px, 100%); margin: 20px auto 0; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- Video ---------- */
.video-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-wrap video { width: 100%; display: block; background: #000; }

/* ---------- Brand story ---------- */
.brand-story {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 760px) { .brand-story { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; } }
.brand-story img { height: 46px; width: auto; filter: brightness(0) invert(1); margin: 0 auto; }
.brand-story p { color: #c9d1e6; font-size: 16px; margin: 0; }
.brand-story h3 { color: var(--white); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { display: block; margin-bottom: 8px; }
.review-card h4 { margin: 0 0 8px; font-size: 16px; }
.review-card p { color: var(--gray-700); font-size: 14.5px; margin: 0 0 14px; }
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
}
.verified-badge {
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.reviews-cta { text-align: center; margin-top: 32px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
}
.faq-q .plus { font-size: 22px; color: var(--orange); transition: transform 0.2s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--gray-500);
  font-size: 15px;
}
.faq-item.open .faq-a { max-height: 240px; margin-top: 12px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: #ffe9d6; max-width: 520px; margin: 0 auto 28px; }
.final-cta .btn-primary { background: var(--white); color: var(--orange-dark); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.final-cta .pill-row { justify-content: center; margin-bottom: 22px; }
.final-cta .pill { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: var(--white); }
.final-cta .pill.active { background: var(--white); color: var(--orange-dark); border-color: var(--white); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #9aa5c4;
  padding: 48px 0 100px;
  font-size: 14px;
}
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.footer-grid img { height: 30px; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { border-top: 1px solid var(--navy-light); padding-top: 20px; font-size: 12.5px; line-height: 1.7; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 60;
  transform: translateY(120%);
  transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .info { flex: 1; font-size: 13px; }
.sticky-cta .info b { display: block; font-size: 14px; }
.sticky-cta .btn { padding: 12px 20px; font-size: 14px; white-space: nowrap; }

@media (min-width: 861px) {
  .sticky-cta { display: none; }
}
