/* ═══════════════════════════════════════════════════════
   ocean-kits.css — Styles for Ocean Learning Kits page
   HoneyBee Learning
   ═══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --ocean-deep: #0a2342;
  --ocean-mid: #0e4f7c;
  --ocean-teal: #00b4d8;
  --ocean-light: #90e0ef;
  --ocean-foam: #caf0f8;
  --ocean-sand: #fff7ed;
  --ok-gold: #f4c542;
  --ok-orange: #ff7b3e;
  --ok-green: #27ae60;
  --ok-green-light: #eafaf1;
  --ok-card-radius: 20px;
  --ok-shadow: 0 8px 32px rgba(10, 35, 66, 0.13);
  --ok-shadow-hover: 0 18px 48px rgba(10, 35, 66, 0.2);
}

/* ─── Global page base ─── */
body.ocean-page {
  background: linear-gradient(180deg, #e8f7ff 0%, #ffffff 100%);
  min-height: 100vh;
}

/* ────────────────────────────────────────
   NAV OVERRIDE
   ──────────────────────────────────────── */
#mainNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 64px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 180, 216, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  gap: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.back-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ocean-mid);
  text-decoration: none;
  border: 2px solid var(--ocean-teal);
  border-radius: 50px;
  padding: 6px 16px;
  transition: background 0.2s, color 0.2s;
}
.back-btn:hover { background: var(--ocean-teal); color: white; }

/* ────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────── */
.ok-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 55%, var(--ocean-teal) 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Animated bubbles background */
.ok-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ok-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  animation: okBubbleRise 8s infinite ease-in;
}
.ok-b1 { width: 80px; height: 80px; left: 10%; bottom: -80px; animation-duration: 9s; animation-delay: 0s; }
.ok-b2 { width: 50px; height: 50px; left: 30%; bottom: -50px; animation-duration: 7s; animation-delay: 1.5s; }
.ok-b3 { width: 120px; height: 120px; left: 55%; bottom: -120px; animation-duration: 11s; animation-delay: 0.5s; }
.ok-b4 { width: 40px; height: 40px; left: 75%; bottom: -40px; animation-duration: 6s; animation-delay: 2s; }
.ok-b5 { width: 90px; height: 90px; left: 88%; bottom: -90px; animation-duration: 10s; animation-delay: 1s; }

@keyframes okBubbleRise {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-700px) scale(1.3); opacity: 0; }
}

.ok-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 40px;
  width: 100%;
}

.ok-hero-text { flex: 1; max-width: 560px; }

.ok-hero-tag {
  display: inline-block;
  background: rgba(244, 197, 66, 0.2);
  border: 1.5px solid var(--ok-gold);
  color: var(--ok-gold);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 18px;
  animation: okFadeUp 0.6s ease both;
}

.ok-hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 16px;
  animation: okFadeUp 0.7s ease both;
}

.ok-hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
  animation: okFadeUp 0.8s ease both;
}

.ok-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  animation: okFadeUp 0.9s ease both;
}

.ok-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  padding: 6px 14px;
}

.ok-hero-cta {
  display: inline-block;
  background: var(--ok-gold);
  color: var(--ocean-deep);
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(244, 197, 66, 0.4);
  animation: okFadeUp 1s ease both;
}
.ok-hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(244, 197, 66, 0.5); }

.ok-hero-img-wrap {
  flex: 0 0 420px;
  animation: okFadeRight 0.9s ease both;
}

.ok-hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-1.5deg);
  transition: transform 0.4s;
}
.ok-hero-img:hover { transform: rotate(0deg) scale(1.02); }

@keyframes okFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes okFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ────────────────────────────────────────
   PRICING STRIP
   ──────────────────────────────────────── */
.ok-pricing-strip {
  background: linear-gradient(90deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  padding: 20px 24px;
}

.ok-pricing-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.ok-ps-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
}
.ok-ps-icon { font-size: 1.8rem; }
.ok-ps-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ocean-light);
}
.ok-ps-val {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: white;
}
.ok-ps-divider {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
}

