#toast-container {
  z-index: 10000;
}

.custom-toast {
  min-width: 300px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 15px;
  border: none;
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.custom-toast .toast-header {
  border-bottom: none;
  padding: 15px 15px 10px;
  background: white;
}

.custom-toast .toast-body {
  padding: 0 15px 15px;
  color: #555;
  font-size: 0.9rem;
}

.custom-toast .progress {
  height: 4px !important;
  border-radius: 0;
  background: #eee;
}

.custom-toast .progress-bar {
  transition: width 3s linear;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

.custom-toast.hiding {
  animation: fadeOut 0.4s ease-in forwards;
}

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.8s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Spinner End ***/

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.navbar-brand img {
  object-fit: contain;
}

.profile-section {
  animation: fadeIn 0.3s ease-in-out;
}

.order-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.address-card,
.payment-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.order-card .price {
  font-weight: bold;
  color: #81c408;
}

.payment-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.embed-map-responsive {
  position: relative;
  text-align: right;
  width: 100%;
  height: 0;
  padding-bottom: 63.897763578274756%;
}

.embed-map-container {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.embed-map-frame {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.btn.border-secondary {
  transition: 0.5s;
}

.btn.border-secondary:hover {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
  transition: 0.5s;
  background: var(--bs-white);
  border: 0;
}

.topbar {
  padding: 20px;
  border-radius: 230px 100px;
}

.topbar .top-info {
  font-size: 15px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link {
  font-size: 15px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link a {
  letter-spacing: 1px;
}

.topbar .top-link a small:hover {
  color: var(--bs-secondary) !important;
  transition: 0.5s;
}

.topbar .top-link a small:hover i {
  color: var(--bs-primary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
  padding: 10px 15px;
  font-size: 16px;
  transition: 0.5s;
}

.navbar {
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: #81c408;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  border-radius: 10px !important;
  transition: 0.5s;
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  padding: 10px 0 !important;
}

.navbar .dropdown-item {
  padding: 8px 20px !important;
  font-weight: 500;
  color: var(--bs-dark) !important;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}

/* Search Modal Styling & Responsive Mobile Optimization */
#searchModal {
  padding-right: 0 !important;
  overflow-x: hidden !important;
}

#searchModal .modal-dialog.modal-fullscreen {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
  min-height: 100% !important;
}

#searchModal .modal-content {
  background: #f8fafc !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-x: hidden !important;
}

#searchModal .modal-header {
  flex-shrink: 0;
  background: #ffffff !important;
  border-radius: 0 !important;
  position: sticky;
  top: 0;
  z-index: 10;
}

#searchModal #searchSectionHeader {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 9;
}

#searchModal .modal-body {
  flex: 1 1 auto;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  padding: 0 !important;
}

#searchModal .modal-body .container {
  width: 100% !important;
  max-width: 650px !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  box-sizing: border-box !important;
}

#searchModal #modalSearchResultsList {
  width: 100% !important;
  overflow-x: hidden !important;
}

#searchModal #modalSearchResultsList a {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

#searchModal #modalSearchResultsList a .flex-grow-1 {
  min-width: 0 !important;
  overflow: hidden !important;
}

