/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #ff4d6d;
  --secondary: #ff87a2;
  --light-bg: #fff8f0;
  --soft-bg: #ffecec;
  --dark: #333;
}

/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--light-bg);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= BUTTONS ================= */
.baby-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s ease;
  cursor: pointer;
}

.baby-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.baby-btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #fff;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
<!--_==============logo--===========--->
/* ================= LOGO FIX ================= */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;              /* proper spacing */
  font-weight: 700;
  color: var(--primary);
}

/* Logo image */
.logo img {
  max-height: 55px;       /* perfect navbar size */
  width: auto;
  object-fit: contain;
  transition: max-height 0.3s ease;
}

/* On scroll – subtle shrink */
.navbar.scrolled .logo img {
  max-height: 45px;
}
.logo-text {
	color:red;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.7rem;
  opacity: 0.8;
}
/* LOGO ALIGNMENT FIX */
.logo {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 12px;             /* space between image and text */
}

/* Logo image */
.logo img {
  max-height: 85px;
  width: auto;
  object-fit: contain;
}

/* Text container */
.logo-text {
  display: flex;
  flex-direction: column; /* stack text lines */
  justify-content: center;
}

/* Main brand text */
.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* Small tagline */
.brand-tagline {
  font-size: 0.7rem;
  opacity: 0.8;
}


.navbar.scrolled .logo img {
  max-height: 45px;
}

/* Desktop Menu */
.nav-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu ul li a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: var(--primary);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE NAVIGATION ================= */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
  }

  .nav-menu.nav-menu-active {
    display: flex;
    max-height: 500px; /* smooth slide down */
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  background: rgba(0,0,0,0.3);
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}

.slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.6rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.prev { left: 15px; }
.next { right: 15px; }

/* ================= SECTIONS ================= */
.intro-heading {
  padding: 4rem 0;
  text-align: center;
  background: var(--light-bg);
}

.intro-heading h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.intro-heading p {
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 700px;
  margin: auto;
}

/* Welcome Section */
.welcome-section {
  background: var(--soft-bg);
}

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.welcome-text h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.3;
}

.welcome-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.welcome-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Features */
.features {
  background: var(--soft-bg);
  padding: 4rem 0;
}

.features .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.feature-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.feature-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Categories */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.category-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 250px;
  max-width: 300px;
}

.category-card img {
  width: 100%;
  display: block;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,77,109,0.85);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.category-card:hover .category-overlay {
  transform: translateY(0);
}

/* Products */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h4 {
  margin: 0.5rem 0;
  color: var(--primary);
}

.product-card p {
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

.product-card .price {
  font-weight: bold;
  color: var(--secondary);
  margin: 0.5rem 0 1rem 0;
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 250px;
  max-width: 350px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.testimonial-info img {
  width: 50px;
  border-radius: 50%;
}

/* CTA Section */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 4rem 0;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 5rem 0;
}

.cta-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 280px;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-links h4,
.footer-social-wrap h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .feature-flex {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .intro-heading h2 { font-size: 1.8rem; }
  .intro-heading p { font-size: 1rem; }

  .welcome-grid { grid-template-columns: 1fr; }
  .feature-flex { flex-direction: column; align-items: center; }
  .feature-card { max-width: 320px; width: 100%; }

  .category-grid, .product-grid, .testimonial-grid, .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-overlay { padding: 4rem 1rem; }
  .cta-content h2 { font-size: 1.8rem; }
  .cta-content p { font-size: 1rem; }
}
/* ================= CATEGORY FILTERS ================= */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-filters .baby-btn {
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  transition: all 0.3s;
  opacity: 0.85;
}

.category-filters .baby-btn:hover,
.category-filters .baby-btn.active {
  background: var(--secondary);
  opacity: 1;
  transform: translateY(-2px);
}
/* ================= SHOP HERO BANNER ================= */
.shop-hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.shop-hero-overlay {
  background: rgba(0,0,0,0.4); /* dark overlay for text readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.shop-hero-content {
  color: #fff;
  max-width: 700px;
  padding-left: 5%;
}

.shop-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.shop-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .shop-hero {
    height: 50vh;
  }
  .shop-hero-content h1 {
    font-size: 2rem;
  }
  .shop-hero-content p {
    font-size: 1rem;
  }
}
/* ================= SHOP INTRO PARAGRAPH ================= */
.shop-intro {
  background: var(--soft-bg);
  padding: 2rem 0;
  text-align: center;
}

.shop-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--dark);
}

