/* Bobabox — Bold, Fun, Playful Bubble Tea */
/* Palette: Hot Pink, Teal, Sunny Yellow, White */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink: #e8458b;
  --pink-light: #fce4ef;
  --pink-dark: #c42d6f;
  --teal: #1cbcb4;
  --teal-light: #e0f7f5;
  --teal-dark: #0e918f;
  --yellow: #ffc836;
  --yellow-light: #fff8e1;
  --bg: #ffffff;
  --text: #2d2d3a;
  --text-light: #6b6b80;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */

h1, h2, h3 {
  font-family: 'Fredoka', 'Trebuchet MS', sans-serif;
  line-height: 1.2;
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 69, 139, 0.35);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 69, 139, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid #ddd;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

/* ---- Header ---- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--pink-light);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.brand {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-btn {
  background: var(--pink);
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-btn:hover {
  background: var(--pink-dark) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ---- Page Hero (inner pages) ---- */

.page-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--yellow-light) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- Hero (homepage) ---- */

.hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--yellow-light) 50%, var(--teal-light) 100%);
  padding: 2rem 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero h1 .highlight {
  color: var(--pink);
  position: relative;
}

.hero-text > p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.floating-tag {
  position: absolute;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tag-1 {
  top: 15%;
  left: -20px;
  color: var(--pink);
  transform: rotate(-5deg);
}

.tag-2 {
  bottom: 20%;
  right: -15px;
  color: var(--teal-dark);
  transform: rotate(3deg);
}

/* ---- Section Headers ---- */

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin-top: 0.5rem;
}

.section-header.center p {
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---- Kits (homepage) ---- */

.kits {
  padding: 5rem 0;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.kit-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #f0f0f0;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.kit-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--yellow);
  color: var(--text);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}

.kit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.kit-card h3,
.kit-card p,
.kit-details {
  padding: 0 1.5rem;
}

.kit-card h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.kit-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.kit-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.kit-count {
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 500;
}

.kit-price {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
}

.kit-pink { border-color: var(--pink-light); }
.kit-teal { border-color: var(--teal-light); }
.kit-yellow { border-color: var(--yellow-light); }

/* ---- Kit Detail (kits page) ---- */

.kit-detail {
  padding: 4rem 0;
}

.kit-detail.alt-bg {
  background: var(--teal-light);
}

.kit-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.kit-detail-grid.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.kit-detail-grid.reverse .kit-detail-image {
  order: 2;
}

.kit-detail-grid.reverse .kit-detail-content {
  order: 1;
}

.kit-detail-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
}

.kit-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.kit-detail-content h2 {
  margin-bottom: 1rem;
}

.kit-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.kit-specs {
  margin-bottom: 1.5rem;
}

.spec {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--text);
}

.spec strong {
  color: var(--teal-dark);
}

.kit-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.kit-price-big {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pink);
}

.kit-shipping {
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 500;
}

/* ---- How It Works ---- */

.how-it-works {
  padding: 5rem 0;
  background: var(--yellow-light);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.step-arrow {
  font-size: 2rem;
  color: var(--teal);
  padding-top: 4rem;
  font-weight: 700;
}

.time-callout {
  text-align: center;
  margin-top: 2.5rem;
  background: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.time-callout strong {
  color: var(--pink);
}

/* ---- What's Inside ---- */

.whats-inside {
  padding: 5rem 0;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.inside-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inside-content h2 {
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- About Section ---- */

.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.75;
}

/* ---- Values ---- */

.values {
  padding: 4rem 0;
  background: var(--yellow-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-card h3 {
  margin-bottom: 0.8rem;
  color: var(--teal-dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- Numbers ---- */

.about-numbers {
  padding: 4rem 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.number {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.3rem;
}

.number-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---- Article / Brewing Guide ---- */

.article-section {
  padding: 3rem 0 5rem;
}

.article-container {
  max-width: 750px;
}

.article-hero-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.article-section h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.article-section p {
  color: var(--text-light);
  line-height: 1.75;
}

.guide-steps {
  margin: 1.5rem 0;
}

.guide-step {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.guide-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teal);
  min-width: 2.5rem;
  padding-top: 0.2rem;
}

.guide-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.guide-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.tip-box {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

.tip-box strong {
  color: var(--pink);
}

.faq-list {
  margin: 1.5rem 0;
}

.faq-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

.article-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--pink-light);
  border-radius: var(--radius);
  text-align: center;
}

.article-cta h3 {
  margin-bottom: 0.5rem;
}

.article-cta p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* ---- Social Proof ---- */

.social-proof {
  padding: 5rem 0;
  background: var(--pink-light);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

.reviewer {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ---- CTA Banner ---- */

.cta-banner {
  padding: 4.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-banner .btn-primary:hover {
  background: var(--yellow);
  color: var(--text);
}

/* ---- Footer ---- */

footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--text);
  color: #b0b0c0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #8a8a9e;
}

.footer-col h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: #8a8a9e;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--pink);
}

.footer-bottom {
  border-top: 1px solid #3d3d50;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .kit-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .kit-detail-grid,
  .kit-detail-grid.reverse {
    grid-template-columns: 1fr;
  }

  .kit-detail-grid.reverse .kit-detail-image {
    order: 1;
  }

  .kit-detail-grid.reverse .kit-detail-content {
    order: 2;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .inside-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--pink-light);
    text-align: center;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .floating-tag {
    display: none;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