/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
  background:
    linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)),
    url(../img/hero-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Premium Shop CTA Button in Hero Section */
.hero-shop-btn {
  background: var(--bs-primary) !important;
  color: white !important;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  padding: 15px 35px;
  border: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(129, 196, 8, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-shop-btn:hover {
  background: #6ea705 !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(129, 196, 8, 0.45);
}

.hero-shop-btn i {
  transition: transform 0.3s ease;
}

.hero-shop-btn:hover i {
  transform: translateX(5px);
}


.carousel-item {
  position: relative;
}

.carousel-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid var(--bs-white);
  background: var(--bs-primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-next {
  margin-right: 20px;
}

.carousel-control-prev {
  margin-left: 20px;
}

.page-header {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../img/cart-page-header-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {

  .hero-header,
  .page-header,
  .content-header-margin {
    margin-top: 152px !important;
  }
}

@media (max-width: 991.98px) {

  .hero-header,
  .page-header,
  .content-header-margin {
    margin-top: 85px !important;
  }
}

/*** Hero Header end ***/

/*** featurs Start ***/
.featurs .featurs-item .featurs-icon,
.featurs-item .featurs-icon {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.featurs .featurs-item .featurs-icon i,
.featurs-item .featurs-icon i {
  position: relative !important;
  z-index: 3 !important;
  color: #ffffff !important;
}

.featurs .featurs-item .featurs-icon::after,
.featurs-item .featurs-icon::after {
  content: "";
  width: 35px;
  height: 35px;
  background: var(--bs-secondary);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

/*** featurs End ***/

/*** service Start ***/
.service .service-item .service-content {
  position: relative;
  width: 250px;
  height: 130px;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*** service End ***/

/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active,
.fruite .tab-class .nav-item a:hover {
  background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span,
.fruite .tab-class .nav-item a:hover span {
  color: var(--bs-white) !important;
}

.fruite .fruite-categorie .fruite-name {
  line-height: 40px;
}

.fruite-img {
  width: 100%;
  height: 214px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.fruite .fruite-categorie .fruite-name a {
  transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
  color: var(--bs-secondary);
}

.fruite-item {
  height: 100%;
  transition: 0.5s;
  margin-bottom: 30px;
}

.fruite-item:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.3);
}

.fruite-item .fruite-img {
  height: 214px;
  /* matches your existing design */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fruite-item .fruite-img img {
  transition: 0.5s;
}

.fruite-item .fruite-img img:hover {
  transform: scale(1.3);
}

.whatsapp-btn {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1;
}

.whatsapp-btn i {
  font-size: 1.85rem !important;
  color: #25D366 !important;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.whatsapp-btn:hover i {
  transform: scale(1.12);
  color: #128C7E !important;
}

/*** Fruits End ***/

/*** vesitable Start ***/
.vesitable .vesitable-item {
  height: 100%;
  transition: 0.5s;
}

.vesitable .vesitable-item:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
  transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
  transform: scale(1.2);
}

.vesitable .vesitable-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vesitable .vesitable-item .vesitable-img {
  height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vesitable .vesitable-item .vesitable-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vesitable .vesitable-item .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vesitable .vesitable-item .p-4 h4 {
  min-height: 3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vesitable .vesitable-item .p-4 p {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.vesitable .vesitable-item .p-4 .d-flex.justify-content-between {
  margin-top: auto;
}

.vesitable .owl-stage {
  margin: 50px 0;
  position: relative;
}

.vesitable .owl-nav .owl-prev {
  position: absolute;
  top: -8px;
  right: 0;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
}

.vesitable .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
  position: absolute;
  top: -8px;
  right: 88px;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

/*** vesitable End ***/

/*** Banner Section Start ***/
.banner-section {
  background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1));
  border-top: 1px solid rgba(129, 196, 8, 0.08);
  border-bottom: 1px solid rgba(129, 196, 8, 0.08);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

/* Add a glowing orb in middle banner too for design language consistency */
.banner-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(129, 196, 8, 0.06);
  filter: blur(120px);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  pointer-events: none;
  z-index: 1;
}

.banner-section .container {
  position: relative;
  z-index: 2;
}

.banner-title {
  color: #1b2f24;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.banner-subtitle {
  color: var(--bs-primary) !important;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.banner-text {
  color: #4b5d53 !important;
  font-size: 1.05rem;
  line-height: 1.7;
}

.banner-image {
  max-height: 460px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Floating Glassmorphic Badge */
.banner-badge-glass {
  background: rgba(129, 196, 8, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 4px solid white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  top: -30px;
  left: 10%;
  box-shadow: 0 12px 30px rgba(129, 196, 8, 0.3);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-btn {
  background: var(--bs-primary) !important;
  color: white !important;
  border: none !important;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 6px 18px rgba(129, 196, 8, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.banner-btn:hover {
  background: #6ea705 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(129, 196, 8, 0.3);
}

.banner-btn i {
  transition: transform 0.3s ease;
}

.banner-btn:hover i {
  transform: translateX(4px);
}

/*** Banner Section End ***/

/*** Facts Start ***/
.counter {
  height: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
  font-size: 60px;
  margin-bottom: 25px;
}

.counter h4 {
  color: var(--bs-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter h1 {
  margin-bottom: 0;
}

/*** Facts End ***/

/*** Single Page Start ***/
.pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 6px 0;
  margin: 0 auto;
}

.pagination a {
  color: var(--bs-dark);
  padding: 6px 12px;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #ffd8a8;
  border-radius: 10px !important;
  font-size: 0.88rem;
  font-weight: 600;
  flex-shrink: 0;
}

.pagination a.active {
  background-color: var(--bs-primary) !important;
  color: #ffffff !important;
  border-color: var(--bs-primary) !important;
}

.pagination a.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.pagination a:hover:not(.active):not(.disabled) {
  background-color: #fef9c3;
  border-color: #eab308;
}

.pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  color: #64748b;
  font-weight: 700;
  font-size: 0.85rem;
  user-select: none;
}

@media (max-width: 576px) {
  .pagination {
    gap: 4px;
  }

  .pagination a {
    padding: 4px 8px;
    min-width: 30px;
    height: 30px;
    font-size: 0.78rem;
    border-radius: 8px !important;
  }
}

.nav.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--bs-secondary) !important;
}

/*** Single Page End ***/

/*** Footer Start ***/
.footer .footer-item .btn-link {
  line-height: 35px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
  color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
  line-height: 35px;
}

/*** Footer End ***/
/* Consistent Product Card Height */
.fruite-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fruite-item .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fruite-item .p-4 h4 {
  min-height: 3rem;
  /* Approximate height for 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fruite-item .p-4 p {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.fruite-item .p-4 .d-flex.justify-content-between {
  margin-top: auto;
}

/* 🌿 Premium Custom Sorting Dropdown UI */
.premium-sort-container {
  position: relative;
  z-index: 1000;
}

#sortDropdownBtn {
  background-color: #fff !important;
  border: 1px solid #e0e0e0 !important;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  min-width: 220px;
  justify-content: space-between;
}

#sortDropdownBtn:hover {
  border-color: var(--bs-primary) !important;
  background-color: var(--bs-light) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#sortDropdownBtn .fa-chevron-down {
  transition: transform 0.3s ease;
}

.premium-sort-container.active #sortDropdownBtn .fa-chevron-down {
  transform: rotate(180deg);
}

.sort-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin-top: 8px;
  background: white;
  min-width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.premium-sort-container.active .sort-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: block !important;
}

.sort-option {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #555;
  transition: all 0.25s ease;
  border-radius: 6px;
  margin-bottom: 2px;
}

.sort-option:last-child {
  margin-bottom: 0;
}

.sort-option:hover {
  background-color: rgba(129, 196, 8, 0.1);
  color: var(--bs-primary);
  padding-left: 20px;
}

.sort-option.active {
  background-color: var(--bs-primary);
  color: white;
  font-weight: bold;
}

/* ==========================================================================
   🧴 Horizontal Category Carousel UI (SkinDekho Custom Layout)
   ========================================================================== */
.category-carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  padding: 10px 5px;
}

.category-carousel-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.category-card {
  flex: 0 0 76px;
  max-width: 76px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 576px) {
  .category-card {
    flex: 0 0 calc(100% / 4 - 16px);
    max-width: calc(100% / 4 - 16px);
  }
}

@media (min-width: 768px) {
  .category-card {
    flex: 0 0 calc(100% / 6 - 20px);
    max-width: calc(100% / 6 - 20px);
  }
}

@media (min-width: 1200px) {
  .category-card {
    flex: 0 0 calc(100% / 8 - 21px);
    /* 8 cards as per reference screenshot */
    max-width: calc(100% / 8 - 21px);
  }
}

.category-card-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.category-card-img-inner {
  background-color: #ffffff;
  width: 80%;
  height: 80%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-card:hover .category-card-img-wrapper {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.category-card:hover .category-card-img-inner {
  transform: scale(1.04);
}

.category-card img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover img {
  transform: scale(1.08) rotate(1deg);
}

.category-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 4px;
}

.category-card:hover .category-card-title {
  color: var(--bs-primary);
  transform: scale(1.02);
}

.category-nav-buttons button {
  background: white !important;
  border: 1px solid #eaeaea !important;
  transition: all 0.3s ease;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-nav-buttons button:hover {
  background: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-nav-buttons button:hover i {
  color: white !important;
}

.category-nav-buttons button i {
  font-size: 14px;
  transition: color 0.3s ease;
}

/* ==========================================================================
   🧴 Horizontal Latest Products Carousel UI
   ========================================================================== */
.latest-carousel-wrapper,
.featured-carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  padding: 15px 5px;
}

.latest-carousel-wrapper::-webkit-scrollbar,
.featured-carousel-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.latest-product-card,
.featured-product-card {
  flex: 0 0 calc(50% - 6px);
  /* 2 cards side-by-side on mobile (Clinikally style) */
  max-width: calc(50% - 6px);
  min-width: 145px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {

  .latest-product-card,
  .featured-product-card {
    flex: 0 0 calc(100% / 2 - 16px);
    /* 2 cards */
    max-width: calc(100% / 2 - 16px);
  }
}

@media (min-width: 992px) {

  .latest-product-card,
  .featured-product-card {
    flex: 0 0 calc(100% / 3 - 20px);
    /* 3 cards */
    max-width: calc(100% / 3 - 20px);
  }
}

@media (min-width: 1200px) {

  .latest-product-card,
  .featured-product-card {
    flex: 0 0 calc(100% / 4 - 24px);
    /* 4 cards */
    max-width: calc(100% / 4 - 24px);
  }
}

.latest-nav-buttons button,
.featured-nav-buttons button {
  background: white !important;
  border: 1px solid #eaeaea !important;
  transition: all 0.3s ease;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-nav-buttons button:hover,
.featured-nav-buttons button:hover {
  background: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.latest-nav-buttons button:hover i,
.featured-nav-buttons button:hover i {
  color: white !important;
}

.latest-nav-buttons button i,
.featured-nav-buttons button i {
  font-size: 14px;
  transition: color 0.3s ease;
}

/* ==========================================================================
   🧴 Product Description 2-line clamp (applies to all product cards)
   ========================================================================== */
.product-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  max-height: calc(1.5em * 2);
  /* fallback for older browsers */
  margin-bottom: 1rem;
}

/* ==========================================================================
   📱 Mobile Screen Optimization (Clinikally-Grade Mobile Experience)
   ========================================================================== */
@media (max-width: 767.98px) {

  /* Body bottom padding to prevent sticky bottom nav overlap */
  body {
    padding-bottom: 62px !important;
  }

  /* Fixed Top Navbar & Announcement */
  .fixed-top .navbar {
    padding-top: 0.35rem !important;
    padding-bottom: 0.35rem !important;
  }

  .navbar-brand img {
    height: 36px !important;
  }

  .navbar .fa-2x,
  .user-icon-link .fa-2x,
  .fa-shopping-bag.fa-2x {
    font-size: 1.2rem !important;
  }

  .navbar .position-relative span.position-absolute {
    top: -6px !important;
    left: 10px !important;
    height: 16px !important;
    min-width: 16px !important;
    font-size: 0.65rem !important;
    line-height: 16px !important;
    padding: 0 4px !important;
  }

  /* 🌟 Hero Header (Balanced Mobile Height & Spacing) */
  .hero-header {
    margin-top: 82px !important;
    margin-bottom: 1rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hero-header .container {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .hero-header .row.g-5 {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 0.75rem;
  }

  .hero-header h4.text-secondary {
    font-size: 0.78rem !important;
    color: var(--bs-secondary) !important;
    margin-bottom: 0.25rem !important;
    letter-spacing: 0.3px;
    font-weight: 700;
  }

  .hero-header h1.display-3 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
    font-weight: 800;
    color: var(--bs-primary);
  }

  .hero-shop-btn {
    padding: 8px 18px !important;
    font-size: 0.82rem !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 12px rgba(129, 196, 8, 0.25) !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-header .carousel {
    border-radius: 12px;
    overflow: hidden;
  }

  .hero-header .carousel-item {
    max-height: 180px;
    border-radius: 12px;
    overflow: hidden;
  }

  .hero-header .carousel-item img {
    height: 180px !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 12px;
  }

  .hero-header .carousel-control-prev,
  .hero-header .carousel-control-next {
    width: 26px !important;
    height: 26px !important;
    background: rgba(129, 196, 8, 0.8) !important;
  }

  .hero-header .carousel-control-prev-icon,
  .hero-header .carousel-control-next-icon {
    width: 11px;
    height: 11px;
  }

  .hero-header .carousel-control-prev {
    left: 6px !important;
    margin-left: 0 !important;
  }

  .hero-header .carousel-control-next {
    right: 6px !important;
    margin-right: 0 !important;
  }

  /* Back to Top button on mobile positioned above sticky nav */
  .back-to-top {
    bottom: 68px !important;
    right: 15px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 12px !important;
    z-index: 1000 !important;
  }

  /* 🏷️ Section Headings & Carousel Nav Buttons */
  .category-section h1,
  .featured-products-section h1,
  .latest-products-section h1 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #1e293b;
  }

  .category-section .d-flex.justify-content-between,
  .featured-products-section .d-flex.justify-content-between,
  .latest-products-section .d-flex.justify-content-between {
    margin-bottom: 0.5rem !important;
  }

  .category-nav-buttons button,
  .featured-nav-buttons button,
  .latest-nav-buttons button {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
  }

  .category-nav-buttons button i,
  .featured-nav-buttons button i,
  .latest-nav-buttons button i {
    font-size: 11px !important;
  }

  .category-section,
  .featured-products-section,
  .latest-products-section {
    padding-top: 0.35rem !important;
    padding-bottom: 0.5rem !important;
  }

  .category-section .container,
  .featured-products-section .container,
  .latest-products-section .container {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  /* 🗂️ Categories (4 per view / compact ~70px rounded cards) */
  .category-carousel-track {
    gap: 10px !important;
  }

  .category-carousel-wrapper {
    padding: 6px 2px !important;
  }

  .category-card {
    flex: 0 0 74px !important;
    max-width: 74px !important;
  }

  .category-card-img-wrapper {
    width: 66px !important;
    height: 66px !important;
    border-radius: 16px !important;
    margin-bottom: 4px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  }

  .category-card-img-inner {
    width: 82% !important;
    height: 82% !important;
    border-radius: 12px !important;
  }

  .category-card img {
    width: 70% !important;
    height: 70% !important;
  }

  .category-card-title {
    font-size: 0.72rem !important;
    line-height: 1.15 !important;
    margin-top: 2px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 74px;
    font-weight: 500;
  }

  /* 🛍️ Product Cards (2 per row / Clinikally-Style Side-by-Side) */
  .latest-carousel-track,
  .featured-carousel-track {
    gap: 10px !important;
  }

  .latest-carousel-wrapper,
  .featured-carousel-wrapper {
    padding: 8px 2px !important;
  }

  .latest-product-card,
  .featured-product-card,
  .best-used-product-card {
    flex: 0 0 calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
    min-width: 145px !important;
  }

  .floating-widget-container {
    display: none !important;
  }

  .fruite-item {
    margin-bottom: 10px !important;
    border-radius: 12px !important;
    border: 1px solid #eef2ed !important;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    overflow: hidden;
  }

  .fruite-item .fruite-img {
    height: 130px !important;
    padding: 8px !important;
    background: #f8faf7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fruite-item .fruite-img img {
    max-height: 114px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .fruite-item .p-4 {
    padding: 8px 8px !important;
  }

  .fruite-item .p-4 h4 {
    min-height: 2.1rem !important;
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
    font-weight: 600;
  }

  .fruite-item .p-4 h4 a {
    color: #1e293b !important;
    text-decoration: none;
  }

  /* Hide raw markdown description paragraphs on mobile product cards */
  .product-desc {
    display: none !important;
  }

  .fruite-item .position-absolute.bg-secondary,
  .fruite-item .badge-tag {
    font-size: 0.6rem !important;
    padding: 2px 5px !important;
    top: 6px !important;
    left: 6px !important;
    border-radius: 4px !important;
    font-weight: 600;
  }

  .fruite-item .product-rating {
    font-size: 0.68rem;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .fruite-item .p-4 .text-dark.fs-5 {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 4px !important;
  }

  .fruite-item .add-to-cart-btn {
    font-size: 0.68rem !important;
    padding: 5px 6px !important;
    border-radius: 50px !important;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
  }

  .fruite-item .add-to-cart-btn i {
    font-size: 0.68rem;
    margin-right: 3px !important;
  }

  .fruite-item .whatsapp-btn {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .fruite-item .whatsapp-btn i {
    font-size: 1.55rem !important;
    color: #25D366 !important;
  }

  /* 🌿 Banner Section (Science Meets Skincare) */
  .banner-section {
    padding: 22px 0 !important;
    margin: 1.25rem 0 !important;
  }

  .banner-section .row.g-5 {
    --bs-gutter-y: 1rem;
  }

  .banner-title {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.25rem !important;
  }

  .banner-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
  }

  .banner-text {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.75rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .banner-btn {
    padding: 7px 18px !important;
    font-size: 0.8rem !important;
  }

  .banner-image {
    max-height: 170px !important;
    object-fit: contain;
  }

  .banner-badge-glass {
    width: 62px !important;
    height: 62px !important;
    top: -12px !important;
    left: 8% !important;
    border-width: 2px !important;
  }

  .banner-badge-glass span.h2 {
    font-size: 0.95rem !important;
    margin: 0 !important;
  }

  .banner-badge-glass span.text-uppercase {
    font-size: 0.55rem !important;
  }

  /* 📊 Fact / Counters Section (2x2 Compact Grid) */
  .bg-light.p-5.rounded {
    padding: 12px 8px !important;
    border-radius: 12px !important;
  }

  .counter.bg-white.rounded.p-5 {
    padding: 10px 4px !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .counter i {
    font-size: 1.2rem !important;
    margin-bottom: 3px !important;
  }

  .counter h4 {
    font-size: 0.65rem !important;
    margin-bottom: 2px !important;
    letter-spacing: 0.3px;
    font-weight: 600;
  }

  .counter h1 {
    font-size: 1.15rem !important;
    margin-bottom: 0 !important;
    font-weight: 800;
  }

  /* Feature icons on mobile */
  .featurs-item {
    padding: 0.75rem 0.4rem !important;
  }

  .featurs-item .featurs-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .featurs-item .featurs-icon i {
    font-size: 1.35rem !important;
    position: relative !important;
    z-index: 3 !important;
    color: #ffffff !important;
    display: inline-block !important;
    line-height: 1 !important;
  }

  .featurs-item .featurs-icon::after {
    content: "" !important;
    width: 16px !important;
    height: 16px !important;
    bottom: -5px !important;
    left: 50% !important;
    transform: translateX(-50%) rotate(45deg) !important;
    background: var(--bs-secondary) !important;
    position: absolute !important;
    z-index: 1 !important;
  }

  .featurs-content h5 {
    font-size: 0.78rem !important;
    margin-bottom: 2px !important;
  }

  .featurs-content p {
    font-size: 0.65rem !important;
  }
}

/* ==========================================================================
   📱 Clinikally-Style Sticky Bottom Navigation Bar
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #ffffff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1050;
  border-top: 1px solid #f0f0f0;
  padding: 4px 0;
}

.mobile-bottom-nav .mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  flex: 1;
  height: 100%;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-bottom-nav .mobile-nav-item i {
  font-size: 1.1rem;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.mobile-bottom-nav .mobile-nav-item.active,
.mobile-bottom-nav .mobile-nav-item:hover {
  color: var(--bs-primary);
}

.mobile-bottom-nav .mobile-nav-item:active i {
  transform: scale(0.92);
}

.mobile-bottom-nav .mobile-cart-badge {
  position: absolute;
  top: 1px;
  right: calc(50% - 15px);
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid #fff;
}

/* 🔍 Mobile & Desktop Shop Search Controls */
.shop-controls-bar {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shop-search-wrapper .input-group {
  transition: all 0.3s ease;
  border: 1px solid #dee2e6 !important;
}

.shop-search-wrapper .input-group:focus-within {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 0.25rem rgba(129, 196, 8, 0.25) !important;
}

#shopSearchInput {
  font-size: 0.95rem;
}

/* 🚫 Hide browser native clear cancel button to prevent duplicate X icons */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none !important;
}

#shopSearchIconBtn {
  cursor: pointer !important;
  transition: all 0.2s ease;
  border: none !important;
}

#shopSearchIconBtn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 10px rgba(129, 196, 8, 0.3);
}

#shopSearchIconBtn:active {
  transform: scale(0.96);
}

#clearShopSearchBtn {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

#clearShopSearchBtn:hover {
  color: #dc3545 !important;
}

/* 📱 Mobile Responsiveness for Shop Controls & Categories */
@media (max-width: 991.98px) {
  .shop-controls-bar {
    padding: 0.5rem 0.65rem !important;
    border-radius: 12px;
  }

  #shopSearchInput {
    font-size: 0.825rem !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  #shopSearchIconBtn {
    padding: 0.25rem 0.75rem !important;
    font-size: 0.8rem !important;
    border-radius: 50px !important;
  }

  #toggleMobileFiltersBtn {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.75rem !important;
    white-space: nowrap;
    border-radius: 50px !important;
    font-weight: 600;
  }

  .premium-sort-container #sortDropdownBtn {
    min-width: 100% !important;
    width: 100% !important;
    font-size: 0.8rem !important;
    padding: 0.35rem 0.75rem !important;
    border-radius: 50px !important;
  }

  .sort-menu {
    font-size: 0.8rem !important;
  }

  .fruite-categorie {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 8px;
    scrollbar-width: none;
    /* Firefox */
  }

  .fruite-categorie::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .fruite-categorie li {
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
  }

  .fruite-categorie li a {
    display: inline-flex !important;
    align-items: center;
    padding: 6px 14px !important;
    background-color: #f0f2f5;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
    color: #495057 !important;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .fruite-categorie li a.active,
  .fruite-categorie li a:hover {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
  }

  /* 📱 Ensure heading is 100% visible below fixed top navbar on mobile */
  .shop-page .content-header-margin {
    margin-top: 122px !important;
  }

  .shop-page .container-fluid.fruite {
    padding-top: 0.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .shop-page .container-fluid.fruite>.container {
    padding-top: 0.25rem !important;
    padding-bottom: 1rem !important;
  }

  .shop-page h1 {
    font-size: 1.4rem !important;
    margin-bottom: 0.75rem !important;
  }

  #mobileFiltersContainer {
    background: #ffffff;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    margin-bottom: 1.25rem;
  }

  #mobileFiltersContainer.d-block {
    display: block !important;
  }
}

/* 💻 Remove excess top space on desktop for shop page */
@media (min-width: 992px) {
  .shop-page .content-header-margin {
    margin-top: 122px !important;
  }

  .shop-page .container-fluid.fruite {
    padding-top: 0.5rem !important;
    padding-bottom: 2rem !important;
  }

  .shop-page .container-fluid.fruite>.container {
    padding-top: 0.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* 🏷️ Product Card Category Badge (Proper size in web view, compact in mobile) */
.product-card-category-badge {
  top: 10px !important;
  left: 10px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 5px 12px !important;
  border-radius: 6px !important;
  z-index: 2;
  letter-spacing: 0.2px;
}

@media (max-width: 767.98px) {
  .product-card-category-badge {
    top: 6px !important;
    left: 6px !important;
    font-size: 0.62rem !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
  }
}

@media (max-width: 1199.98px) {
  .navbar {
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }

  .navbar-collapse {
    position: absolute !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12) !important;
    z-index: 1050 !important;
    padding: 1rem !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .navbar-collapse .d-flex.m-3,
  .navbar-collapse .d-flex.me-0 {
    display: none !important;
  }
}

/* 🌀 Ultra-Smooth Horizontal Carousel Scroll */
.category-carousel-wrapper,
.latest-carousel-wrapper,
.featured-carousel-wrapper {
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  touch-action: pan-x pan-y !important;
}

.category-card,
.latest-product-card,
.featured-product-card {
  scroll-snap-align: none !important;
}