    /* Page base */
    body {
        font-family: var(--e-global-typography-text-font-family);
        background: #f9f9f9;
        padding: 0;
        margin: 0;
    }

    /* Breadcrumb */
    .breadcrumb-wrapper {
        background: #fff;
        padding: 15px 0;
        border-bottom: 1px solid #e8e8e8;
        margin-bottom: 30px;
    }

    .breadcrumb {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        list-style: none;
        display: flex;
        align-items: center;
        font-size: 13px;
    }

    .breadcrumb li {
        display: inline-flex;
        align-items: center;
    }

    .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin: 0 8px;
        color: #999;
    }

    .breadcrumb a {
        color: #666;
        text-decoration: none;
        transition: color 0.2s;
    }

    .breadcrumb a:hover {
        color: #b05a2b;
    }

    .breadcrumb .active {
        color: #333;
        font-weight: 500;
    }

    /* Container: main two-column layout */
    .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .main-wrapper {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    /* Sidebar (left) - Exact width 300px */
    .sidebar-area {
        width: 300px;
        min-width: 300px;
    }

    .sidebar-widgets {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .widget {
        background: #fff;
        padding: 0;
        border-radius: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        border: 1px solid #e8e8e8;
        width: 100%;
    }

    .widget-header {
        background: #fff;
        padding: 15px 20px;
        border-bottom: 3px solid #b05a2b;
    }

    .widget-title {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin: 0;
        font-family: 'Open Sans', Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .widget-body {
        padding: 20px;
    }

    /* Categories */
    .categories-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .categories-widget li {
        margin-bottom: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .categories-widget li:last-child {
        border-bottom: none;
    }

    .categories-widget a {
        color: #333333;
        text-decoration: none;
        font-size: 14px;
        display: block;
        padding: 12px 0;
        transition: all 0.2s ease;
        font-family: 'Open Sans', Arial, sans-serif;
        position: relative;
        padding-left: 15px;
    }

    .categories-widget a:before {
        content: '›';
        position: absolute;
        left: 0;
        color: #b05a2b;
        font-size: 18px;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .categories-widget a:hover,
    .categories-widget a.active {
        color: #b05a2b;
        padding-left: 20px;
    }

    .categories-widget a:hover:before,
    .categories-widget a.active:before {
        opacity: 1;
    }

    /* Price filter */
    .widget_price_filter .widget-body {
        padding: 25px 20px;
    }

    .price_slider_wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .price_slider {
        position: relative;
        height: 6px;
        background: #e8e8e8;
        border-radius: 3px;
        margin: 20px 0 25px 0;
        cursor: pointer;
    }

    .ui-slider-range {
        position: absolute;
        height: 100%;
        background: #b05a2b;
        border-radius: 3px;
    }

    .ui-slider-handle {
        position: absolute;
        width: 18px;
        height: 18px;
        background: #fff;
        border: 3px solid #b05a2b;
        border-radius: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        cursor: grab;
        box-shadow: 0 2px 4px rgba(0,0,0,0.15);
        transition: all 0.2s;
    }

    .ui-slider-handle:active {
        cursor: grabbing;
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    }

    .ui-slider-handle:hover {
        border-color: #55421a;
        box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    }

    .price_slider_amount {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .price_label {
        font-size: 14px;
        color: #666666;
        font-family: 'Open Sans', Arial, sans-serif;
        flex: 1;
    }

    .price_label .from,
    .price_label .to {
        font-weight: 600;
        color: #333333;
    }

    .button {
        padding: 10px 25px;
        background: #b05a2b;
        color: white;
        border: none;
        border-radius: 3px;
        font-size: 14px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .button:hover {
        background: #8f4822;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .button:active {
        transform: translateY(1px);
    }

    /* hide inputs visually (kept for accessibility) */
    #min_price,
    #max_price,
    .screen-reader-text {
        display: none !important;
    }

    /* Popular products list */
    .popular-products-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .popular-products-list li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e8e8e8;
    }

    .popular-products-list li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .popular-products-list img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 3px;
        background: #f5f5f5;
        margin-right: 15px;
        border: 1px solid #e8e8e8;
        transition: transform 0.2s;
    }

    .popular-products-list li:hover img {
        transform: scale(1.05);
    }

    .popular-products-list .product-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .popular-products-list .product-name {
        font-size: 14px;
        color: #333333;
        font-family: 'Open Sans', Arial, sans-serif;
        margin-bottom: 8px;
        transition: color 0.2s;
        cursor: pointer;
        font-weight: 500;
    }

    .popular-products-list .product-name:hover {
        color: #b05a2b;
    }

    .popular-products-list .product-price {
        font-size: 14px;
        color: #b05a2b;
        font-family: 'Open Sans', Arial, sans-serif;
        font-weight: 600;
    }

    .popular-products-list .product-rating {
        display: flex;
        align-items: center;
        font-size: 12px;
        color: #ffa500;
        margin-bottom: 5px;
    }

    /* ===== Products area (center + right) ===== */
    .products-area {
        flex: 1;
        min-width: 0;
    }

    /* Toolbar */
    .products-toolbar {
        background: #fff;
        padding: 15px 20px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .result-count {
        font-size: 14px;
        color: #666;
    }

    .toolbar-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

   .view-toggle button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    margin-left: 6px;
    font-size: 18px;
    color: #8a6d3b; /* match your site's brown color */
}

.view-toggle button.active i {
    color: #000;       /* active icon darker */
}

.view-toggle button i {
    transition: 0.2s;
}

.view-toggle button:hover i {
    color: #555;
}

    .woocommerce-ordering {
        position: relative;
    }

    .woocommerce-ordering select {
        padding: 8px 35px 8px 15px;
        border: 1px solid #e8e8e8;
        background: #fff;
        font-size: 14px;
        cursor: pointer;
        appearance: none;
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 20px;
    }

    .products-section {
        background: transparent;
        padding: 0;
    }

    .products-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    /* Each product column - 3 per row on desktop */
    .product-col {
        width: calc(33.333% - 20px);
        box-sizing: border-box;
    }

    /* Product card styling - Exact dimensions */
    .product-card {
        background: #fff;
        text-align: center;
        padding: 0;
        transition: all 0.3s ease;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        position: relative;
    }

    .product-card:hover {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-color: #ccc;
    }

    .product-image-container {
        width: 100%;
        height: 280px;
        display: block;
        position: relative;
        overflow: hidden;
        background: #f8f8f8;
    }

    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
        padding: 15px;
    }

    /* Remove/override zoom */
    .product-card:hover img {
        transform: none !important;
    }

    .product-body {
        width: 100%;
        padding: 20px 15px;
    }

    .product-title {
        font-size: 15px;
        margin: 10px 0 8px 0;
        color: #333;
        font-weight: 500;
        font-family: 'Open Sans', Arial, sans-serif;
    }

    .product-title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }

    .product-title a:hover {
        color: #b05a2b;
    }

    .product-category-label {
        font-size: 11px;
        color: #999;
        letter-spacing: 1px;
        margin-bottom: 5px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .product-price {
        font-size: 16px;
        color: #444;
        margin-top: 8px;
        font-weight: 600;
    }

    .product-price .amount {
        color: #b05a2b;
        font-weight: 700;
    }

    .product-rating {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 8px 0;
        font-size: 14px;
        color: #ffa500;
    }

    .product-rating .star {
        margin-right: 2px;
    }

    .product-rating .review-count {
        font-size: 12px;
        color: #999;
        margin-left: 5px;
    }

    /* Hover icons */
    .product-hover-icons {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
        opacity: 0;
        transition: 0.3s ease;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        z-index: 10;
    }

    .product-card:hover .product-hover-icons {
        opacity: 1;
    }

    .product-hover-icon {
        width: 38px;
        height: 38px;
        background: white;
        border-radius: 50%;
        border: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 16px;
        color: #333;
    }

    .product-hover-icon:hover {
        background: #b05a2b;
        border-color: #b05a2b;
        color: #fff;
        transform: translateY(-2px);
    }

    .sale-badge {
        position: absolute;
        left: 15px;
        top: 15px;
        background: #b05a2b;
        color: #fff;
        padding: 5px 12px;
        border-radius: 3px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 5;
    }

    /* Pagination container */
    .pagination-wrapper {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .pagination {
        display: flex;
        list-style: none;
        gap: 5px;
        padding: 0;
        margin: 0;
    }

    .pagination li {
        display: inline-block;
    }

    .pagination a,
    .pagination span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border: 1px solid #e8e8e8;
        background: #fff;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s;
    }

    .pagination a:hover {
        background: #b05a2b;
        color: #fff;
        border-color: #b05a2b;
    }

    .pagination .active span {
        background: #b05a2b;
        color: #fff;
        border-color: #b05a2b;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .product-col {
            width: calc(50% - 15px);
        }

        .sidebar-area {
            display: none;
        }

        .main-wrapper {
            gap: 20px;
        }
    }

    @media (max-width: 768px) {
        .products-toolbar {
            flex-direction: column;
            align-items: flex-start;
        }

        .toolbar-right {
            width: 100%;
            justify-content: space-between;
        }
    }

    @media (max-width: 576px) {
        .product-col {
            width: 100%;
        }

        .product-image-container {
            height: 240px;
        }

        .widget-header {
            padding: 12px 15px;
        }

        .products-grid {
            gap: 20px;
        }
    }
 .product-card {
            position: relative;
            width: 300px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quick-view-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #000;
            color: white;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .product-hover-icons {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .product-hover-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            position: relative;
        }

        .product-hover-icon:first-child {
            background: #c67c5c;
            color: white;
        }

        .product-hover-icon i {
            font-size: 16px;
        }

        .product-hover-icon:first-child i {
            color: white;
        }

        .product-hover-icon:not(:first-child) i {
            color: #333;
        }

        .product-hover-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .product-hover-icon:not(:first-child):hover {
            background: #c67c5c;
        }

        .product-hover-icon:not(:first-child):hover i {
            color: white;
        }

        /* Tooltip */
        .product-hover-icon::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 11px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            margin-bottom: 8px;
        }

        .product-hover-icon:hover::before {
            opacity: 1;
        }

        .product-info {
            padding: 15px;
            text-align: center;
        }

        .product-info h3 {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
        }

        .product-info .price {
            font-size: 18px;
            color: #c67c5c;
            font-weight: 600;
        }
