    :root {
        --primary-color: #D18772;
        --dark-color: #2c2c2c;
        --light-bg: #f9f9f9;
        --text-color: #333;
        --border-color: #ddd;
    }
    /* ==========================================
       SIDEBAR FILTERS
       ========================================== */
    .products-header {
        position: relative;
        background: url('../images/bg_region.jpg') center/cover no-repeat;
        color: white;
        padding: 5rem 0;
        text-align: center;
        margin-top: -100px;
    }

    .products-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 55%);
        z-index: 1;
    }
    .products-header-content{
        position: relative;
        z-index: 2;
        color: white;
        padding-top: 20px;
    }
    
    .filters-sidebar {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        height: fit-content;
        position: sticky;
        top: 120px;
    }

    .filter-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eee;
    }

    .filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .filter-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .filter-title i {
        color: var(--primary-color);
    }

    /* Search Filter */
    .search-filter {
        position: relative;
    }

    .search-filter input {
        width: 100%;
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        border: 1px solid #80808040;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .search-filter input:focus {
        border-color: var(--primary-color);
    }

    .search-filter i {
        position: absolute;
        left: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    /* Checkbox Filter */
    .filter-options {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        max-height: 300px;
        overflow-y: auto;
    }

    .filter-option {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .filter-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: var(--primary-color);
    }

    .filter-option label {
        margin-left: 0.75rem;
        cursor: pointer;
        font-size: 0.9rem;
        color: #666;
        flex: 1;
    }

    .filter-option input[type="checkbox"]:checked + label {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* Price Slider */
    .price-slider {
        margin-top: 1rem;
    }

    .price-range {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        color: #666;
    }

    .price-values {
        color: var(--primary-color);
        font-weight: 600;
    }

    input[type="range"] {
        width: 100%;
        height: 6px;
        border-radius: 3px;
        background: #ddd;
        outline: none;
        -webkit-appearance: none;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
    }

    input[type="range"]::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
        border: none;
    }

    /* Reset Filter Button */
    .reset-filters {
        width: 100%;
        padding: 0.75rem;
        background: #f0f0f0;
        border: none;
        border-radius: 8px;
        color: #666;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .reset-filters:hover {
        background: #e0e0e0;
        color: #333;
    }

    /* ==========================================
       PRODUCTS SECTION
       ========================================== */

    .products-section {
        background: white;
        border-radius: 10px;
        padding: 2rem;
    }

    /* Top Controls */
    .products-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .products-count {
        font-size: 0.95rem;
        color: #666;
        font-weight: 500;
    }

    .sort-dropdown {
        padding: 0.75rem 1rem;
        border: 1px solid #80808040;
        border-radius: 8px;
        background: white;
        color: #333;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sort-dropdown:hover {
        border-color: var(--primary-color);
    }

    /* Products Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 2rem;
    }

    .product-card {
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: white;
        border: 1px solid #80808040;
    }

    .product-card:hover {
        border-color: var(--primary-color);
    }

    .product-image {
        position: relative;
        height: 200px;
        background: linear-gradient(135deg, #8B4513, #D2691E);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        overflow: hidden;
    }

    .product-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--primary-color);
        color: white;
        padding: 0.4rem 0.8rem;
        border-radius: 5px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .product-image-hover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(217, 117, 53, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .product-card:hover .product-image-hover {
        opacity: 1;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-category {
        color: var(--primary-color);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .product-name {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .product-rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .stars {
        color: #ffc107;
    }

    .rating-count {
        color: #999;
    }

    .product-price {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .price-current {
        font-size: 1.3rem;
        color: var(--primary-color);
    }

    .price-original {
        font-size: 0.9rem;
        color: #999;
        text-decoration: line-through;
    }

    .product-actions {
        display: flex;
        gap: 0.75rem;
    }

    .btn-add-cart {
        flex: 1;
        padding: 0.6rem;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        font-size: 0.85rem;
    }

    .btn-add-cart:hover {
        background: #c05e2a;
        transform: scale(1.02);
    }

    .btn-wishlist {
        width: 40px;
        height: 40px;
        background: #f0f0f0;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-wishlist:hover {
        background: var(--primary-color);
        color: white;
    }

    /* Empty State */
    .empty-state {
        text-align: center;
        padding: 3rem 1rem;
    }

    .empty-state i {
        font-size: 5rem;
        color: #ddd;
        margin-bottom: 1rem;
    }

    .empty-state h3 {
        color: #999;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .empty-state p {
        color: #bbb;
    }

    /* ==========================================
       PAGINATION
       ========================================== */

    .pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 3rem;
    }

    .pagination a,
    .pagination span {
        padding: 0.6rem 0.8rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .pagination a:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .pagination .active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    /* ==========================================
       RESPONSIVE
       ========================================== */

    @media (max-width: 1024px) {
        .products-container {
            grid-template-columns: 220px 1fr;
            gap: 1.5rem;
        }

        .products-grid {
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .products-container {
            grid-template-columns: 1fr;
            padding-bottom: 25px;
        }

        .filters-sidebar {
            position: relative;
            top: 0;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .product-card {
            margin: 0 auto;
            max-width: 150px;
        }

        .products-header{
            margin-top: 35px;
        }
    }

    @media (max-width: 480px) {
        .products-header h1 {
            font-size: 1.8rem;
        }

        .products-controls {
            flex-direction: column;
            align-items: stretch;
        }

        .sort-dropdown {
            width: 100%;
        }

        .products-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .product-card {
            max-width: 100%;
        }

        .products-header{
            margin-top: 35px;
        }
    }

    .section-padding{
        padding: 0px !important;
    }

    .produit-image {
        height: 160px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        position: relative;
        overflow: hidden;
    }

    /* Badge promotion */
    .promo-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        background-color: #d90002;
        color: white;
        font-size: 10px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 4px;
        text-transform: uppercase;
        z-index: 10;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }


    a {
        color: transparent;
        text-decoration: none;
    }


    .loader {
        text-align: center;
        padding: 10px;
    }

    .loader .spinner {
        width: 24px;
        height: 24px;
        border: 3px solid #ccc;
        border-top-color: #d97535;
        border-radius: 50%;
        animation: spin 0.7s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }


        /* Pagination */
    .coop-pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 3rem;
        min-height: 40px;
    }

    .coop-pagination-btn {
        width: 35px;
        height: 35px;
        border: 1px solid #ddd;
        background: white;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .coop-pagination-btn:hover {
        background: #d97535;
        color: white;
        border-color: #d97535;
    }

    .coop-pagination-btn.active {
        background: #d97535;
        color: white;
        border-color: #d97535;
    }