:root {
  --pink-dark: #f48fb1;
  --pink-mid: #f8bbd0;
  --pink-light: #fce4ec;
  --pink-pale: #fff0f5;
  --coral: #e85d7c;
  --coral-btn: #e8637a;
  --text-dark: #1a1a1a;
  --text-mid: #333;
  --text-gray: #555;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--pink-pale);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255, 240, 245, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(232, 99, 122, 0.08);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--coral);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--coral);
}
.nav-search {
  background: var(--coral-btn);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  transition: background 0.2s;
}
.nav-search:hover {
  background: #c0405a;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── PAGES ────────────────────────────────────────────── */
.page {
  display: none;
  padding-top: 70px;
  min-height: 100vh;
}
.page.active {
  display: block;
}

/* ─── BACKGROUNDS ──────────────────────────────────────── */
.bg-splash {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════
     HOME PAGE
  ═══════════════════════════════════════════════════════ */
#home {
  background: linear-gradient(160deg, #fce4ec 0%, #fff0f5 40%, #fce4ec 100%);
  position: relative;
  /* padding-top: 50px; */
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 90vh;
  padding: 60px 60px 40px;
  overflow: hidden;
}
.hero-image{
  width: 400px;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(232, 99, 122, 0.3);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-tagline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-tagline span {
  color: var(--coral);
  font-style: italic;
}
.hero-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  max-width: 340px;
  line-height: 1.6;
  margin: 16px 0 28px;
}
.btn-primary {
  display: inline-block;
  background: var(--coral-btn);
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(232, 99, 122, 0.35);
}
.btn-primary:hover {
  background: #c0405a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 99, 122, 0.45);
}

.hero-socials {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}
.hero-socials a {
  color: var(--text-gray);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-socials a:hover {
  color: var(--coral);
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-bottle {
  width: clamp(180px, 30vw, 320px);
  filter: drop-shadow(0 20px 40px rgba(232, 99, 122, 0.3));
  animation: floatBottle 4s ease-in-out infinite;
}
@keyframes floatBottle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

/* Floating strawberries / leaves decoration */
.deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  font-size: 1.5rem;
  opacity: 0.85;
  animation: floatDeco 5s ease-in-out infinite;
}
@keyframes floatDeco {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

/* splash SVG background */
.hero-splash {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 55%;
  opacity: 0.18;
  z-index: 0;
}

/* Products */
.section-products {
  padding: 60px 60px;
  position: relative;
}
.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(232, 99, 122, 0.1);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(232, 99, 122, 0.2);
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 12px;
}
.product-card .pc-bg-yellow {
  background: #fffde7;
}
.product-card .pc-bg-pink {
  background: #fce4ec;
}
.product-card .pc-bg-blue {
  background: #e3f2fd;
}
.product-card .pc-bg-green {
  background: #e8f5e9;
}
.product-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.product-name {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  text-align: left;
}

/* Why choose */
.section-why {
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.why-image {
  position: relative;
}
.why-cup {
  width: 450px;
  filter: drop-shadow(0 10px 30px rgba(232, 99, 122, 0.25));
  animation: floatBottle 4.5s ease-in-out infinite;
}
.why-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.why-text p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 10px;
}
.why-list {
  list-style: none;
  margin: 18px 0 24px;
}
.why-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.why-list li::before {
  content: "✓";
  color: var(--coral);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* FAQ */
.section-faq {
  padding: 60px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(248, 187, 208, 0.2) 100%
  );
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-list {
  width: 100%;
}
.faq-item {
  border-bottom: 1px solid var(--pink-mid);
  padding: 18px 0;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.faq-question .faq-arrow {
  color: var(--coral);
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.84rem;
  color: var(--text-gray);
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}
.faq-cup {
  width: 100%;
  max-width: 260px;
  filter: drop-shadow(0 10px 30px rgba(232, 99, 122, 0.2));
  animation: floatBottle 5s ease-in-out infinite;
}

/* Footer */
footer {
  background: white;
  padding: 48px 60px 24px;
  border-top: 1px solid var(--pink-mid);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.84rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--coral);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--pink-light);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════
     ORDER PAGE
  ═══════════════════════════════════════════════════════ */
#order {
  background: linear-gradient(160deg, #fce4ec 0%, #fff0f5 50%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}
.order-container {
  padding: 40px 60px;
}
.page-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.prices-section {
  margin: 40px 0;
}
.prices-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.price-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}
.price-table th {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
}
.price-table td {
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.price-table tr:nth-child(odd) td {
  background: rgba(232, 99, 122, 0.08);
}
.price-table td:last-child {
  font-weight: 600;
  color: var(--coral);
}

.order-summary {
  margin: 40px 0;
}
.order-summary h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.order-form {
  background: white;
  border-radius: 16px;
  padding: 28px;
  max-width: 640px;
  box-shadow: 0 4px 24px rgba(232, 99, 122, 0.1);
}
.order-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.order-form select,
.order-form input[type="number"],
.order-form input[type="text"],
.order-form input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--pink-mid);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  background: var(--pink-pale);
  color: var(--text-dark);
  margin-bottom: 16px;
  outline: none;
  transition: border 0.2s;
}
.order-form select:focus,
.order-form input:focus {
  border-color: var(--coral);
}
.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.order-total {
  background: var(--pink-light);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.9rem;
}
.order-total strong {
  color: var(--coral);
  font-size: 1.1rem;
}

.order-splash {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 45%;
  opacity: 0.18;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
     ABOUT PAGE
  ═══════════════════════════════════════════════════════ */
#about {
  background: linear-gradient(160deg, #fce4ec 0%, #fff0f5 40%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}
.about-container {
  padding: 40px 60px;
  position: relative;
  z-index: 1;
}
.about-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.about-header p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 6px;
}
.about-subheading {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 14px;
  margin-bottom: 4px;
}

.about-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  margin: 40px 0;
  padding: 28px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(232, 99, 122, 0.08);
}
.about-section img {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.about-section-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.about-section-text p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.7;
}
.about-splash {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  opacity: 0.2;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
     CONTACT PAGE
  ═══════════════════════════════════════════════════════ */
#contact {
  background: linear-gradient(160deg, #fce4ec 0%, #fff0f5 50%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}
.contact-container {
  padding: 40px 60px;
  position: relative;
  z-index: 1;
}
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.contact-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  text-shadow: 1px 1px 6px rgba(232, 99, 122, 0.4);
  margin-bottom: 20px;
}
.contact-intro {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 360px;
}
.contact-info-block {
  margin-bottom: 18px;
}
.contact-info-block h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.contact-info-block p,
.contact-info-block a {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  text-decoration: none;
  display: block;
}
.contact-info-block a {
  color: var(--coral);
  font-weight: 600;
}

.contact-hours {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(232, 99, 122, 0.1);
  margin-top: 20px;
}
.contact-hours h3 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-align: right;
}
.contact-hours p {
  font-size: 0.87rem;
  text-align: right;
  line-height: 1.7;
  color: var(--text-mid);
}

.contact-office-img {
  width: clamp(120px, 18vw, 190px);
  border-radius: 14px;
  object-fit: cover;
  margin-top: 20px;
}

.contact-message-section {
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-message-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-message-section p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 18px;
  line-height: 1.6;
}
.contact-message-section input[type="text"],
.contact-message-section textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pink-mid);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border 0.2s;
  margin-bottom: 10px;
}
.contact-message-section input:focus,
.contact-message-section textarea:focus {
  border-color: var(--coral);
}
.contact-message-section textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-partnership {
  background: white;
  border-radius: 16px;
  padding: 28px;
  margin: 20px 0 40px;
  box-shadow: 0 4px 20px rgba(232, 99, 122, 0.08);
}
.contact-partnership h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-partnership p {
  font-size: 0.87rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--pink-mid);
}
.contact-socials a {
  color: var(--coral);
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.contact-socials a:hover {
  transform: scale(1.2);
}

.contact-bottle {
  width: clamp(120px, 20vw, 220px);
  filter: drop-shadow(0 10px 30px rgba(232, 99, 122, 0.25));
  animation: floatBottle 4s ease-in-out infinite;
}
.contact-person {
  width: clamp(140px, 22vw, 250px);
  object-fit: contain;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 14px 24px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 240, 245, 0.98);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(232, 99, 122, 0.1);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: center;
    min-height: auto;
  }
  .hero-image{
    width: 250px;
  }
  .hero-text {
    order: 2;
  }
  .hero-image {
    order: 1;
  }
  .hero-socials {
    justify-content: center;
  }
  .hero-desc {
    max-width: 100%;
    margin: 16px auto 28px;
  }

  .why-cup {
    width: 250px;
  }

  .section-products {
    padding: 40px 24px;
  }
  .section-why {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
    text-align: center;
  }
  .why-image {
    display: flex;
    justify-content: center;
  }
  .why-list {
    text-align: left;
    display: inline-block;
  }
  .section-faq {
    padding: 40px 24px;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-cup {
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }

  footer {
    padding: 40px 24px 20px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-container,
  .order-container,
  .contact-container {
    padding: 32px 24px;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-section img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-message-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-message-section img {
    display: none;
  }

  .order-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .hero-brand {
    font-size: 2rem;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Yoghurt placeholder colors for product images */
.prod-mango {
  background: #fffde7;
}
.prod-straw {
  background: #fce4ec;
}
.prod-van {
  background: #e3f2fd;
}
.prod-apple {
  background: #e8f5e9;
}

/* Simple toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--coral);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  z-index: 9999;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