/* ────────────────────────────────────────
   PRODUCTS SECTION
   ──────────────────────────────────────── */
.ok-products-section {
  padding: 70px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.ok-section-header {
  text-align: center;
  margin-bottom: 44px;
}

.ok-section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e0f7ff 0%, #caf0f8 100%);
  color: var(--ocean-mid);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 12px;
}

.ok-section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ocean-deep);
  margin: 0 0 10px;
}

.ok-section-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #6b7a8d;
  font-weight: 600;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Grid ─── */
.ok-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}

/* ─── Card ─── */
.ok-card {
  background: white;
  border-radius: var(--ok-card-radius);
  box-shadow: var(--ok-shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.ok-card.ok-visible {
  animation: okCardIn 0.5s ease forwards;
}

@keyframes okCardIn {
  to { opacity: 1; transform: translateY(0); }
}

.ok-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ok-shadow-hover);
}

/* Featured card — gold border */
.ok-card-featured {
  border: 3px solid var(--ok-gold);
}

.ok-card-banner {
  position: absolute;
  top: 16px;
  left: 0;
  background: linear-gradient(90deg, var(--ok-gold), #ffb347);
  color: var(--ocean-deep);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  padding: 5px 18px 5px 14px;
  border-radius: 0 50px 50px 0;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(244, 197, 66, 0.4);
}

.ok-banner-green {
  background: linear-gradient(90deg, var(--ok-green), #52be80) !important;
  color: white !important;
  box-shadow: 0 3px 12px rgba(39, 174, 96, 0.3) !important;
}

.ok-card-img-wrap {
  background: linear-gradient(135deg, var(--ocean-foam) 0%, #e8f7ff 100%);
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.ok-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply; /* Makes white background of JPGs transparent over the gradient */
  transition: transform 0.4s;
}
.ok-card:hover .ok-card-img { transform: scale(1.06); }

.ok-card-body {
  padding: 22px 22px 26px;
}

.ok-card-age {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ocean-teal);
  margin-bottom: 6px;
}

.ok-card-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: var(--ocean-deep);
  margin: 0 0 10px;
  line-height: 1.2;
}

/* Price row */
.ok-card-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.ok-price-tag {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--ok-orange);
  line-height: 1;
}

.ok-price-original {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
}

.ok-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5a6a7a;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Includes */
.ok-card-includes {
  background: #f0faff;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #d0eef8;
}

.ok-includes-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ocean-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ok-includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ok-includes-list li {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #3a4a5a;
}

/* Skills */
.ok-card-skills {
  margin-bottom: 14px;
}

.ok-skills-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ocean-deep);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ok-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ok-skills-tags span {
  background: linear-gradient(135deg, #e8f7ff, #d0eef8);
  color: var(--ocean-mid);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  border-radius: 50px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

/* Freebies */
.ok-card-freebies {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fffbea, #fff3cd);
  border: 1px solid #ffe08a;
  border-radius: 10px;
  padding: 10px 14px;
}

.ok-card-freebies span {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #8b6914;
}

/* Order Button */
.ok-order-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.ok-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ────────────────────────────────────────
   COMPARISON TABLE
   ──────────────────────────────────────── */
.ok-compare-section {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 100%);
  padding: 60px 24px;
}

.ok-compare-section .ok-section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ocean-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ok-compare-section .ok-section-title { color: white; }
.ok-compare-section .ok-section-sub { color: rgba(255, 255, 255, 0.7); }

.ok-compare-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 16px;
}

.ok-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
}

.ok-compare-table.ok-visible {
  animation: okCardIn 0.5s ease 0.15s forwards;
}

.ok-compare-table thead tr {
  background: rgba(255, 255, 255, 0.1);
}

