  /* ====== RESET ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: #fff;
      color: #333;
      overflow-x: hidden;
    }

    /* ====== OFFER BAR ====== */
    .top-offer {
      background: #ffe8ec;
      color: #b43a50;
      text-align: center;
      font-size: 14px;
      padding: 8px 0;
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    /* ====== HEADER WRAPPER ====== */
    .main-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
      transition: all 0.3s ease;
    }

    .main-header.scrolled {
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
      transform: translateY(-8px);
    }

    /* ====== MIDDLE BAR ====== */
    .middle-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 6%;
      transition: padding 0.3s ease;
    }

    .main-header.scrolled .middle-bar {
      padding: 10px 6%;
    }

    .logo {
      font-size: 26px;
      font-weight: 700;
      color: #d94b6b;
      letter-spacing: 0.5px;
    }

    .search-bar {
      position: relative;
      width: 45%;
      max-width: 480px;
    }

    .search-bar input {
      width: 100%;
      padding: 10px 45px 10px 18px;
      border: 1px solid #ccc;
      border-radius: 25px;
      outline: none;
      transition: 0.3s;
      font-size: 14px;
    }

    .search-bar input:focus {
      border-color: #d94b6b;
      box-shadow: 0 0 5px rgba(217, 75, 107, 0.3);
    }

    .search-bar i {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #777;
      font-size: 16px;
      cursor: pointer;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 20px;
      color: #444;
    }

    .icons i {
      cursor: pointer;
      transition: 0.3s;
      padding: 8px;
      border-radius: 50%;
    }

    .icons i:hover {
      background: #ffe8ec;
      color: #d94b6b;
    }

    /* ====== NAVBAR ====== */
    .navbar {
      background: #fff;
      border-top: 1px solid #eee;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 35px;
      padding: 14px 0;
      list-style: none;
      transition: all 0.3s ease;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 16px;
      transition: 0.3s ease;
      position: relative;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #d94b6b;
      transition: width 0.3s;
    }

    .nav-links li a:hover::after,
    .nav-links li a.active::after {
      width: 100%;
    }

    .nav-links li a:hover {
      color: #d94b6b;
    }

    /* ====== MOBILE MENU ====== */
    .menu-toggle {
      display: none;
      font-size: 26px;
      color: #d94b6b;
      cursor: pointer;
      padding: 12px 20px;
    }

    @media (max-width: 768px) {
      .search-bar, .icons {
        display: none;
      }

      .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 18px;
      }

      .nav-links {
        flex-direction: column;
        background: #fff;
        text-align: center;
        width: 100%;
        display: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }

      .nav-links.active {
        display: flex;
        animation: dropDown 0.3s ease;
      }

      @keyframes dropDown {
        from {opacity: 0; transform: translateY(-10px);}
        to {opacity: 1; transform: translateY(0);}
      }

      .nav-links li a {
        color: #333;
        padding: 12px 0;
      }

      .nav-links li a:hover {
        background: #ffe8ec;
        color: #d94b6b;
      }
    }
    
    /*Login Button */
    
    .login-btn a {
  background: #e91e63;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.login-btn a:hover {
  background: #d81b60;
}

/**Login btn logic __ kon sa dikhna chhaiye css***/

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Poppins", sans-serif;
}

.icons {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
}

.icons i:hover {
  color: #e91e63;
  transition: 0.3s;
}

.login-btn a {
  background: #e91e63;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.login-btn a:hover {
  background: #d81b60;
}


    /* ====== HERO SECTION ====== */
    .hero {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
      border-radius: 0 0 40px 40px;
    }

    .slider {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 1.5s ease-in-out;
    }

    .slide {
      flex: 1 0 100%;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.25);
    }

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      z-index: 10;
    }

    .hero-text h1 {
      font-size: 48px;
      font-weight: 700;
      letter-spacing: 1px;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .hero-text p {
      font-size: 18px;
      margin-top: 12px;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }

    /* ====== SHOP BY CATEGORIES ====== */
    .categories-slider {
      padding: 90px 6%;
      background: linear-gradient(180deg, #fff9fa 0%, #fff1f4 100%);
      text-align: center;
    }

    .section-title {
      font-size: 34px;
      font-weight: 700;
      margin-bottom: 50px;
      color: #b43a50;
      letter-spacing: 0.5px;
    }

    .section-title span {
      color: #ff91a4;
    }

    .slider-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      max-width: 1300px;
      margin: auto;
    }

    .category-item {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      text-decoration: none;
      color: #1e3c72;
      transition: all 0.4s ease;
      flex: 0 0 calc(20% - 20px);
    }

    .category-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 24px rgba(217, 75, 107, 0.25);
    }

    .category-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .category-item h3 {
      padding: 16px 0 20px;
      font-size: 18px;
      font-weight: 600;
      color: #b43a50;
    }

    /* RESPONSIVE GRID */
    @media (max-width: 1024px) {
      .category-item {
        flex: 0 0 calc(33.33% - 20px);
      }
    }

    @media (max-width: 768px) {
      .category-item {
        flex: 0 0 calc(50% - 15px);
      }

      .middle-bar {
        flex-direction: column;
        gap: 10px;
      }

      .logo {
        font-size: 22px;
      }
    }

    @media (max-width: 480px) {
      .category-item {
        flex: 0 0 100%;
      }
    }
    
    /* ====== FEATURED / TRENDING PRODUCTS ====== */
