.marquee-bar{
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #598f1d;
  color: #fff;
  padding: 6px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  z-index: 1040;
}

.about-content i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.about-content h2 {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(217, 44, 133, 0.5);
}

.shining-btn {
    background: linear-gradient(90deg, #598f1d, #ff9f45);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(217, 44, 133, 0.5);
    transition: all 0.3s ease;
}

.shining-btn:hover {
    background: linear-gradient(90deg, #ff9f45, #598f1d);
    box-shadow: 0 0 20px rgba(217, 44, 133, 0.8);
}

    .custom-scroll-btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    left: -15px;
    z-index: 5;
    text-align:center;
    display:flex;
    justify-content:center;
    background-color:white;
}
.custom-scroll-btn-right {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    left: 1200px;
    z-index: 5;
    text-align:center;
    display:flex;
    justify-content:center;
    background-color:white;
}




    .icon-btn {
      width: 40px; height: 40px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .icon-btn i { color: #198754; font-size: 18px; }
    .icon-btn:hover { background: #198754; }
    .icon-btn:hover i { color: #fff; }

    .badge-custom {
      position: absolute;
      top: 0;
      right: 0;
      background: #198754;
      color: #fff;
      font-size: 11px;
      padding: 2px 5px;
      border-radius: 50%;
      border: 1px solid #fff;
    }

    .bottom-navbar {
      background: #fff;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
    .bottom-navbar a {
      color: #000 !important;
      padding: 10px 15px;
      font-weight: 500;
    }
    .bottom-navbar a:hover {
      color: #598f1d !important;
      text-decoration: none;
    }
    .offcanvas-body a {
      color: #434896;
      margin-bottom: 15px;
      display: block;
    }
    .offcanvas-body a:hover {
      color: #598f1d;
    }


    .flex-direction-responsive {
  display: flex;
  flex-direction: row;
}
.category-sidebar {
    width: 20%;
    max-width: 20%;
    min-width: 20%;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #eee;}
@media (max-width: 768px) {
  .flex-direction-responsive {
    flex-direction: row; /* Always row on mobile too */
  }

   .category-sidebar {
    width: 85px !important;
    max-width: 85px !important;
    min-width: 85px !important;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #eee;
  }
}
    .product-img-wrap {
    overflow: hidden;
    border-radius: 10px;
}

.product-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.product-img-wrap img:hover {
    transform: scale(1.05);
}

    



    
    .header-icons {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .hide-scrollbar {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      scroll-behavior: smooth;
      padding-bottom: 5px;
      scrollbar-width: none;
    }
    .hide-scrollbar::-webkit-scrollbar {
      display: none;
    }
    .card-img-top {
      transition: transform 0.3s ease;
    }
    .card-img-top:hover {
      transform: rotate(3deg) scale(1.08);
    }
    .Rupees {
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    .product-card {
      flex: 0 0 auto;
      min-width: 126px;
      max-width: 200px;
    }
    
  
    @keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#productScroll::-webkit-scrollbar {
  display: none;
}
#productScroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-area {
  position: relative;
  width: 220px;
  height: 100px;
}

.wind-effect {
  position: absolute;
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, #679509 0%, transparent 100%);
  top: 60px;
  left: 0;
  animation: windMove 0.8s linear infinite;
  opacity: 0.7;
  border-radius: 3px;
}

.wind-delay {
  top: 70px;
  animation-delay: 0.4s;
}

.cart-fixed {
  position: absolute;
  width: 70px;
  height: auto;
  left: 75px;
  top: 0;
}
  
@keyframes windMove {
  0% { transform: translateX(0); opacity: 0.7; }
  100% { transform: translateX(100px); opacity: 0; }
}


.dropdown-hover {
  position: relative;
  display: inline-block;
}

.dropdown-hover .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 999;
  top: 100%;
  left: 0;
  border-radius: 6px;
  border: 1px solid #eee;
}

.dropdown-hover .dropdown-content a {
  color: #434896;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-hover .dropdown-content a:hover {
  background-color: #f4f4f4;
  color: #598f1d;
}

.dropdown-hover:hover .dropdown-content {
  display: block;
}
.offcanvas-start {
  z-index: 1100; /* Ensure it's higher than navbar (usually z-index: 1030–1050) */
}


/* .about_new{
  background:url('assets/img/backnew.jpg');
} */