    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: 10px;
        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;
}
/* ============================================
   COMPLETE COLLECTION PAGE STYLES
   File: public/assets/css/collection.css
   ============================================ */

/* Main Container */
.main-container {
    padding: 2vw;
    padding-top: 120px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Search Bar */
.search-bar-container {
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.search-icon:hover {
    color: #dc2626;
}

.clear-search {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    display: none;
    transition: color 0.3s;
}

.clear-search:hover {
    color: #dc2626;
}

.clear-search.show {
    display: block;
}

/* Top Controls Bar */
.top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-toggle-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Filter Label (Desktop) */
.filter-bg-sc {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-lg-screen {
    margin: 0;
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Filter Button */
.btn-filter-sm {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    transition: all 0.3s;
}

.btn-filter-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-filter-sm i {
    margin-right: 8px;
}

/* Sort Dropdown */
.sort-by-dropdown {
    min-width: 200px;
}

.sort-focus {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.sort-focus:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

/* Filter Sidebar */
.filter-sidebar {
    /* background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Applied Filters Section */
.applied-filters {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.applied-filters h6 {
    color: white;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
}

.applied-filters .badge {
    margin: 4px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
}

/* Filter Sections */
.filter-title {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    /* border-bottom: 2px solid #334155; */
    user-select: none;
}

.filter-title:hover {
    color: #f1f5f9;
}

.filter-title .toggle-icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0 8px;
    cursor: pointer;
    user-select: none;
    z-index: 1;
    font-size: 18px;
    color: #cbd5e1;
}

.filter-options {
    display: none;
    padding-top: 10px;
}

.filter-options-show {
    display: block;
    padding-top: 10px;
}

/* Filter Checkboxes */
.filter-sidebar .form-check {
    margin-bottom: 10px;
    /* padding: 6px 0; */
    transition: background 0.2s;
    border-radius: 6px;
    /* padding-left: 8px; */
}

.filter-sidebar .form-check:hover {
    background: rgba(51, 65, 85, 0.3);
}

.filter-sidebar .form-check-label {
    color: #e2e8f0;
    font-size: 14px;
    cursor: pointer;
    padding-left: 8px;
}

.filter-sidebar .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    border: 2px solid #64748b;
}

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

.filter-sidebar .form-check-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25);
}

/* Price Slider */
.price-slider {
    margin: 15px 0;
}

.price-display {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid #475569;
    color: rgb(0, 0, 0);
    text-align: center;
}

.price-display:focus {
    background: rgba(51, 65, 85, 0.7);
    border-color: #dc2626;
    color: white;
}

/* jQuery UI Slider Customization */
.ui-slider {
    background: #475569;
    border: none;
    border-radius: 4px;
}

.ui-slider-range {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.ui-slider-handle {
    background: white;
    border: 2px solid #dc2626;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.ui-slider-handle:hover,
.ui-slider-handle:focus {
    transform: scale(1.2);
}

/* Dividers */
.filter-sidebar hr {
    border-color: #334155;
    opacity: 0.5;
    margin: 15px 0;
}

/* Product Cards Grid */
.all-card-h {
    min-height: 400px;
    transition: opacity 0.3s;
}

.all-card-h.loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.all-card-h.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #dc2626;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.close-filter {
    background: #dc2626;
    border: none;
    color: white;
    font-size: 28px;
    line-height: 1;
    padding: 5px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.close-filter:hover {
    background: #991b1b;
}

.filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

@media (max-width: 1199px) {
    .filter-sidebar {
        top: 80px;
    }
}

@media (max-width: 992px) {
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .top-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-toggle-section {
        justify-content: space-between;
        width: 100%;
    }
    
    .sort-by-dropdown {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 15px;
        padding-top: 100px;
    }
    
    .filter-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        z-index: 9999;
        transition: left 0.3s ease;
        max-height: 100vh;
        overflow-y: auto;
        border-radius: 0;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    
    .filter-sidebar.active {
        left: 0;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    body.sidebar-open {
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .search-input {
        padding: 12px 45px 12px 16px;
        font-size: 14px;
    }
    
    .filter-bg-sc {
        padding: 10px 16px;
    }
    
    .filter-lg-screen {
        font-size: 16px;
    }
    
    .btn-filter-sm {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* No Products Found */
.no-products-found {
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.no-products-found i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.no-products-found h3 {
    color: #64748b;
    margin-bottom: 10px;
    font-size: 24px;
}

.no-products-found p {
    color: #94a3b8;
    font-size: 16px;
}

/* Accessibility */
.filter-sidebar *:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .filter-sidebar,
    .search-bar-container,
    .top-controls,
    .pagination-wrapper {
        display: none !important;
    }
    
    .col-lg-9 {
        width: 100% !important;
    }
}