*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
}

/* NAVBAR */
.custom-navbar{
    width:100%;
    background:#fff;
    border-bottom:1px solid #eee;
    padding:0 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
    position:relative;
}

/* LOGO */
.logo img{
    height:60px;
}
/* MAIN MENU */
.mob-menu > li > a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:500;
    padding:30px 0;
    display:block;
    position:relative;
    transition:.3s;
    text-transform:uppercase;
}

/* DROPDOWN MENU */
.custom-dropdown li a{
    padding:12px 18px;
    display:block;
    font-size:14px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.3s;
    text-transform:uppercase;
}
/* MENU */
.mob-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

/* MAIN MENU ITEMS */


.mob-menu > li > a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:500;
    padding:20px 0;
    display:block;
    position:relative;
    transition:.3s;
   margin-top: 15px;
}

/* UNDERLINE EFFECT ONLY MAIN MENU */
.mob-menu > li > a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:18px;
    width:0;
    height:2px;
    background:#d32f2f;
    transform:translateX(-50%);
    transition:.3s ease;
}

.mob-menu > li > a:hover::after{
    width:100%;
}

.mob-menu > li > a:hover{
    color:#d32f2f;
}

/* DROPDOWN */
.custom-dropdown{
    position:absolute;
    top:100%;
   
    min-width:220px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    z-index:999;
    list-style:none;
}

/* SUBMENU ITEMS */
.custom-dropdown li a{
    padding:12px 18px;
    display:block;
    font-size:14px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.3s;
}

/* NO UNDERLINE IN SUBMENU */
.custom-dropdown li a::after{
    display:none !important;
}

.custom-dropdown li a:hover{
    background:#fafafa;
    color:#d32f2f;
}

/* SHOW DROPDOWN */
.mob-menu > li:hover .custom-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* RIGHT ICONS */
.nav-icons{
    display:flex;
    align-items:center;
    gap:18px;
}

.nav-icons i{
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.nav-icons i:hover{
    color:#d32f2f;
}

/* TOGGLE BUTTON */
.toggle-btn{
    display:none;
    font-size:24px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:992px){

    .toggle-btn{
        display:block;
    }

    .nav-icons{
        display:none;
    }

        .mob-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
        transition: .4s;
        padding: 0px 20px;}

    .mob-menu.active{
        left:0;
        z-index: 999;
    }

    .mob-menu > li{
        width:100%;
    }

    .mob-menu > li > a{
        width:100%;
        padding:14px 0;
        margin-top: 1px;
    }

    .mob-menu > li > a::after{
        display:none;
    }

    .custom-dropdown{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        display:none;
        width:100%;
        padding-left:15px;
    }

    .mob-menu li.open .custom-dropdown{
        display:block;
    }
    
}


/* Icon container */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each icon */
.navbar-icons .nav-link {
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

/* Hover effect */
.navbar-icons .nav-link:hover {
  color: #ff6600;
  transform: scale(1.2);
}

/* Remove default link style */
.navbar-icons a {
  text-decoration: none;
}


/* hero section start */
.hero-section {
  width: 100%;
  overflow: hidden;
}

.slide-bg {
  height: 500px;
  position: relative;
}

/* Background */
.bg1 {
  background: linear-gradient(to bottom, #c98c2e, #b14a4a);
}

.bg2 {
  background: linear-gradient(to bottom, #8b3a3a, #d9a15c);
}

/* Center logo */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-logo img {
  width: 220px;
}

/* Left & Right images */
.model {
  position: absolute;
  bottom: 0;
  height: 90%;
}

.model.left {
  left: 20px;
}

.model.right {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-bg {
    height: 300px;
  }

  .model {
    height: 70%;
  }

  .center-logo img {
    width: 150px;
  }
}
.image-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  
}

/* Images */
.img-box {
  position: absolute;
  bottom: 0;
  height: 100%;
}

.img-box img {
  height: 100%;
  object-fit: cover;
}

/* Left image */
.img-box.left {
  left: 0;
}

/* Right image */
.img-box.right {
  right: 0;
}

/* Center content */


.center-content img {
  width: 100%;
  
}

.center-content p {
  color: #fff;
  font-size: 18px;
  letter-spacing: 2px;
}

/* 🔥 Responsive */
@media (max-width: 768px) {

  .image-section {
    height: 100%;
    z-index: -1;
  }

  .img-box img {
    height: 100%;
  }

  .center-content img {
    width: 100%;
  }

  .center-content p {
    font-size: 14px;
  }

}
.image-section {
  width: 100%;
  text-align: center;
}

/* Default */
.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

/* 🔥 Mobile view */
@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }

  .mobile-img img {
    width: 100%;
    height: auto;
  }
}
/* ===== TOP CATEGORIES FIX ===== */
.top-categories {
  background: #f5f5f5;
}

.top-categories h2 {
  font-weight: 700;
  color: #0d2b5c;
}

