/* ========================================
   CLEAN PRODUCTS PAGE LAYOUT
   No Duplicates - No Empty Spaces
======================================== */

/* ===== RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== CATEGORY NAVIGATION BAR ===== */
.category-navigation-section {
    background: rgba(17, 17, 17, 0.95);
    padding: 2rem 0 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    /* backdrop-filter removed for Safari */
}

.category-navigation-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.category-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
    scroll-behavior: smooth;
    width: 100%;
    display: flex;
    justify-content: center;
}

.category-scroll-container::-webkit-scrollbar {
    display: none;
}

.category-navigation {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    min-width: max-content;
    justify-content: center;
    align-items: center;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(35, 35, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    min-width: 120px;
    text-align: center;
    /* backdrop-filter removed */
    position: relative;
    overflow: hidden;
    user-select: none;
    will-change: transform;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.category-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.category-card.active::before {
    opacity: 0.15;
}

.category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.category-card.active .category-icon {
    background: rgba(212, 175, 55, 0.25);
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.category-icon img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(1.2) contrast(1.1);
}

.category-info h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h6 {
    color: var(--primary-gold);
}

.category-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    transition: color 0.3s ease;
}

.category-card:hover .category-count {
    color: rgba(212, 175, 55, 0.8);
}

.category-card.active .category-count {
    color: var(--primary-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-navigation-section {
        padding: 1.5rem 0 0.75rem 0;
    }

    .category-scroll-container {
        justify-content: flex-start;
    }

    .category-navigation {
        gap: 0.75rem;
        padding: 0 0.75rem;
        justify-content: flex-start;
    }

    .category-card {
        min-width: 110px;
        padding: 0.75rem 1rem;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.5rem;
        border-radius: 18px;
    }

    .category-icon i {
        font-size: 2.25rem;
    }

    .category-icon img {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .category-info h6 {
        font-size: 0.8rem;
    }

    .category-count {
        font-size: 0.7rem;
    }
}

/* Tablet and larger screens - center the cards */
@media (min-width: 769px) {
    .category-scroll-container {
        justify-content: center;
    }

    .category-navigation {
        justify-content: center;
    }
}

/* Loading States */
.category-card.loading {
    pointer-events: none;
    opacity: 0.7;
}

.category-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Indicators */
.category-navigation-wrapper::before,
.category-navigation-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.category-navigation-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.category-navigation-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

@media (max-width: 768px) {

    .category-navigation-wrapper::before,
    .category-navigation-wrapper::after {
        width: 20px;
    }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 2rem 0;
    margin: 0;
    background: transparent;
}

/* ===== PAGE CONTAINER (GRID LAYOUT) ===== */
.page-container {
    display: grid;
    grid-template-columns: 280px 1fr !important;
    gap: 25px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    direction: ltr !important;
    /* Force LTR layout */
}

/* ===== FILTERS SIDEBAR ===== */
.filters-sidebar {
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 12px;
    padding: 1.25rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    /* backdrop-filter removed */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-header h5 {
    margin: 0;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
}

.filter-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.filter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: white;
    outline: none;
}

.filter-options {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.filter-options::-webkit-scrollbar {
    width: 6px;
}

.filter-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.form-check {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-check-label {
    color: var(--light-gray);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.form-check-label:hover {
    color: white;
}

/* Price Range */
.price-range-container {
    padding: 0.5rem 0;
}

.form-range {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    margin-bottom: 0.5rem;
}

.form-range::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-gold);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-gold);
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.price-value {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== PRODUCTS CONTAINER ===== */
.products-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    direction: ltr !important;
    /* Force LTR for all languages */
}

/* Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    gap: 1rem;
    flex-wrap: wrap;
}

.products-count {
    flex: 1;
    min-width: 150px;
}

.products-count p {
    margin: 0;
    font-size: 0.95rem;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.form-select-sm {
    padding: 0.4rem 1.5rem 0.4rem 0.75rem;
    font-size: 0.9rem;
}

.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: white;
    outline: none;
}

.form-select option {
    background: var(--dark-gray);
    color: white;
}

/* ===== PRODUCTS GRID (FIXED 4 COLUMNS) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 2rem;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    direction: ltr !important;
    /* Force LTR for all languages */
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    min-height: 450px;
    text-align: left !important;
    /* Force left alignment for all languages */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 12px;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    /* backdrop-filter removed for Safari */
    background: rgba(0, 0, 0, 0.6);
}

.product-badge.discount {
    right: 12px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.product-badge.out-of-stock {
    left: 12px;
    background: rgba(108, 117, 125, 0.9);
    color: white;
}

/* Product Body */
.product-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
    min-height: 2.6rem;
    max-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-price {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.current-price {
    flex: 1;
    gap: 0.4rem;
    font-size: 1.2rem !important;
    /* Global: Reduce from 1.5rem to 1.2rem */
}

.original-price {
    text-decoration: line-through;
    color: var(--light-gray);
    font-size: 0.9em;
    opacity: 0.8;
}

/* Ensure buttons in grid don't break layout */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 1rem;
}

.product-actions .btn,
.product-actions .btn-view,
.product-actions .btn-primary,
.product-actions .btn-whatsapp {
    padding: 0 10px;
    height: 40px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-actions .btn-view {
    flex: 0 0 auto;
    min-width: 70px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.product-actions .btn-view:hover {
    background: var(--primary-gold);
    color: #000;
}

.product-actions .btn-primary,
.product-actions .btn-whatsapp {
    flex: 1;
    border: none;
    color: #000;
}

.product-actions .btn-primary {
    background: var(--primary-gold);
}

.product-actions .btn-primary:hover {
    background: #b8941f;
    color: #fff;
}

.product-actions .btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.product-actions .btn-whatsapp:hover {
    background: #128c7e;
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .product-actions {
        gap: 8px;
    }

    .product-actions .btn,
    .product-actions .btn-view,
    .product-actions .btn-primary,
    .product-actions .btn-whatsapp {
        height: 36px;
        font-size: 0.75rem;
        padding: 0 8px;
    }
}

/* ===== LOADING & EMPTY STATES ===== */
.loading-state,
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* ===== PAGINATION ===== */
.products-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pagination {
    gap: 0.5rem;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.page-item .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-item .page-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-gray);
    font-weight: 600;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== MOBILE FILTER DRAWER ===== */
.filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.filter-drawer.active {
    display: block;
}

.filter-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    /* backdrop-filter removed */
    animation: fadeIn 0.3s ease;
}

.filter-drawer-content {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 400px;
    background: var(--dark-gray);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

.filter-drawer-content {
    left: 0 !important;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideInRTL {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.filter-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.filter-drawer-header h5 {
    margin: 0;
    color: var(--primary-gold);
    font-weight: 600;
}

.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: none;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

.filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.filter-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html[dir="rtl"] .product-card {
    text-align: left !important;
}

/* ===== RESPONSIVE DESIGN - SERVER-SAFE ===== */

/* Desktop - Ensure 4 columns always */
@media (min-width: 1200px) {
    .page-container {
        grid-template-columns: 280px 1fr !important;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: none !important;
    }
}

/* Large Tablets & Small Desktops - SERVER FIX: Better breakpoint handling */
@media (max-width: 1199px) and (min-width: 992px) {
    .page-container {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .filters-sidebar {
        display: none !important;
    }

    .products-container {
        width: 100%;
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 18px !important;
        width: 100% !important;
    }
}

/* Tablets - SERVER FIX: Improved tablet handling */
@media (max-width: 991px) and (min-width: 769px) {
    .page-container {
        grid-template-columns: 1fr !important;
    }

    .filters-sidebar {
        display: none !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .product-price .current-price {
        font-size: 1.1rem !important;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-actions .btn,
    .product-actions .btn-view,
    .product-actions .btn-primary,
    .product-actions .btn-whatsapp {
        padding: 0 8px;
        font-size: 0.75rem;
        height: 38px;
    }
}

/* Mobile - Single Column for Small Tablets & Mobile */
@media (max-width: 768px) {
    .products-header {
        padding: 2rem 0;
    }

    .products-section {
        padding: 1.5rem 0;
    }

    .page-container {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .filters-sidebar {
        display: none !important;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .products-count {
        order: 2;
        text-align: center;
    }

    .products-sort {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .form-select {
        flex: 1;
        min-width: auto;
    }

    .filter-drawer-content {
        width: 100%;
        max-width: 100%;
    }

    .product-title {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1.1rem !important;
    }

    .product-actions .btn,
    .product-actions .btn-view,
    .product-actions .btn-primary,
    .product-actions .btn-whatsapp {
        font-size: 0.85rem;
        padding: 0.6rem 0.75rem;
        height: 40px;
    }
}

/* Extra Wide Screens */
@media (min-width: 1600px) {
    .page-container {
        grid-template-columns: 300px 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }
}

@media (min-width: 1600px) {
    .page-container {
        grid-template-columns: 300px 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

.container-fluid {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}



/* Custom Scrollbar */
.filters-sidebar::-webkit-scrollbar {
    width: 8px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: #c9a84a;
}