html {
        scroll-behavior: smooth;
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* HEADER / NAVBAR */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  padding: 0.6rem 2rem;
  color: #fff;
}

.logo {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #ffe1eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
  overflow: hidden;
}

.logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 50%;
}

.brand-name {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 7px rgba(255, 255, 255, 0.7);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
  border-radius: 10px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* FULL-WIDTH HERO */
.hero {
  width: 100%;
  min-height: 520px;
  margin-top: 80px; /* height of fixed header */
  background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
}

.hero-inner {
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* CTA BUTTONS */
.cta-button {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  background: #fff;
  color: #ff69b4;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}

.cta-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* PAGE CONTENT (CONSTRAINED WIDTH) */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Sections inside main */
.page-content section {
  padding: 5rem 2rem;
}

/* Section title */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #ff69b4;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Cards & Grids */
.card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(255, 105, 180, 0.3);
}

.products-grid,
.features-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.baby-frocks,
.casual-dress,
.cod {
  height: 257px;
}

.sarara {
  height: 269px;
}

.product-btn {
  display: inline-block;
  background: #ff69b4;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 600;
  transition: 0.3s;
}

.product-btn:hover {
  background: #e55a9b;
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.about-image {
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #ff69b4, #ffb6c1);
  color: #fff;
}

.contact-grid {
  margin-top: 2rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  margin: 0.5rem 0;
}

.phone-link:hover {
  color: #ffe1eb;
}

.map {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-top: 1rem;
  border: none;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%);
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-content section {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero h2 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 230px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-bar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
    padding: 0.5rem 1rem;
  }

  .logo {
    margin: 0 auto;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.95rem;
  }

  .hero {
    margin-top: 110px;
    min-height: 420px;
    padding-inline: 1.2rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .page-content section {
    padding: 2rem 1rem;
  }

  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }

  .product-image {
    height: 220px;
  }
}
/* Fade-in animation */
.card, .about-content, .hero-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple effect */
.ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 0.7;
  }
  to {
    transform: scale(4);
    opacity: 0;
  }
}

button, .cta-button, .product-btn {
  position: relative;
  overflow: hidden;
}