/* CARD */
.category {
  background: linear-gradient(135deg, #d4af37, #f7e7a9);
  padding: 10px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

/* LINK FIX */
.category a {
  text-decoration: none;
  color: #000;
  display: block;
}
.saree-text{
  display: none;
}
/* IMAGE */
.category img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

/* TEXT */
.category h5 {
  margin-top: 15px;
  font-weight: 700;
  font-size: 16px;
}

/* HOVER */
.category:hover {
  transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 576px) {
  .category img {
    height: 200px;
  }
  .saree-text{
  display: block;
}
}

.top-categories-section{
  padding:50px 20px;
}
.section-title{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#0b3d91;
  margin-top: 10px;
  margin-bottom:30px;
}

.top-categories-section{
  padding:50px 20px;
}
.section-title{
  text-align:center;
  font-size:30px;
  font-weight:800;
  color:#0b3d91;
  margin-bottom:35px;
}
.category-card{
  background:linear-gradient(135deg,#c89211,#f7df86,#c89211);
  padding:18px;
  border-radius:22px;
  box-shadow:0 8px 18px rgba(0,0,0,0.15);
  transition:0.3s ease;
  cursor:pointer;
  height:100%;
}
.category-card:hover{
  transform:translateY(-8px);
}
.category-card img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:18px;
}
.category-card h3{
  text-align:center;
  font-size:28px;
  font-weight:800;
  color:#1d1d1d;
  margin-top:18px;
  text-transform:uppercase;
}
.glow-line{
  width:100%;
  height:10px;
  margin-top:15px;
  border-radius:20px;
  background:radial-gradient(circle,#fff 15%,transparent 16%) repeat-x;
  background-size:24px 10px;
}
@media(max-width:768px){
  .section-title{font-size:26px;}
  .category-card{
    padding:10px;
    border-radius:16px;
  }
  .category-card h3{
    font-size:18px;
    margin-top:10px;
  }
  .category-card img{height:80%;}
}
/* product slider */
.product-section{
  padding:50px 20px;
}
.product-slider {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .product-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      transition: .3s;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, .08)
    }

    .product-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .image-wrap {
      position: relative;
      overflow: hidden;
      height: 420px;
      background: #f9f9f9;
    }

    .image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      transition: .4s ease;
    }

    .image-wrap img.second {
      opacity: 0
    }

    .product-card:hover .image-wrap img.second {
      opacity: 1
    }

    .product-card:hover .image-wrap img.first {
      opacity: 0
    }

    /* FIXED BUTTON INSIDE IMAGE BOTTOM */
    .add-cart {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      background: #0d3b86;
      color: #fff;
      border: none;
      padding: 14px;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: .35s;
      z-index: 5;
    }

    .product-card:hover .add-cart {
      opacity: 1;
      transform: translateY(0);
    }

    .info {
      padding: 16px
    }

    .box-title {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 10px;
      color: #0d3b86;
    }

    .price-row {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .old {
      color: #888;
      text-decoration: line-through
    }

    .new {
      color: #d60000;
      font-size: 15px;
      font-weight: 700
    }

    .discount {
      background: #d60000;
      color: #fff;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 10px
    }
.view-all-btn{
      display:inline-block;
      background:#0d3b86;
      color:#fff;
      text-decoration:none;
      padding:14px 34px;
      border-radius:40px;
      font-weight:700;
      letter-spacing:1px;
      transition:.3s;
    }
    @media(max-width:991px) {
      .product-slider {
        grid-template-columns: repeat(2, 1fr)
      }
      .view-all-btn{
      display:inline-block;
      background:#0d3b86;
      color:#fff;
      text-decoration:none;
      padding:14px 34px;
      border-radius:40px;
      font-weight:700;
      letter-spacing:1px;
      transition:.3s;
    }

    .view-all-btn:hover{
      background:#092a61;
      transform:translateY(-2px);
    }

    }

    @media(max-width:768px) {
      .product-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 10px;
      }

      .product-slider::-webkit-scrollbar {
        display: none
      }

      .product-card {
        min-width: 48%;
        scroll-snap-align: start;
      }

      .image-wrap {
        height: 280px
      }
    }

    /* four-column layout */
   .img-box {
      position: relative;
    }

    .img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .label {
      position: absolute;
      bottom: 15px;
      left: 15px;
      background: gold;
      padding: 8px 16px;
      border-radius: 25px;
      font-weight: bold;
    }

    .title {
      text-align: center;
      margin: 20px 0;
      font-weight: bold;
      font-size: 28px;
    }

    /* height control (important for matching design) */
    .big-img {
      height: 100%;
    }

    .small-img {
      height: 48%;
    }

    .center-col {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
.saree-wrapper {
  display: none;
  
  
}
    

.saree-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.saree-card {
  position: relative;
}

.saree-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* label style */
.saree-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: gold;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* size control */
.saree-large {
  height: 240px;
}

.saree-small {
  height: 120px;
}

/* mobile responsive */
@media (max-width: 600px) {
  .saree-large {
    height: 200px;
  }

  .saree-small {
    height: 100px;
  }
  .contener-one{
  display: none;
}
.saree-wrapper {
  display: flex;
  gap: 12px;
  
}

}
