/* ===== RESPONSIVE STYLES ===== */
/* Viewport Meta - Add this to your HTML head */
/* <meta name="viewport" content="width=device-width, initial-scale=1.0"> */

/* ===== BASE STYLES ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  padding-top: 160px;
}

#fixed-top-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== HEADER & NAVIGATION RESPONSIVE ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f9fa;
  padding: 10px 20px;
  height: 100px;
}

.logo img {
  height: 90px;
  width: 230px;
}

.search-container {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.search-container input {
  width: 100%;
  max-width: 500px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-results {
  position: absolute;
  top: 100%;
  width: 100%;
  max-width: 500px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.header-icons .d-flex.align-items-center {
  display: flex;
  align-items: center;
  gap: 20px;
}
.favorite.active {
  color: red;
}
.test {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 80px;
}

.user-status-container {
  min-width: 50px;
  background-color:yellowgreen;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px; /* Ensure consistent width */
  margin-right: 15px;
  position: relative;
  left: 0px;
  margin-top: 0px;
}

.icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Modal styling */
#ratingModal .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

/* Star rating styles */
.rating-stars {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.rating-stars .star {
  cursor: pointer;
  font-size: 2rem;
  margin: 0 3px;
  color: #ddd;
  transition: color 0.2s;
}

.rating-stars .star.selected {
  color: gold;
}

.cart-count-top, .fav-count-top {
  background: red;
  color: white;
  padding: 2px 6px;
  font-size: 10px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -10px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
}

.fav-count-top {
  background: black;
}

/* Navigation */
nav {
  background-color: #000;
  color: white;
  padding: 10px 20px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav li a {
  color: white;
  text-decoration: none;
}

/* ===== MAIN LAYOUT RESPONSIVE ===== */
/* Three Panel Layout */
.container-fluid.mt-2.px-0 .d-flex {
  flex-direction: column;
  gap: 12px !important;
}

.container-fluid.mt-2.px-0 .p-2 {
  width: 100% !important;
  margin: 0 !important;
}

/* Middle Panel Hero */
.flex-grow-1.p-2 .position-relative.rounded {
  height: 280px !important;
}

.flex-grow-1.p-2 .position-relative.rounded img {
  width: 45% !important;
}

.flex-grow-1.p-2 .position-relative.d-flex.flex-column {
  padding: 15px !important;
}

.flex-grow-1.p-2 .position-relative.d-flex.flex-column h2 {
  font-size: 1.4rem;
}

/* ===== PRODUCT CARDS RESPONSIVE ===== */
.product-card {
  position: relative;
  height: auto;
  min-height: 320px;
  width: 100%;
  overflow: hidden;
  transition: transform 0.3s;
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.swiper-slide {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  background: #fff;
  height: auto;
}

.swiper-slide img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 8px;
}

.card-body.p-2 {
  padding: 12px !important;
}

.card-title {
  font-size: 0.9rem;
  line-height: 1.2;
}

.card-text {
  font-size: 0.8rem;
}

/* ===== PRODUCT ICONS - VERTICAL STACK ON RIGHT SIDE ===== */
/* Product Icons - Always visible on right side, stacked vertically */
.product-icons {
  position: absolute;
  top: 45px; /* Position lower to avoid overlapping with badges */
  right: 8px;
  display: flex; /* Always visible */
  flex-direction: column; /* Stack vertically */
  gap: 10px; /* Space between icons */
  z-index: 2;
}

.product-icons i {
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  color: #333;
}

.product-icons i:hover {
  background: #e63946;
  color: white;
  transform: scale(1.1);
}

/* Special card icons - adjust position for badges */
.special-card .product-icons {
  top: 50px; /* Slightly lower for special cards to accommodate badges */
}

/* Regular product cards (non-special) icons position */
.product-card:not(.special-card) .product-icons {
  top: 45px; /* Standard position for regular cards */
}

/* For cards with promo-badge (featured products) */
.product-card .promo-badge ~ .product-icons {
  top: 50px; /* Adjust if there's a promo badge */
}

/* Special offer badges */
.special-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e63946;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffd166;
  color: #333;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 2;
}

/* For featured badge (non-special products) */
.promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffc107;
  color: #000;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 10;
}

.submit-rating-btn {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  border: none;
  transition: all 0.3s ease;
}

.submit-rating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== FEATURED PRODUCTS GRID RESPONSIVE ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.featured-grid-wide {
  width:100% ;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.featured-section-wide {
  margin-top: 30px;
  width: 100%;
}
.featured-section {
  margin-top: 30px;
  
}
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #707070;
  position: relative;
  padding-left: 15px;
}

