body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
}
/* Dropdown style fix */
.top-bar .dropdown-menu {
    min-width: 80px;
    font-size: 0.8rem;
    padding: 0.2rem 0;
}
.top-bar .dropdown-toggle::after {
    display: none; /* Default bootstrap arrow hatane ke liye */
}
.top-bar {
  background: #e9ecef;
  font-size: 0.8rem;
}
.badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #fd7e14;
  border-radius: 50%;
  font-size: 0.7rem;
}

/* Sidebar Logic */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 1060;
  transition: 0.4s;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar-menu.active {
  left: 0;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
}
.sidebar-overlay.active {
  display: block;
}

/* Banner */
/* Banner */
.hero-banner {
  width: 100%;
  height: 400px;
  background-color: #e2e6ea;
  background-size: cover;
  background-position: center;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Card hover effect */
.card-body strong {
  color: #0d6efd;
  font-size: 1.1rem;
}
.card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.card img {
  height: 150px;
  object-fit: contain;
}

/* Category circles */
.catSwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rounded-circle {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catSwiper .swiper-slide img {
  border: 2px solid #fff; /* White border for clean look */
  transition: transform 0.3s ease;
}

.catSwiper .swiper-slide img:hover {
  transform: scale(1.05); /* Hover effect */
}

/* Swiper Container Padding */
.productSwiper,
.catSwiper {
  padding: 20px 0;
}

/* Card Hover effect */
.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Image handling */
.card-img-top {
  height: 150px;
  object-fit: contain;
  padding: 10px;
}

.card {
  border-radius: 12px; /* Thoda aur rounded corners modern look ke liye */
  border: 1px solid #eee;
}

/* Styling for Feature icons and cards */
.card i {
  color: #0d6efd !important;
}
.card {
  transition: 0.3s;
  text-align: center;
  height: 100%;
  justify-content: center;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.feature-section .feature-box {
  padding: 30px 15px;
  transition: 0.3s;
  cursor: pointer;
}

.feature-section .feature-box:hover {
  background-color: #f8fbff;
}

.feature-section .feature-box p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Mobile par borders adjust karne ke liye */
@media (max-width: 768px) {
  .feature-section .border-end {
    border-right: none !important;
    border-bottom: 1px solid #eee;
  }
  .feature-section .col-6:nth-child(odd) {
    border-right: 1px solid #eee;
  }
}

/* Footer specific spacing */
footer a:hover {
  color: #f8f9fa !important;
  text-decoration: underline !important;
}
footer .input-group {
  border-radius: 5px;
  overflow: hidden;
}
footer .fab {
  cursor: pointer;
  font-size: 1.2rem;
}
