 /* Apply Inter font globally and smooth scrolling */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #f7f7f7;
}
/* Custom Container for better desktop centering */
.container-custom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/* Transition utility for smooth hover effects */
.transition-ease {
    transition: all 0.3s ease-in-out;
}

/* স্লাইড ট্রানজিশন যোগ করা হয়েছে */
.slider-item {
    transition: opacity 0.6s ease-in-out;
}
/* Custom scrollbar hiding for horizontal list */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}


.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Category Box Size */
.category-box {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .category-box {
    width: 140px;
    height: 140px;
  }
}
@media (min-width: 1024px) {
  .category-box {
    width: 170px;
    height: 170px;
  }
}

/* কার্ট সাইডবার স্টাইল */
#cartSidebar {
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}
#cartSidebar.open {
    transform: translateX(0);
}