/* ===== PROMOTIONS & SIDEBARS ===== */
.promotion-container-top,
.promotion-container-bottom {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.p-3.flex-shrink-0.d-none.d-md-block {
  display: none !important;
}

.flex-grow-1 {
  max-width: 100% !important;
  width: 100% !important;
}

/* ===== CART & MODALS ===== */
/* Cart panel styles */
.cart-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: #edede9;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 1001; /* Higher than fixed header */
  padding: 20px;
  overflow-y: auto;
}

.cart-panel.active {
  right: 0;
}

.cart-item {
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 3px;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-item-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-controls span {
  margin: 0 5px;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  position: sticky;
  bottom: 0;
  background: #edede9;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}

/* Floating bubbles */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-buttons .btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  position: relative;
}

.cart-count-btm {
  position: absolute;
  top: 2px;
  right: 2px;
  background: black;
  color: white;
  font-size: 0.7rem;
  border-radius: 50%;
  padding: 2px 6px;
  z-index: 1000;
}

/* ===== MOBILE STYLES (≤576px) ===== */
@media (max-width: 576px) {
  body {
    padding-top: 120px;
  }
  
  header {
    height: auto;
    min-height: 80px;
    padding: 8px 15px;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 35px;
    width: 120px;
  }
  
  .search-container {
    order: 3;
    flex: 1 1 100%;
    margin-top: 10px;
  }
  
  .search-container input {
    width: 100%;
  }
  
  .header-icons {
    gap: 10px;
  }
  
  .icon-wrapper i {
    font-size: 1.1rem !important;
  }
  
  /* Product adjustments - keep icons vertical on mobile too */
  .product-icons {
    display: flex !important;
    flex-direction: column; /* Keep vertical on mobile */
    gap: 6px;
    top: 45px; /* Keep at same position */
    right: 5px;
  }
  
  .product-icons i {
    background: white;
    padding: 4px;
    font-size: 0.75rem;
    border: 1px solid #eee;
    width: 26px;
    height: 26px;
  }
  
  .special-card .product-icons {
    top: 50px; /* Adjust for special cards on mobile */
  }
  
  .add-to-cart-btn {
    padding: 6px 12px !important;
    font-size: 0.8rem;
  }
  
  /* Layout adjustments */
  .d-flex.flex-wrap.flex-md-nowrap.px-2.mt-3 {
    gap: 10px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  
  .featured-grid {
    gap: 12px;
  }
  
  .featured-header {
    margin-bottom: 15px;
  }
  
  .featured-title {
    font-size: 1.3rem;
  }
  
  /* Cart panel full width on mobile */
  .cart-panel {
    width: 100%;
  }
}

/* ===== TABLET STYLES (577px-767px) ===== */
@media (min-width: 577px) and (max-width: 767px) {
  /* Three panel layout */
  .container-fluid.mt-2.px-0 .d-flex {
    flex-direction: row;
    gap: 8px !important;
  }
  
  .container-fluid.mt-2.px-0 .p-2 {
    width: 30% !important;
  }
  
  .container-fluid.mt-2.px-0 .flex-grow-1.p-2 {
    width: 40% !important;
  }
  
  .flex-grow-1.p-2 .position-relative.rounded {
    height: 320px !important;
  }
  
  /* Products */
  .swiper-slide img {
    height: 140px;
  }
  
  .product-card {
    min-height: 350px;
  }
  
  .swiper-slide {
    padding: 10px;
  }
  
  /* Product icons tablet adjustments - keep vertical */
  .product-icons i {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  
  /* Show left panel */
  .p-3.flex-shrink-0.d-none.d-md-block {
    display: block !important;
    width: 25% !important;
  }
  
  .flex-grow-1 {
    max-width: 75% !important;
    width: 75% !important;
  }
}

/* ===== SMALL DESKTOP STYLES (768px-991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
  /* Three panel layout */
  .container-fluid.mt-2.px-0 .p-2 {
    width: 21% !important;
    margin-left: 10px !important;
  }
  
  .container-fluid.mt-2.px-0 .p-2:last-child {
    margin-right: 5px !important;
  }
  
  .container-fluid.mt-2.px-0 .flex-grow-1.p-2 {
    width: 58% !important;
  }
  
  .flex-grow-1.p-2 .position-relative.rounded {
    height: 420px !important;
  }
  
  /* Products */
  .swiper-slide {
    padding: 10px;
  }
  
  .swiper-slide img {
    height: 150px;
  }
  
  .product-card {
    min-height: 380px;
  }
  
  .card-body.p-2 {
    padding: 15px !important;
  }
  
  /* Promotions + Featured layout */
  .d-flex.flex-wrap.flex-md-nowrap.px-2.mt-3:last-child {
    flex-direction: row;
  }
  
  .col-md-3[style*="width: 21%"] {
    width: 25% !important;
  }
  

}

.btn-login {
  background: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.btn-trigger {
  background: var(--accent);
  color: white;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  display: block;
  margin: 2rem auto;
  max-width: 300px;
}

.btn-trigger:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(67, 97, 238, 0.3);
}

.login-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  z-index: 1000;
  max-width: 500px;
  width: 90%;
  text-align: center;
  display: none;
}

.notification-content {
  padding: 1rem;
}

.notification-icon {
  font-size: 4rem;
  color: #ff6b6b;
  margin-bottom: 1.5rem;
}

.notification-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.notification-text {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.login-status {

  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hero-section {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border-radius: 15px;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.hero-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.bi-heart-fill {
  color: #ff6b6b;
}

.notification-banner {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.notification-banner h3 {
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 1rem;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  padding: 15px;
  min-width: 200px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-container:hover .user-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.user-dropdown .user-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.user-dropdown .user-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.user-dropdown .user-email {
  font-size: 0.85rem;
  color: #777;
}

.user-dropdown .dropdown-item {
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.user-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--primary);
}

.user-dropdown .dropdown-item i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

.user-dropdown .logout-btn {
  color: #e63946;
}

.user-dropdown .logout-btn:hover {
  background-color: #fff5f5;
}

/* Featured products secion CSS */
.user-status {
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
  width: 100%;
}

.logout-link {
  color: #e63946;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.logout-link:hover {
  color: #c1121f;
  text-decoration: underline;
}

.login-link-wrapper {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
  width: 100%;
}

.login-link {
  color: #4361ee;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.login-link:hover {
  color: #3a0ca3;
  text-decoration: underline;
}

/* Adjust dropdown position */
.user-dropdown {
  /* ... existing styles ... */
  top: 120%; /* Increase space for the new content */
}

/* Add this to your existing CSS */
.d-flex.flex-column.align-items-center {
  position: relative;
  margin-right: 10px;
  padding: 5px;
  text-align: center;
}

.d-flex.flex-column.align-items-center .small {
  font-size: 0.75rem;
  line-height: 1.2;
}

.d-flex.flex-column.align-items-center .text-danger {
  transition: color 0.2s;
}

.d-flex.flex-column.align-items-center .text-danger:hover {
  color: #c1121f !important;
}

.user-status-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.username {
  display: block;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.65rem;
}

.user-status-text a {
  display: block;
  font-size: 0.65rem;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px; /* Adjust gap between icons */
}

.icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cart-total-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 5px;
}

.top-total {
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Adjust cart count position */
.cart-count-top {
  position: relative;
  top: 0;
  right: 0;
  margin-top: 3px;
}

/* Adjust fav count position */
.fav-count-top {
  position: relative;
  top: 0;
  right: 0;
  margin-top: 3px;
} 

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #707070;
  position: relative;
  padding-left: 15px;
}

.featured-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 4px;
  background-color: #707070;
  border-radius: 2px;
}

.view-all-link {
  color: #4361ee;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.view-all-link:hover {
  text-decoration: underline;
}

.view-all-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.view-all-link:hover i {
  transform: translateX(3px);
}

.promotion-container-top {
  background: linear-gradient(135deg, #ecf39e 0%, #ffb703 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.promotion-container-bottom {
  background: linear-gradient(135deg, #ffafcc 0%, #c1121f 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.promotion-title {
  color: black;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.2rem;
}

.promotion-content {
  background: white;
  border-radius: 8px;
  padding: 15px;
  height: 100%;
}

.promotion-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.promotion-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.promotion-item h5 {
  color: #bc4749;
  font-weight: 600;
  margin-bottom: 8px;
}

.promotion-item p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.promo-highlight {
  background: linear-gradient(135deg, #e63946 20%, #450920 100%);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
    /* page header red Styles */
    .common-header {
        background: linear-gradient(135deg, #e63946 20%, #450920 100%);
        color: white;
        padding: 2rem 1rem;
        border-radius: 10px;
        margin-bottom: 2rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    }
    

.footer {

    background: linear-gradient(135deg, #e63946 20%, #450920 100%);
  color: #f8f9fa;
  padding: 2rem 0;
  margin-top: 3rem;
}

/* ===== LARGE DESKTOP STYLES (≥992px) ===== */
@media (min-width: 992px) {
  .col-md-3[style*="width: 21%"] {
    width: 21% !important;
    margin-left: 10px !important;
  }
  
  .p-3.flex-shrink-0.d-none.d-md-block {
    width: 21% !important;
    margin-left: 10px !important;
  }
}
.categories-dropdown {
  column-count: 2;        /* force 2 columns */
  column-gap: 20px;
  min-width: 600px;
}

.categories-dropdown .dropdown-item {
  display: block;
  width: 100%;
  break-inside: avoid;    /* prevents splitting */
  white-space: nowrap;
}
