    body {
        background-color: #f8f9fa;
    }

    .filter-wrapper {
        position: relative;
    }

    .filter-sidebar {
        background-color: #00234C;
        color: white;
        padding: 20px;
        border-radius: 22px;
    }

    .filter-sidebar h5 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .clear-icon {
        cursor: pointer;
        font-weight: bold;
        padding-left: 10px;
    }

    .filter-options {
        transition: all 0.3s ease;
    }

    .filter-options-show {
        display: block;
        /* by default, first section visible */
    }

    .filter-options {
        display: none;
    }

    .filter-sidebar .form-check-input:checked {
        background-color: #f4bc44;
        border-color: #ffc107;
    }

    .filter-sidebar .form-check-input {
        background-color: transparent;
        border: 1px solid #fff;
        /* border-radius: 12px; */
    }


    /* Product Card Styles */
    .product-card-wrapper {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-card {
        width: 250px;
        height: auto;
        background-color: #fff;
        border: 2px solid #00234C14;
        border-radius: 24px;
        padding-top: 110px;
        text-align: left;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: visible;
        transition: all 0.3s ease;
        margin-top: 95px;
        flex-grow: 1;
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .image-container {
        position: absolute;
        top: -95px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .product-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
    }

    .card-body-main {
        padding: 60px 0px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100% - 120px);
    }

    .product-title a{
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #00234C !important;
        margin: 10px 0 !important;
        line-height: normal;
    }

    .product-price {
        font-size: 20px;
        color: #940808;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .product-specs {
        text-align: left;
        font-size: 13px;
        line-height: 1.5;
        color: #333;
        margin-bottom: 20px;
        padding-left: 0;
        list-style: none;
    }

    .product-specs li {
        display: flex;
        justify-content: space-between;
        align-items: normal;
        border-bottom: 1px solid #940808;
        padding: 10px 0;
        color: #00234C;
        font-weight: 500;
        font-size: 12px;
        gap: 20px !important;
    }

    .card-actions {
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        margin-top: auto;
    }

    .add-to-cart {
        flex: 1;
        background-color: #940808;
        color: white;
        border: none;
        padding: 10px 10px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        margin-right: 8px;
    }

    .add-to-cart:hover {
        background-color: #a80000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        color: #fff;
        transition: all 0.3s ease;
    }


    .filter-btn {

        max-width: 50px;
        height: 46px;
        text-align: center;
        margin-left: 20px;
        background-color: #F4BC44;
        padding: 10px;
        border-radius: 12px;

    }

    .filter-header {
        margin-top: 150px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 70px;
        align-items: center;
    }

    .filter-header h4 {
        font-size: 24px;
        color: #00234C;
        font-weight: 600;
    }

    .sort-by-btn {
        border: 1px solid #000;
        border-radius: 35px;
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .form-check-label {
        font-size: 14px;
        margin-left: 5px;
        text-transform: uppercase;
    }

    .filter-lg-screen {
        font-size: 24px;
        color: #00234C;
        font-weight: 600;
    }

    .sort-by-dropdown select {
        border: 1px solid #000;
        border-radius: 35px;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        width: 160px !important;
    }



    .sort-focus:focus {
        box-shadow: none !important;
        outline: none !important;
        border-color: #00234C !important;
    }

    .btn-filter-sm:hover {
        color: #00234C;
        font-weight: 500;
        border: 1px solid #00234C;

    }

    @media (max-width: 768px) {
        .filter-sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 300px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 9999;

        }

        .filter-sidebar.active {
            transform: translateX(0);
            border-radius: 0;
            overflow: scroll;

        }


        .close-filter {
            background: none;
            border: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
        }

        .btn-filter-sm {
            font-size: 12px;
            color: #00234C;
            font-weight: 500;
            border: 1px solid;
            border-radius: 0;
            padding: 10px;
            text-transform: uppercase;

        }

        .all-card-h {
            padding: 12px;
        }

        .sort-by-dropdown select {
            padding: 10px;
            font-size: 12px;
            width: 100px !important;
            border-radius: 0;
        }

        .sort-focus:focus {
            box-shadow: none !important;
            outline: none !important;
            border-color: #00234C !important;
        }





    }

    @media (max-width: 576px) {


        .sort-by-dropdown select {
            padding: 10px;
            font-size: 12px;
            width: 100px !important;
            border-radius: 0;
        }

        .all-card-h {
            padding: 12px;
        }

        .sort-focus:focus {
            box-shadow: none !important;
            outline: none !important;
            border-color: #00234C !important;
        }

    }
    .applied-filters .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 20px;
}
.applied-filters .badge a {
    margin-left: 5px;
    font-weight: bold;
}