@media (max-width: 768px) {
  .shop-intro p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
/* ================= SHOP CTA ================= */
.shop-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 4rem 0;
  border-radius: 10px;
  overflow: hidden;
}

.shop-cta .cta-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 5rem 0;
  text-align: center;
}

.shop-cta .cta-content {
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.shop-cta .cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.shop-cta .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .shop-cta .cta-overlay {
    padding: 4rem 1rem;
  }
  .shop-cta .cta-content h2 {
    font-size: 1.8rem;
  }
  .shop-cta .cta-content p {
    font-size: 1rem;
  }
}
/* ================= HERO / PAGE TITLE ================= */
.hero-banner {
  position: relative;
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay .container {
  text-align: center;
  color: #fff;
}

.hero-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ================= CART SECTION ================= */
.cart-section {
  padding: 4rem 0;
}

.cart-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* ================= CART TABLE ================= */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th, 
.cart-table td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.cart-table th {
  color: var(--dark);
  font-weight: 600;
}

.cart-table td img {
  width: 60px;
  border-radius: 5px;
  margin-right: 0.75rem;
}

.cart-product {
  display: flex;
  align-items: center;
}

.cart-product span {
  font-weight: 500;
}

.cart-table input[type="number"] {
  width: 60px;
  padding: 0.3rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
}

.remove-btn {
  background: #ff4d6d;
  color: #fff;
  border: none;
  padding: 0.5rem 0.7rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.remove-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ================= CART SUMMARY ================= */
.cart-summary {
  background: var(--soft-bg);
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  margin: auto;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cart-summary h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cart-summary p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.cart-summary p span {
  font-weight: bold;
  color: var(--dark);
}

.cart-summary a.baby-btn {
  margin-top: 1rem;
  display: inline-block;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 0.95rem;
  }

  .cart-table th, .cart-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .cart-table img {
    width: 50px;
  }
}
/* ================= HERO BANNER ================= */
.hero-banner {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-banner h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-banner p {
  color: #fff;
  font-size: 1.2rem;
  max-width: 600px;
}

/* ================= SECTION HEADINGS ================= */
.section-title {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

/* ================= ABOUT STORY ================= */
.about-story {
  padding: 4rem 0;
  background: var(--light-bg);
  text-align: center;
}

.about-story p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
  color: var(--dark);
  line-height: 1.6;
}

/* ================= ABOUT VALUES / FEATURES ================= */
.about-values {
  padding: 4rem 0;
  background: var(--soft-bg);
}

.about-values .feature-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.about-values .feature-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-values .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-values .feature-card img {
  width: 60px;
  margin-bottom: 1rem;
}

/* ================= TEAM SECTION ================= */
.team {
  padding: 4rem 0;
  background: var(--light-bg);
}

.team .feature-flex {
  justify-content: center;
}

.team .feature-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* ================= CTA SECTION ================= */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 4rem 0;
}

.cta-overlay {
  background: rgba(0,0,0,0.55);
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .hero-banner h1 {
    font-size: 2.5rem;
  }
  .hero-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
  }
  .hero-banner h1 {
    font-size: 2rem;
  }
  .about-values .feature-flex,
  .team .feature-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/* ================= CONTACT PAGE ================= */

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  background: rgba(0,0,0,0.45);
  padding: 4rem 2rem;
  border-radius: 10px;
  max-width: 700px;
}

.hero-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-banner p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  padding: 4rem 0;
  background: var(--soft-bg);
}

.contact-info .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.contact-info .feature-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.contact-info .feature-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info .feature-card i {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.contact-form button.baby-btn {
  align-self: flex-start;
  padding: 0.8rem 2rem;
}

/* Map */
.contact-map {
  padding: 4rem 0;
}

.contact-map .section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* CTA Section */
.cta-section {
  margin: 4rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  background: rgba(0,0,0,0.55);
  padding: 4rem 2rem;
  border-radius: 10px;
}

.cta-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-info .feature-flex {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 50vh;
    padding: 0 1rem;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }

  .contact-form button.baby-btn {
    width: 100%;
    text-align: center;
  }

  .map-container iframe {
    height: 300px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}
/* ================= BUY OPTIONS ================= */
.buy-options {
  padding: 4rem 0;
  background: var(--soft-bg);
}

.buy-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.buy-card {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.buy-card i {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.buy-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.buy-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: #fff;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      z-index: 999;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      transition: transform 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
    }
    /* Form Message */
    #form-message {
      margin-top: 10px;
      font-weight: bold;
      color: green;
    }
  