/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #f08a3e;
  --orange-dark: #ec7a2c;
  --pink: #ef4f93;
  --magenta: #e23e86;
  --coral: #f26d5b;
  --text-dark: #3a3a3a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================== LOGO ===================== */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  text-decoration: none;
}
.logo-main {
  font-family: 'Chewy', cursive;
  font-size: 30px;
  color: var(--pink);
  letter-spacing: 0.5px;
  text-shadow: 1.5px 1.5px 0 #ffd23f;
}
.logo-sub {
  font-family: 'Bungee', cursive;
  font-size: 14px;
  color: #ffc83d;
  letter-spacing: 2px;
  margin-top: 2px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 12px 30px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-cart {
  background: var(--orange);
  color: var(--white);
  padding: 11px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.cart-count.pop { animation: cartpop 0.3s ease; }
@keyframes cartpop {
  0% { transform: scale(1); }
  50% { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.btn-buy {
  background: var(--orange);
  color: var(--white);
  margin-top: 22px;
  box-shadow: 0 6px 16px rgba(240, 138, 62, 0.35);
}

/* ===================== HEADER ===================== */
.site-header {
  position: relative;
  z-index: 50;
  background: linear-gradient(180deg, #fbc2b6 0%, #f9b8ac 100%);
  padding: 16px 0;
}
/* decorative soda-splash band at the very top */
.site-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ef7d8e, #f4a39b, #f3c14f, #ef7d8e);
  background-size: 200% 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 38px;
  margin-left: auto;
}
.main-nav a {
  text-decoration: none;
  color: var(--magenta);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-btn {
  background: none;
  border: none;
  color: var(--magenta);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 4px;
  transition: color 0.15s ease;
}
.icon-btn:hover { color: var(--orange); }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, #f9b8ac 0%, #f59a8e 55%, #f4877d 100%);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  align-items: center;
  gap: 20px;
  min-height: 680px;
  padding: 30px 0;
}
.hero-copy h1 {
  font-size: 84px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 1px;
}
.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  margin-top: 14px;
  letter-spacing: 0.5px;
}
.hero-cta { margin-top: 28px; }
.hero-art { display: grid; place-items: center; }
.hero-art img {
  width: 100%;
  max-width: 820px;
  filter: drop-shadow(0 24px 30px rgba(150, 40, 40, 0.28));
}

/* ===================== PRODUCT SECTIONS ===================== */
.product-inner {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  align-items: center;
  gap: 30px;
  min-height: 640px;
  padding: 70px 0;
}
.product-copy h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.product-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  max-width: 480px;
}
.product-art { display: grid; place-items: center; }
.product-art img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 22px 26px rgba(80, 50, 30, 0.22));
}

.product-arrow {
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
}

/* Lemon */
.product--lemon {
  background: linear-gradient(120deg, #f7e07a 0%, #f3cf4a 60%, #f0c63a 100%);
}
.product--lemon .product-copy h2 { color: var(--white); }

/* Strawberry */
.product--strawberry {
  background: linear-gradient(120deg, #f7a8cf 0%, #f48cbe 60%, #ef74ad 100%);
}

/* Raspberry */
.product--raspberry {
  background: linear-gradient(120deg, #f7aaa0 0%, #f49183 60%, #f17e6e 100%);
}

/* ===================== NO ARTIFICIAL SWEETENER ===================== */
.sweetener {
  background: linear-gradient(120deg, #f8d96b 0%, #f6c95a 50%, #f5bb4e 100%);
}
.sweetener-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 560px;
  padding: 80px 0;
}
.sweetener-kicker {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
}
.sweetener-copy h2 {
  font-size: 78px;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1.0;
  letter-spacing: 1px;
  margin-top: 10px;
}
.sweetener-art { display: grid; place-items: center; }
.sweetener-art img {
  max-height: 440px;
  width: auto;
  filter: drop-shadow(0 20px 24px rgba(120, 90, 20, 0.22));
}

/* ===================== HEALTHY WAY ===================== */
.healthy {
  background: linear-gradient(120deg, #fdeccf 0%, #fbdcb4 55%, #f9cf9f 100%);
}
.healthy-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 30px;
  min-height: 620px;
  padding: 80px 0;
}
.healthy-copy h2 {
  font-size: 60px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.5px;
}
.healthy-copy h2 span { color: var(--coral); }
.healthy-copy p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  max-width: 380px;
  margin-top: 14px;
}
.healthy-art img {
  width: 100%;
  filter: drop-shadow(0 20px 26px rgba(120, 80, 40, 0.18));
}

/* ===================== FOOTER ===================== */
.site-footer {
  position: relative;
  background: linear-gradient(160deg, #3a2330 0%, #46202e 55%, #5a2533 100%);
  color: #f3e6e0;
  padding-top: 72px;
  margin-top: -1px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--orange), #ffc83d, var(--coral));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-brand .logo { align-items: flex-start; }
.footer-brand .logo-main { font-size: 36px; }
.footer-tagline {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(243, 230, 224, 0.7);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social .social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, background 0.18s ease;
}
.footer-social .social:hover {
  transform: translateY(-3px);
  background: var(--orange);
  border-color: var(--orange);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14px;
  color: rgba(243, 230, 224, 0.7);
  margin-bottom: 12px;
}
.footer-col a {
  text-decoration: none;
  color: rgba(243, 230, 224, 0.7);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #ffc83d; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-contact .dot {
  color: var(--orange);
  font-size: 16px;
  width: 18px;
  text-align: center;
}

.footer-newsletter p {
  font-size: 13.5px;
  color: rgba(243, 230, 224, 0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 5px;
  max-width: 360px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 9px 18px;
  font-family: inherit;
  font-size: 13.5px;
  background: transparent;
  color: #333;
}
.newsletter-form button {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 9px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.newsletter-form button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.newsletter-msg {
  margin-top: 12px;
  font-size: 13px;
  min-height: 18px;
}
.newsletter-msg.success { color: #7fe3a0; }
.newsletter-msg.error { color: #ff9a9a; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(243, 230, 224, 0.55);
}
.footer-legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-legal a {
  text-decoration: none;
  color: rgba(243, 230, 224, 0.55);
  transition: color 0.15s ease;
}
.footer-legal a:hover { color: #ffc83d; }

/* ===================== STRAWBERRY BUY BUTTON (pink) ===================== */
.product--strawberry .btn-buy {
  background: var(--pink);
  box-shadow: 0 6px 16px rgba(239, 79, 147, 0.35);
}

/* ===================== SEARCH BAR ===================== */
.search-bar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.search-bar input {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 120%);
  background: #2c2c2c;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease;
  z-index: 200;
  pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-inner,
  .product-inner,
  .sweetener-inner,
  .healthy-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .product-arrow { display: none; }
  .hero-copy h1 { font-size: 52px; }
  .hero-copy .hero-cta { display: inline-block; }
  .sweetener-copy h2 { font-size: 52px; }
  .product-copy p, .healthy-copy p { margin-left: auto; margin-right: auto; }
  .product-art img { max-height: 360px; }
  .hero-art img { max-width: 520px; }

  /* keep image first on stack for readability */
  .product--strawberry .product-copy { order: 2; }
  .footer-brand .logo { align-items: center; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-copy h1 { font-size: 40px; }
  .product-copy h2 { font-size: 32px; }
  .sweetener-copy h2 { font-size: 40px; }
  .healthy-copy h2 { font-size: 40px; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .newsletter-form { margin-left: auto; margin-right: auto; }
}