.ok-compare-table th {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--ocean-light);
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ok-compare-table td {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ok-ctr-featured td {
  background: rgba(244, 197, 66, 0.08);
}

.ok-ctr-featured td:first-child {
  border-left: 3px solid var(--ok-gold);
}

.ok-cta-sm {
  display: inline-block;
  background: var(--ocean-teal);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.ok-cta-sm:hover { background: var(--ok-gold); color: var(--ocean-deep); transform: translateY(-1px); }

/* ────────────────────────────────────────
   TRUST SECTION
   ──────────────────────────────────────── */
.ok-trust-section {
  padding: 70px 24px;
  background: white;
  max-width: 1280px;
  margin: 0 auto;
}

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

.ok-trust-card {
  background: linear-gradient(135deg, #f0faff 0%, #e8f7ff 100%);
  border: 1.5px solid rgba(0, 180, 216, 0.15);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(24px);
}
.ok-trust-card.ok-visible {
  animation: okCardIn 0.5s ease forwards;
}
.ok-trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 100, 160, 0.1);
}

.ok-trust-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.ok-trust-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--ocean-deep);
  margin: 0 0 8px;
}

.ok-trust-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5a6a7a;
  line-height: 1.55;
  margin: 0;
}

/* ────────────────────────────────────────
   BIG CTA SECTION
   ──────────────────────────────────────── */
.ok-cta-section {
  background: linear-gradient(135deg, #0a2342 0%, #0e6ea0 60%, #00b4d8 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ok-cta-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 0%);
}

.ok-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.ok-cta-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  animation: okBounce 2s infinite ease-in-out;
}

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

.ok-cta-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: white;
  margin: 0 0 14px;
}

.ok-cta-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}

.ok-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ok-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.ok-cta-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}
.ok-cta-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45); }

.ok-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.ok-cta-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.ok-cta-note {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile-first, all breakpoints
   ════════════════════════════════════════════ */

/* ── Base box-sizing safety ── */
*, *::before, *::after { box-sizing: border-box; }

/* Prevent horizontal overflow globally on this page */
body.ocean-page { overflow-x: hidden; }

/* ── Tablet / small desktop (≤ 960px) ── */
@media (max-width: 960px) {
  .ok-hero-inner {
    flex-direction: column;
    padding: 44px 20px 36px;
    text-align: center;
    gap: 28px;
  }
  .ok-hero-text { max-width: 100%; }
  .ok-hero-img-wrap {
    flex: unset;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .ok-hero-badges { justify-content: center; }

  /* Pricing strip — 2×2 grid on tablet */
  .ok-pricing-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 600px;
  }
  .ok-ps-divider { display: none; }
  .ok-ps-item { padding: 10px 16px; }

  /* Products → 2 columns on tablet */
  .ok-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Comparison table — ensure scroll on tablet too */
  .ok-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Trust → 2 columns on tablet */
  .ok-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Section headers */
  .ok-section-header { margin-bottom: 28px; }
  .ok-section-sub { font-size: 0.92rem; }

  /* Comparison table — scroll wrapper fix */
  .ok-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    margin: 0 -4px;
    padding: 0 4px;
  }
  .ok-compare-table {
    min-width: 480px;
  }
}

