        /* =============================================
           CATEGORY LAYOUT
        ============================================= */
        .category-main {
            padding: 1.5rem 0 3rem;
        }
        .category-title-main {
            font-size: 2.4rem;
            font-weight: 700;
            color: #1c1c1c;
            font-family: 'Playfair Display', serif;
        }
        .category-title-main span { color: #cbb394; }

        /* =============================================
           FILTER SIDEBAR – Premium + Mobile Friendly
        ============================================= */
        .filter-sidebar {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.5rem 1.2rem;
            border: 1px solid #f0ebe5;
            position: sticky;
            top: 100px;
            transition: 0.3s;
        }
        .filter-sidebar .filter-title {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #1c1c1c;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid #f0ebe5;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .filter-sidebar .filter-title .clear-all {
            font-size: 0.65rem;
            font-weight: 500;
            color: #cbb394;
            cursor: pointer;
            text-transform: none;
            letter-spacing: 0;
            transition: 0.3s;
        }
        .filter-sidebar .filter-title .clear-all:hover { color: #6a42ff; }

        .filter-group {
            margin-bottom: 1.5rem;
        }
        .filter-group .filter-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: #2c2c2c;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.6rem;
            display: block;
        }
        .filter-group .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-group .filter-options .filter-chip {
            padding: 0.3rem 1rem;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.75rem;
            color: #2c2c2c;
            cursor: pointer;
            transition: 0.3s;
            background: transparent;
        }
        .filter-group .filter-options .filter-chip:hover {
            border-color: #cbb394;
            background: rgba(203, 179, 148, 0.05);
        }
        .filter-group .filter-options .filter-chip.active {
            border-color: #cbb394;
            background: #cbb394;
            color: #fff;
        }
        .filter-group .filter-options .filter-chip .color-dot {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            margin-right: 6px;
            vertical-align: middle;
            border: 1px solid rgba(0,0,0,0.06);
        }

        /* Price Range Slider – Custom */
        .price-range-wrap {
            padding: 0.2rem 0;
        }
        .price-range-wrap .price-inputs {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 0.6rem;
        }
        .price-range-wrap .price-inputs input {
            width: 100%;
            padding: 0.4rem 0.6rem;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.8rem;
            background: #f8f5f2;
            text-align: center;
            outline: none;
        }
        .price-range-wrap .price-inputs input:focus { border-color: #cbb394; }
        .price-range-wrap .price-slider {
            width: 100%;
            height: 4px;
            background: #ddd2c6;
            border-radius: 4px;
            margin: 0.8rem 0;
            position: relative;
        }
        .price-range-wrap .price-slider .thumb {
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #cbb394;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(203, 179, 148, 0.3);
            transition: 0.2s;
        }
        .price-range-wrap .price-slider .thumb:hover { transform: translate(-50%, -50%) scale(1.15); }
        .price-range-wrap .price-slider .range-fill {
            position: absolute;
            height: 100%;
            background: #cbb394;
            border-radius: 4px;
            left: 20%;
            right: 30%;
        }

        /* Rating filter */
        .filter-group .rating-options .rating-chip {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 0.3rem 0.8rem;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: 0.3s;
            background: transparent;
        }
        .filter-group .rating-options .rating-chip:hover {
            border-color: #cbb394;
            background: rgba(203, 179, 148, 0.05);
        }
        .filter-group .rating-options .rating-chip.active {
            border-color: #cbb394;
            background: #cbb394;
            color: #fff;
        }
        .filter-group .rating-options .rating-chip .stars {
            color: #f5a623;
            font-size: 0.7rem;
        }

        /* Brand filter */
        .filter-group .brand-options .brand-chip {
            padding: 0.3rem 1rem;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.75rem;
            cursor: pointer;
            transition: 0.3s;
            background: transparent;
        }
        .filter-group .brand-options .brand-chip:hover {
            border-color: #cbb394;
            background: rgba(203, 179, 148, 0.05);
        }
        .filter-group .brand-options .brand-chip.active {
            border-color: #cbb394;
            background: #cbb394;
            color: #fff;
        }

        /* =============================================
           PRODUCT GRID – 2 columns on mobile
        ============================================= */
        .toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 1.5rem;
            padding: 0.8rem 1.2rem;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #f0ebe5;
        }
        .toolbar .results-text {
            font-size: 0.85rem;
            color: #6f7686;
        }
        .toolbar .results-text strong { color: #1c1c1c; }
        .toolbar .sort-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .toolbar .sort-wrap label {
            font-size: 0.75rem;
            color: #9b9b9b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .toolbar .sort-wrap select {
            padding: 0.4rem 1.2rem 0.4rem 0.8rem;
            border: 1px solid #ddd2c6;
            border-radius: 40px;
            font-size: 0.8rem;
            background: transparent;
            outline: none;
            appearance: none;
            background-image: 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='%239b9b9b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
            cursor: pointer;
        }
        .toolbar .sort-wrap select:focus { border-color: #cbb394; }

        /* Mobile Filter Toggle Button */
        .filter-toggle-btn {
            display: none;
            background: #000000;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.4rem 1.2rem;
            font-size: 0.8rem;
            font-weight: 600;
            transition: 0.3s;
            cursor: pointer;
            align-items: center;
            gap: 6px;
        }
        .filter-toggle-btn:hover {
            background: #cbb394;
            color: #000;
        }
        @media (max-width: 992px) {
            .filter-toggle-btn { display: inline-flex; }
            .filter-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 1.5rem;
                display: none;
            }
            .filter-sidebar.open { display: block; }
            .filter-sidebar .filter-title .clear-all { display: none; }
            .category-title-main { font-size: 1.8rem; }
        }

        #productResults {
            transition: opacity 0.2s ease;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        @media (max-width: 992px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 576px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
        }

        .product-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #f0ebe5;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.06);
            border-color: #ddd2c6;
        }
        .product-card .product-img-wrapper {
            aspect-ratio: 4/5;
            background: #f9f6f1;
            overflow: hidden;
            position: relative;
        }
        .product-card .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: 0.5s;
        }
        .product-card:hover .product-img-wrapper img { transform: scale(1.04); }
        .product-card .product-img-wrapper .badge-cat {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            letter-spacing: 0.5px;
        }
        .product-card .product-img-wrapper .badge-sale {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #ff6b81;
            color: #fff;
            font-size: 0.6rem;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-weight: 600;
        }
        .product-card .p-3 {
            padding: 1rem 0.8rem !important;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .product-card .product-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1c1c1c;
            margin-bottom: 2px;
        }
        .product-card .product-title a {
            color: #1c1c1c;
            text-decoration: none;
        }
        .product-card .product-title a:hover { color: #cbb394; }
        .product-card .product-price {
            font-size: 0.95rem;
            color: #cbb394;
            font-weight: 500;
        }
        .product-card .product-price .old {
            color: #b5a89c;
            font-size: 0.8rem;
            text-decoration: line-through;
            margin-right: 6px;
        }
        .product-card .product-rating {
            font-size: 0.7rem;
            color: #f5a623;
        }
        .product-card .product-rating .count {
            color: #9b9b9b;
            margin-left: 4px;
        }
        .product-card .add-to-cart-card {
            background: none;
            border: 1px solid #eee5dd;
            border-radius: 40px;
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 600;
            transition: 0.3s;
            width: 100%;
            text-align: center;
            cursor: pointer;
            margin-top: 8px;
            color: #2c2c2c;
        }
        .product-card .add-to-cart-card:hover {
            background: #000000;
            border-color: #000000;
            color: #fff;
        }

        /* =============================================
           PAGINATION
        ============================================= */
        .pagination-wrap {
            margin-top: 2.5rem;
            display: flex;
            justify-content: center;
        }
        .pagination-wrap .pagination-custom {
            display: flex;
            gap: 6px;
            list-style: none;
            padding: 0;
        }
        .pagination-wrap .pagination-custom li a,
        .pagination-wrap .pagination-custom li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #eee8e2;
            color: #2c2c2c;
            text-decoration: none;
            font-size: 0.85rem;
            transition: 0.3s;
            background: #fff;
        }
        .pagination-wrap .pagination-custom li a:hover {
            border-color: #cbb394;
            background: rgba(203, 179, 148, 0.05);
        }
        .pagination-wrap .pagination-custom li.active span {
            background: #cbb394;
            border-color: #cbb394;
            color: #fff;
        }
        .pagination-wrap .pagination-custom li.disabled span {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* =============================================
