/**
 * PriceCompare Modern Design
 * Matches reference image with clean sidebar filters and card-based product grid
 * Uses consistent flat design system with cyan theme from modern-frontend.css
 */

/* =====================================================
   Layout Container
   ===================================================== */
.search-page-chawkbazar {
  background: #f7f7f7;
  min-height: 100vh;
  padding: 24px 0 48px;
}

.search-page-chawkbazar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =====================================================
   Sidebar Filters - PriceCompare Style
   ===================================================== */
.search-sidebar-filters,
.search-sidebar-pricecompare {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
  overflow-y: auto;
  transition: all 0.2s ease;
}

/* Filters Header */
.sidebar-filters-header,
.filters-header-pricecompare {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.sidebar-filters-header h3,
.filters-title-pricecompare {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-filters-header h3 i {
  color: #17a2b8;
}

.btn-clear-filters,
.btn-reset-filters {
  background: transparent;
  border: none;
  color: #17a2b8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-clear-filters:hover,
.btn-reset-filters:hover {
  background: #e6f7fa;
}

/* Filter Sections */
.filter-section,
.filter-section-pricecompare {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.filter-section:last-child,
.filter-section-pricecompare:last-child {
  border-bottom: none;
}

.filter-section.collapsed .filter-options,
.filter-section-pricecompare.collapsed .filter-options-pricecompare {
  display: none;
}

.filter-section-title,
.filter-section-header-pricecompare {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  width: 100%;
  padding: 0;
  text-align: left;
}

.filter-section-title-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.filter-toggle-icon {
  font-size: 12px;
  color: #999;
  transition: transform 0.2s;
}

.filter-section.collapsed .filter-toggle-icon,
.filter-section-pricecompare.collapsed .filter-toggle-icon {
  transform: rotate(-180deg);
}

.filter-options,
.filter-options-pricecompare {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Checkbox & Radio Styles */
.filter-checkbox-label,
.filter-radio-label,
.filter-checkbox-label-pricecompare,
.filter-radio-label-pricecompare {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.filter-checkbox-label:hover,
.filter-radio-label:hover,
.filter-checkbox-label-pricecompare:hover,
.filter-radio-label-pricecompare:hover {
  color: #17a2b8;
}

/* Hide native inputs */
.filter-checkbox-label input[type="checkbox"],
.filter-radio-label input[type="radio"],
.filter-checkbox-label-pricecompare input[type="checkbox"],
.filter-radio-label-pricecompare input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom Checkbox */
.checkbox-custom,
.checkbox-custom-pricecompare {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s;
}

.filter-checkbox-label input[type="checkbox"]:checked + .checkbox-custom,
.filter-checkbox-label-pricecompare input[type="checkbox"]:checked + .checkbox-custom-pricecompare {
  background: #17a2b8;
  border-color: #17a2b8;
}

.filter-checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after,
.filter-checkbox-label-pricecompare input[type="checkbox"]:checked + .checkbox-custom-pricecompare::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-checkbox-label:hover .checkbox-custom,
.filter-checkbox-label-pricecompare:hover .checkbox-custom-pricecompare {
  border-color: #17a2b8;
}

/* Custom Radio */
.radio-custom,
.radio-custom-pricecompare {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s;
}

.filter-radio-label input[type="radio"]:checked + .radio-custom,
.filter-radio-label-pricecompare input[type="radio"]:checked + .radio-custom-pricecompare {
  border-color: #17a2b8;
}

.filter-radio-label input[type="radio"]:checked + .radio-custom::after,
.filter-radio-label-pricecompare input[type="radio"]:checked + .radio-custom-pricecompare::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #17a2b8;
  border-radius: 50%;
}

.filter-radio-label:hover .radio-custom,
.filter-radio-label-pricecompare:hover .radio-custom-pricecompare {
  border-color: #17a2b8;
}

.filter-label-text,
.filter-label-text-pricecompare {
  font-size: 14px;
  color: #333;
  flex: 1;
}

.filter-checkbox-label input[type="checkbox"]:checked ~ .filter-label-text,
.filter-radio-label input[type="radio"]:checked ~ .filter-label-text,
.filter-checkbox-label-pricecompare input[type="checkbox"]:checked ~ .filter-label-text-pricecompare,
.filter-radio-label-pricecompare input[type="radio"]:checked ~ .filter-label-text-pricecompare {
  color: #1a1a1a;
  font-weight: 500;
}

/* Filter Count Badge */
.filter-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 20px;
  padding: 0 6px;
  background: #f0f0f0;
  color: #666;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.filter-checkbox-label.active .filter-count-badge,
.filter-radio-label.active .filter-count-badge,
.filter-checkbox-label-pricecompare.active .filter-count-badge,
.filter-radio-label-pricecompare.active .filter-count-badge {
  background: #17a2b8;
  color: white;
}

.filter-checkbox-label:hover .filter-count-badge,
.filter-radio-label:hover .filter-count-badge,
.filter-checkbox-label-pricecompare:hover .filter-count-badge,
.filter-radio-label-pricecompare:hover .filter-count-badge {
  background: #e8e8e8;
  color: #333;
}

.filter-checkbox-label.active:hover .filter-count-badge,
.filter-radio-label.active:hover .filter-count-badge,
.filter-checkbox-label-pricecompare.active:hover .filter-count-badge,
.filter-radio-label-pricecompare.active:hover .filter-count-badge {
  background: #357abd;
  color: white;
}

/* Show More Button */
.btn-show-more-filters {
  width: 100%;
  padding: 10px 16px;
  margin-top: 12px;
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #17a2b8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-show-more-filters:hover {
  background: #f0f7ff;
  border-color: #17a2b8;
}

.btn-show-more-filters i {
  font-size: 12px;
}

.btn-show-more-filters.expanded {
  color: #666;
}

.btn-show-more-filters.expanded:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #333;
}

/* Hidden filter items */
.filter-item-hidden {
  display: none;
}

/* Price Range Slider */
.price-range-slider,
.price-range-form-pricecompare {
  margin: 20px 0;
}

.price-slider-container {
  padding: 16px 0;
}

.price-values-display {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
}

.price-slider-wrapper {
  position: relative;
  height: 40px;
  margin-bottom: 20px;
}

.price-slider {
  position: absolute;
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  border-radius: 3px;
  pointer-events: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #2563eb;
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.price-slider::-webkit-slider-thumb:hover {
  background: #1d4ed8;
  transform: scale(1.1);
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #2563eb;
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.price-slider::-moz-range-thumb:hover {
  background: #1d4ed8;
  transform: scale(1.1);
}

#minPriceSlider {
  z-index: 2;
  background: linear-gradient(to right, #ddd 0%, #2563eb 0%, #2563eb 100%, #ddd 100%);
}

#maxPriceSlider {
  z-index: 1;
  background: transparent;
}

.price-range-inputs,
.price-range-inputs-pricecompare {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.price-range-inputs input,
.price-range-inputs-pricecompare input,
.price-input-pricecompare {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  color: #333;
}

.price-range-inputs input:focus,
.price-range-inputs-pricecompare input:focus,
.price-input-pricecompare:focus {
  outline: none;
  border-color: #17a2b8;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.price-range-inputs span,
.price-separator {
  color: #999;
  font-weight: 600;
}

.btn-apply-price,
.btn-apply-price-pricecompare {
  width: 100%;
  padding: 12px;
  background: #17a2b8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.2s;
}

.btn-apply-price:hover,
.btn-apply-price-pricecompare:hover {
  background: #357abd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* =====================================================
   Results Header
   ===================================================== */
.search-results-header,
.search-results-header-pricecompare {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px 24px;
  background: white;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.results-info,
.results-info-pricecompare {
  flex: 1;
}

.results-count-text {
  font-size: 15px;
  color: #666;
}

.results-count-heading {
  font-size: 18px;
  color: #1a1a1a;
  margin: 0;
  font-weight: 400;
}

.results-count-heading strong {
  font-weight: 700;
}

.results-sorting,
.results-controls-pricecompare {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-wrapper-pricecompare {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-label,
.sort-label-pricecompare {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 500;
}

.sort-select,
.sort-select-pricecompare {
  padding: 8px 36px 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 12px;
  cursor: pointer;
  appearance: none;
  transition: all 0.2s;
  min-width: 180px;
}

.sort-select:hover,
.sort-select-pricecompare:hover {
  border-color: #17a2b8;
}

.sort-select:focus,
.sort-select-pricecompare:focus {
  outline: none;
  border-color: #17a2b8;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

/* View Toggle Buttons */
.view-toggle-pricecompare {
  display: flex;
  gap: 8px;
  margin-left: 16px;
  border-left: 1px solid #e8e8e8;
  padding-left: 16px;
}

.view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  color: #666;
}

.view-btn:hover {
  border-color: #17a2b8;
  color: #17a2b8;
}

.view-btn.active {
  background: #17a2b8;
  border-color: #17a2b8;
  color: white;
}

/* =====================================================
   Product Cards Grid
   ===================================================== */
.products-grid-pricecompare {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card-modern,
.product-card-pricecompare {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: none;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-modern:hover,
.product-card-pricecompare:hover {
  border-color: #17a2b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.1);
}

.product-card-link,
.product-link-pricecompare {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Product Image */
.product-card-image-wrapper,
.product-image-wrapper-pricecompare {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background: #fafafa;
  overflow: hidden;
}

.product-img-modern,
.product-image-pricecompare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.3s;
}

.product-card-modern:hover .product-img-modern,
.product-card-pricecompare:hover .product-image-pricecompare {
  transform: scale(1.05);
}

.product-img-placeholder-modern,
.product-image-placeholder-pricecompare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 48px;
}

/* Discount Badge */
.discount-badge-pricecompare {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff4757;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* Product Info */
.product-card-info-modern,
.product-info-pricecompare {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Category Badge */
.product-category-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #f0f0f0;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product Name */
.product-card-title-modern,
.product-name-pricecompare {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Rating */
.product-rating-modern,
.product-rating-pricecompare {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-star-filled {
  color: #fbbf24;
  font-size: 14px;
}

.rating-star-empty {
  color: #e5e7eb;
  font-size: 14px;
}

.product-rating-value,
.rating-value-pricecompare {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  margin-left: 4px;
}

/* Price */
.product-card-price-modern,
.product-price-wrapper-pricecompare {
  margin-top: auto;
}

.price-modern,
.product-price-pricecompare {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}

.product-original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-top: 4px;
}

/* Retailer */
.product-retailer-pricecompare {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

.product-retailer-pricecompare i {
  color: #17a2b8;
}

/* Stock Status */
.product-stock-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-top: 8px;
}

.product-stock-status.in-stock {
  color: #10b981;
}

.product-stock-status.in-stock i {
  color: #10b981;
}

.product-stock-status.out-of-stock {
  color: #ef4444;
}

.product-stock-status.out-of-stock i {
  color: #ef4444;
}

.product-stock-status i {
  font-size: 8px;
}

/* View Offers Button */
.view-offers-btn-pricecompare {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 16px 16px;
  padding: 12px;
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  transition: all 0.2s ease;
}

.view-offers-btn-pricecompare:hover {
  background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
  color: white;
}

.product-img-placeholder-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 48px;
}

/* Product Info */
.product-card-info-modern {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card-brand {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.product-card-title-modern {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

/* Product Price */
.product-card-price-modern {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.price-modern {
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.product-merchants-modern {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #17a2b8;
  margin-top: 8px;
  font-weight: 500;
}

.product-merchants-modern i {
  font-size: 11px;
}

/* Product Rating */
.product-rating-modern {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.product-rating-modern i {
  font-size: 12px;
}

.product-rating-value {
  font-size: 13px;
  color: #666;
  font-weight: 600;
}

/* =====================================================
   View Toggle Buttons (Grid/List)
   ===================================================== */
.view-toggle-buttons {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.view-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
}

.view-toggle-btn:hover {
  border-color: #17a2b8;
  color: #17a2b8;
}

.view-toggle-btn.active {
  background: #17a2b8;
  border-color: #17a2b8;
  color: white;
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1200px) {
  .products-grid-pricecompare {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .search-sidebar-filters {
    position: static;
    margin-bottom: 24px;
    max-height: none;
  }
  
  .products-grid-pricecompare {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .search-results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .results-sorting {
    width: 100%;
  }
  
  .sort-select {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .search-page-chawkbazar {
    padding: 16px 0 32px;
  }
  
  .search-sidebar-filters {
    padding: 16px;
  }
  
  .sidebar-filters-header h3 {
    font-size: 18px;
  }
  
  .btn-clear-filters span {
    display: none;
  }
  
  .products-grid-pricecompare {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .product-card-title-modern {
    font-size: 14px;
  }
  
  .price-modern {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .products-grid-pricecompare {
    grid-template-columns: 1fr;
  }
  
  .search-results-header {
    padding: 12px 16px;
  }
  
  .sort-label {
    display: none;
  }
}

/* =====================================================
   No Results Message
   ===================================================== */
.no-results-message,
.no-results-pricecompare {
  text-align: center;
  padding: 60px 24px;
  background: white;
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
}

.no-results-icon {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 24px;
}

.no-results-message i,
.no-results-pricecompare .no-results-icon i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 24px;
}

.no-results-message h3,
.no-results-title {
  font-size: 24px;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.no-results-message p,
.no-results-text {
  font-size: 16px;
  color: #666;
  margin: 0 0 24px 0;
}

.no-results-suggestions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.no-results-suggestions li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.no-results-suggestions li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #17a2b8;
  font-weight: bold;
}

.no-results-suggestions li i {
  color: #17a2b8;
  font-size: 16px;
  margin-right: 8px;
}