/* ── Mobile portrait / phablet (≤ 680px) ── */
@media (max-width: 680px) {
  /* Nav */
  #mainNav { padding: 0 14px; height: 58px; }
  .nav-right .nav-cta { display: none; }
  .nav-logo img { height: 36px !important; }

  /* Hero — stack vertically, full bleed */
  .ok-hero { min-height: auto; }
  .ok-hero-inner { padding: 32px 16px 24px; gap: 20px; }
  .ok-hero-title { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .ok-hero-sub { font-size: 0.92rem; margin-bottom: 16px; }
  .ok-hero-badges { gap: 6px; margin-bottom: 20px; }
  .ok-badge { font-size: 0.78rem; padding: 5px 11px; }
  .ok-hero-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .ok-hero-img-wrap { max-width: 300px; }
  .ok-hero-img { transform: none; border-radius: 14px; }

  /* Pricing strip — 2×2 compact grid */
  .ok-pricing-strip { padding: 12px 10px; }
  .ok-pricing-strip-inner {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 2px;
  }
  .ok-ps-item { padding: 10px 12px; gap: 8px; }
  .ok-ps-icon { font-size: 1.4rem; }
  .ok-ps-label { font-size: 0.64rem; }
  .ok-ps-val { font-size: 0.84rem; }

  /* Products → single column */
  .ok-products-section { padding: 36px 14px 40px; }
  .ok-products-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Card tweaks */
  .ok-card-img-wrap { height: 190px; padding: 8px; }
  .ok-card-body { padding: 16px 14px 20px; }
  .ok-card-title { font-size: 1.25rem; }
  .ok-card-desc { font-size: 0.88rem; }
  .ok-price-tag { font-size: 1.8rem; }
  .ok-includes-list li { font-size: 0.84rem; }
  .ok-order-btn { font-size: 1rem; padding: 13px 20px; }

  /* Comparison table section */
  .ok-compare-section { padding: 40px 12px; }
  .ok-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }
  .ok-compare-table { min-width: 420px; }
  .ok-compare-table .col-freebies { display: none; }
  .ok-compare-table th { font-size: 0.72rem; padding: 10px 10px; white-space: nowrap; }
  .ok-compare-table td { font-size: 0.82rem; padding: 10px 10px; }

  /* Trust section */
  .ok-trust-section { padding: 40px 14px; }
  .ok-trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ok-trust-card { padding: 18px 14px; border-radius: 14px; }
  .ok-trust-icon { font-size: 1.9rem; margin-bottom: 10px; }
  .ok-trust-card h3 { font-size: 1rem; }
  .ok-trust-card p { font-size: 0.82rem; }

  /* CTA section */
  .ok-cta-section { padding: 56px 16px 52px; }
  .ok-cta-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .ok-cta-sub { font-size: 0.9rem; margin-bottom: 24px; }
  .ok-cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .ok-cta-btn { width: 100%; justify-content: center; padding: 15px 20px; font-size: 0.98rem; }
  .ok-cta-note { font-size: 0.78rem; }
}

/* ── Very small phones (≤ 400px) ── */
@media (max-width: 400px) {
  .ok-hero-title { font-size: 1.6rem; }
  .ok-hero-tag { font-size: 0.78rem; padding: 5px 14px; }
  .ok-badge { font-size: 0.72rem; padding: 4px 9px; }
  .ok-price-tag { font-size: 1.65rem; }
  .ok-section-title { font-size: 1.55rem; }

  /* Pricing strip — single column on tiny screens */
  .ok-pricing-strip-inner { grid-template-columns: 1fr; }
  .ok-ps-item { justify-content: flex-start; text-align: left; }

  /* Nav logo text — hide sub on tiny screens */
  .nav-logo-sub { display: none; }

  /* Table — only show Kit, Age, Price, Order */
  .ok-compare-table .col-books { display: none; }
  .ok-compare-table { min-width: 300px; }

  /* Trust — single column on tiny screens */
  .ok-trust-grid { grid-template-columns: 1fr; }

  /* Card */
  .ok-card-img-wrap { height: 170px; }
  .ok-card-body { padding: 14px 12px 18px; }
}

/* ── Sticky mobile WhatsApp order bar ── */
.ok-mobile-wa-bar {
  display: none;
}

@media (max-width: 680px) {
  .ok-mobile-wa-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #128C7E, #25D366);
    padding: 13px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.22);
    gap: 10px;
    text-decoration: none;
    /* safe area for notched phones */
    padding-bottom: calc(13px + env(safe-area-inset-bottom, 0px));
  }
  .ok-mobile-wa-bar span {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: white;
    letter-spacing: 0.3px;
  }
  /* Hide the global FAB since we have the sticky bar */
  .wa-fab { display: none !important; }
  /* Bottom padding so content isn't hidden behind bar */
  body.ocean-page .ok-cta-section { padding-bottom: 90px !important; }
  body.ocean-page footer#footer { padding-bottom: 90px !important; }
}

/* ── Touch-device: remove hover effects that can "stick" ── */
@media (hover: none) {
  .ok-card:hover { transform: none; box-shadow: var(--ok-shadow); }
  .ok-trust-card:hover { transform: none; box-shadow: none; }
  .ok-hero-img:hover { transform: none; }
  .ok-order-btn:hover { transform: none; }
}
