* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "Poppins", serif;
  
}

/* Navbar Container */
.navbar {
  padding: 1rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}

/* Logo */
.logo {
  font-family: "Meddon", cursive;
  font-weight: 400;
  font-size: 28px;
  color: black;
  text-decoration: none;
}

/* Only for desktop (≥992px) */
@media (min-width: 992px) {
  /* Nav links inside d-lg-flex */
  .d-lg-flex .nav-link {
    position: relative; /* needed for ::after */
    color: black;
    font-size: 20px;
    font-family: "DM Serif Text", serif;
    font-weight: 500;
    padding-bottom: 4px; /* space for underline */
    transition: color 0.3s ease;
  }

  /* Pink underline */
  .d-lg-flex .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff007f;
    transition: width 0.3s ease;
  }

  /* Hover effect */
  .d-lg-flex .nav-link:hover::after,
  .d-lg-flex .nav-link.active::after {
    width: 100%;
  }

  /* Text color change */
  .d-lg-flex .nav-link:hover {
    color: #ff007f;
  }
}


  /* Smooth color transition, scale, background highlight */
  .navbar-nav .nav-link:hover {
    color: #ff007f;
    transform: scale(1.05);
    background-color: rgba(255, 0, 127, 0.05);
    border-radius: 5px;
    padding: 2px 6px;
  }

/* Icons (desktop) */
.navbar .nav-icon {
  font-size: 18px;
  cursor: pointer;
  color: black;
}

/* Gap between icons */
.d-flex.gap-3 > .nav-icon,
.d-flex.gap-3 > a {
  margin-left: 15px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  /* Center Home/Shop links if visible */
  .navbar-nav.mx-auto {
    justify-content: center;
  }

  /* Slightly smaller font */
  .navbar-nav .nav-link {
    font-size: 18px;
  }

  /* Dropdown items hover/focus effect */
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background-color: rgba(255, 0, 127, 0.1);
    color: #ff007f;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-text {
  position: relative;
  z-index: 2; /* Keeps text above the overlay */
  text-align: center;
  color: #fff;
  background: none !important;
  padding: 20px 40px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Dm serif Text", serif;
  font-weight: 500;
  font-size: 4rem;
  color: #fff;
}

.hero .btn:hover {
  background-color: #ff82c1;
  transform: translateY(-4px) scale(1.05);
}

.hero-text,
.hero-text a,
.btn {
  pointer-events: auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #ff007f; /* bright pink */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 79, 163, 0.3);
}

.btn:hover {
  background-color: #ff82c1; /* lighter pink */
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(255, 79, 163, 0.4);
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  color: white;
  transition: 0.3s;
  z-index: 999;
  pointer-events: auto;
}

.prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0.6);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Shop */
.shop-section {
  padding: 60px 10%;
  text-align: center;
}
.shop-section h2{
  font-family: "Poppins", sans-serif;
  font-weight: 400px;
  font-size: 50px;
  letter-spacing: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background-color: #fff0f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

button {
  background-color: #ff007f;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 10px;
  font-family: Arial;
  font-weight: bold;
}
.Aratel {
  text-align: center;
}

.tops-title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Container for all tops */
.tops-container {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  padding: 30px 50px; /* adds side spacing */
}

/* Each individual top card */
.tops-card {
  background:  linear-gradient(135deg, #ffe6f0, #ffd6e8);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  width: 100%;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

/* Hover animation */
.tops-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Image style */
.tops-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
.tops-card:hover img {
  transform: scale(1.05);
}

/* Product name */
.tops-card h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}

/* Price style */
.price {
  font-weight: 700;
  font-size: 16px;
  color: #ff007f;
  background: #fff0f5;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 12px;
  margin-top: 5px;
  margin: 0 auto;
  width: 100px;
  
}

.buy-btn {
  background-color: #ff007f;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  margin-top: 5px;
  transition: all 0.3s ease;
  width: 120px;
  margin: auto;
  white-space: nowrap;
}

.buy-btn:hover {
  background-color: #e60073;
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 0, 127, 0.7);
  color: white;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
}
.tops-card { position: relative; } /* needed for badge */


/* Responsive layout */
@media (max-width: 768px) {
  .tops-card {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .tops-card {
    width: 90%;
  }
}

.brand-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 100px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(120deg, #fff0f5, #ffe6f0); /* soft background */
  border-radius: 20px;
}

.brand-image img {
  width: 450px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  
}

.brand-text {
  max-width: 550px;
}

.brand-text h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ff007f;
  margin: auto;
}

.brand-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin: auto;
}

/* Responsive design */
@media (max-width: 900px) {
  .brand-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .brand-image img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }

  .brand-text {
    max-width: 100%;
  }

  .brand-text h2 {
    font-size: 40px;
  }

  .brand-text p {
    font-size: 16px;
  }
}

.testimonials-section {
  background-color: #fff0f5;
  padding: 60px 50px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-top: 60px; /* adds space from About Us section */
}

.testimonials-title {
  font-size: 40px;
  color: #ff007f;
  margin-bottom: 40px;
  font-weight: 600;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.testimonial-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user span {
  font-weight: 600;
  color: #ff007f;
}
 
.newsletter-section {
  background: linear-gradient(120deg, #fff0f5, #ffe6f0); /* soft pastel background */
  text-align: center;
  padding: 60px 30px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  margin: 60px auto; /* spacing from other sections */
  max-width: 1000px;
}

.newsletter-section h2 {
  font-size: 42px;
  color: #ff007f;
  margin-bottom: 15px;
  font-weight: 600;
}

.newsletter-section p {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 14px 20px;
  width: 350px;
  max-width: 80%;
  border: 2px solid #ff007f;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #e60073;
}

.newsletter-form button {
  padding: 14px 30px;
  background-color: #ff007f;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e60073;
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input, .newsletter-form button {
    width: 100%;
    max-width: 100%;
  }
}



/* Footer */
.footer-section {
  background-color: #ff007f; /* brand pink */
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-about h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-about p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffe6f0; /* lighter accent on hover */
}

.social-icons a {
  margin-right: 15px;
  display: inline-block;
}

.social-icons img {
  width: 25px;
  height: 25px;
  filter: invert(100%);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-social {
    width: 100%;
  }

  .social-icons a {
    margin-right: 10px;
  }
  html {
  scroll-behavior: smooth;
}

}