.featured-products {
  padding: 70px 6%;
  background: #fff;
  text-align: center;
}

.featured-products .section-title {
  font-size: 32px;
  margin-bottom: 36px;
  color: #b43a50;
  font-weight: 700;
}

.featured-products .section-title span { color: #ffe8ec; }

/* GRID - 5 per row on desktop */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: auto;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(217, 75, 107, 0.25);
}

/* IMAGE & DISCOUNT */
.prod-img {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid #f1f1f1;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .prod-img img {
  transform: scale(1.1);
}

/* DISCOUNT BADGE */
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4757;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(255, 71, 87, 0.4);
}

/* FAVOURITE BUTTON */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b81;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fav-btn:hover {
  background: #ff6b81;
  color: #fff;
}

/* CARD BODY */
.prod-body {
  padding: 15px;
  text-align: left;
}

.prod-title {
  font-size: 16px;
  font-weight: 600;
  color: #b43a50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.prod-price {
  font-size: 17px;
  font-weight: 600;
  color: #ff91a4;
  margin-bottom: 10px;
}

.prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* RATING */
.rating {
  font-size: 14px;
  color: #f39c12;
}

/* ACTION BUTTONS */
.action-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.add-cart,
.buy-now {
  flex: 1;
  border: none;
  border-radius: 25px;
  padding: 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.add-cart {
  background: #fff;
  border: 1.5px solid #ff91a4;
  color: #ff91a4;
}

.add-cart:hover {
  background: #ff91a4;
  color: #fff;
}

.buy-now {
  background: #b43a50;
  color: #fff;
}

.buy-now:hover {
  background: #ff91a4;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== SECTION VARIANTS ==================== */
.trending-products {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.all-products {
  background: linear-gradient(180deg, #fff1f4 0%, #ffe6ea 100%);
}

/* ======= FAVOURITE BUTTON STYLE ======= */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #b43a50;
  font-size: 18px;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.fav-btn:hover {
  background: #b43a50;
  color: #fff;
  transform: scale(1.1);
}
.fav-btn.active {
  background: #e91e63;
  color: #fff;
}

/* ===========================
   LANDING BANNER SECTION
=========================== */
.landing-banners {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.banner-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.banner {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.banner-content h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #eee;
}

.banner-content a {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-content a:hover {
  background: #f4b942;
  color: #1e3c72;
}

/* Buttons */
.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  z-index: 3;
  transition: 0.3s;
}
.banner-btn:hover {
  background: rgba(255,255,255,0.5);
  color: #1e3c72;
}
.banner-btn.prev { left: 25px; }
.banner-btn.next { right: 25px; }

@media (max-width: 768px) {
  .landing-banners { height: 55vh; }
  .banner-content h2 { font-size: 28px; }
  .banner-content p { font-size: 14px; }
}


/********deal of the day banner ******/

.deal-section {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.deal-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.deal-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 20px;
  align-items: stretch;
}

.deal-left img,
.deal-top img,
.deal-bottom img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.5s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.deal-left img:hover,
.deal-top img:hover,
.deal-bottom img:hover {
  transform: scale(1.03);
}

/* Right side grid (2 banners) */
.deal-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* Fade animation */
.fade-img {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.fade-out {
  opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .deal-right {
    grid-template-rows: auto;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #ffe8ec;
  color: #b43a50;
  font-family: "Segoe UI", sans-serif;
  padding-top: 60px;
}

/* ===== Footer Container ===== */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  padding: 0 8% 50px;
}

/* ===== Footer Columns ===== */
.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b43a50;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  padding-left: 4px;
}

/* ===== Brand Info ===== */
.footer-col.brand p {
  margin: 10px 0 15px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
}

/* ===== Social Links ===== */
.social-links a {
  display: inline-block;
  margin-right: 8px;
  padding: 10px;
  border-radius: 50%;
  color: #b43a50;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #b43a50;
  color: #ffe8ec;
}

/* ===== Newsletter ===== */
.newsletter form {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 25px 0 0 25px;
  outline: none;
}

.newsletter button {
  background: #b43a50;
  color: #ffe8ec;
  border: none;
  padding: 10px 18px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.newsletter button:hover {
  opacity: 0.9;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 18px 10px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #b43a50;
  backdrop-filter: blur(6px);
}

.footer-bottom .credit {
  margin: 0;
  font-weight: 400;
}

.footer-bottom .credit a {
  color: #ffe8ec;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom .credit a:hover {
  color: #b43a50;
  text-shadow: 0 0 6px #ffe8ec;
}

.footer-bottom .heart {
  display: inline-block;
  color: #ff4d6d;
  animation: pulse 1.4s infinite;
}

/* ===== Heart Animation ===== */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 5% 40px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 10px;
  }
}
