<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>NestleBabe Storefront</title>
  <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap" rel="stylesheet">
  <style>
    /* Base Layout */
    body {
      background-color: #fef6f2;
      font-family: 'Quicksand', sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Header */
    .nestlebabe-header {
      background: url('https://nestlebabe.com/images/baby-bg.png') repeat;
      background-size: cover;
      padding: 3rem 2rem;
      text-align: center;
      color: #333;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border-bottom: 4px solid #ffb6a9;
      position: relative;
    }

    .nestlebabe-title {
      font-size: 2.6rem;
      color: #ff6f61;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .nestlebabe-subheading {
      font-size: 1.4rem;
      color: #aa3e2f;
      font-weight: 600;
      margin-top: -0.5rem;
      margin-bottom: 1rem;
    }

    .nestlebabe-divider {
      width: 120px;
      height: 4px;
      background: linear-gradient(to right, #ffb6a9, #ffe0dc);
      border-radius: 2px;
      margin: 0.5rem auto 1.5rem;
    }

    /* Main */
    .nestlebabe-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem;
    }

    /* Category Menu */
    #my-categories-125524501 {
      margin-bottom: 2rem;
      text-align: center;
    }

    #my-categories-125524501 a {
      background-color: #fff;
      border: 2px solid #ffb6a9;
      border-radius: 8px;
      padding: 0.5rem 1rem;
      margin: 0.5rem;
      display: inline-block;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    #my-categories-125524501 a:hover {
      background-color: #ffb6a9;
      color: #fff;
    }
/* NestleBabe Product Card Styling */
.grid-product {
  background-color: #fff;
  border: 2px solid #ffe0dc;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem;
  box-shadow: 0 4px 10px rgba(255, 182, 169, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(255, 182, 169, 0.3);
}

/* Title Styling */
.grid-product__title-inner {
  font-size: 1.2rem;
  font-weight: 600;
  color: #aa3e2f;
  text-align: center;
  margin-top: 0.5rem;
}

/* Price Styling */
.grid-product__price-value {
  font-size: 1rem;
  font-weight: bold;
  color: #e07a5f;
  text-align: center;
  margin-top: 0.25rem;
}

/* Image Styling */
.grid-product__image-wrap img {
  border-radius: 8px;
  object-fit: cover;
}

/* Optional: Add soft divider line */
.grid-product__title-inner::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #ffb6a9, #ffe0dc);
  border-radius: 2px;
  margin: 0.5rem auto;
}

   
 

    /* Footer */
    .nestlebabe-footer {
      background-color: #fff0ea;
      padding: 2rem 1rem;
      text-align: center;
      border-top: 4px solid #ffb6a9;
    }

    .footer-top {
      display: flex;
      justify-content: flex-start;
      padding-bottom: 1rem;
    }

    .footer-links {
      font-size: 0.95rem;
      color: #555;
      text-align: center;
    }

    .footer-links a {
      color: #aa3e2f;
      font-weight: 600;
      text-decoration: none;
      margin: 0 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #ff6f61;
    }

    .footer-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .footer-icons img {
      width: 48px;
      margin: 0 0.25rem;
      vertical-align: middle;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #555;
      margin-top: 1rem;
    }

    /* Newsletter */
    .nestlebabe-newsletter {
      background-color: #fff5f0;
      padding: 2rem 1rem;
      text-align: center;
      border-top: 4px solid #ffb6a9;
    }

    .nestlebabe-newsletter h2 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      color: #ff6f61;
    }

    .nestlebabe-newsletter p {
      font-size: 1rem;
      margin-bottom: 1rem;
      color: #555;
    }

    .newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}


   .newsletter-form input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 250px;           /* ✅ controls width */
  max-width: 100%;        /* ✅ keeps it responsive */
  flex: 0 0 auto;         /* ✅ prevents flex-grow override */
}
@media (max-width: 480px) {
  .newsletter-form input[type="email"] {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
}
    .newsletter-form button,
    .contact-form button {
      padding: 0.75rem 1.2rem;
      background-color: #ffb6a9;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .newsletter-form button:hover,
    .contact-form button:hover {
      background-color: #ff6f61;
    }

    /* Contact/About */
    .contact-form,
    .about-content {
      max-width: 600px;
      margin: 2rem auto;
      padding: 1rem;
      background-color: #fffaf7;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .contact-form h2,
    .about-content h2 {
      color: #ff6f61;
      margin-bottom: 1rem;
    }

    .about-content ul {
      list-style: disc;
      padding-left: 1.5rem;
      color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nestlebabe-header {
        padding: 2rem 1rem;
      }

      .nestlebabe-title {
        font-size: 1.8rem;
      }

      .nestlebabe-subheading {
        font-size: 1.2rem;
      }

      #my-categories-125524501 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }

      .x-product-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
      }

      .x-product-card {
        padding: 1rem !important;
        font-size: 0.9rem !important;
      }

      .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
      }

      .footer-links {
        text-align: center;
      }
    }
  </style>
</head>
