
        .product-list-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 2.5rem 2rem;
        }

        .product-list-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .product-list-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            width: 100%;
        }

        .product-list-item {
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(26, 40, 66, 0.07);
            padding: 1.2rem 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-list-title {
            font-size: 1rem;
            font-weight: 700;
            color: #1a2842;
            margin-bottom: 0.7rem;
            text-align: center;
            height: 40px;
        }

        .product-list-view {
            margin-top: 0.7rem;
            background: #1a2842;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 0.5rem 1.2rem;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.18s;
            text-decoration: none;
            display: inline-block;
        }

        .product-list-view:hover {
            background: #2d3a5a;
        }

        .product-list-item:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 8px 24px rgba(26, 40, 66, 0.15);
        }

        @media (max-width: 1200px) {
            .product-list-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 1.2rem;
            }
        }

        @media (max-width: 900px) {
            .product-list-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 700px) {
            .product-list-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.8rem;
            }

            .product-list-item {
                padding: 1rem 0.6rem;
            }
        }

        @media (max-width: 767px) {
            .product-list-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 0.8rem;
            }
        }

        .hero-section {
            background: var(--oxford-blue-dark);
            padding: 0.5rem 0 0.375rem 0;
            color: var(--anti-flash-white);
            text-align: center;
            min-height: 20vh;
        }

        #modalCaption {
            color: #fff;
            font-size: 1.7rem;
            margin-top: 10px;
            text-align: center;
        }

        .hero-title {
            font-size: 1.7rem !important;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: var(--anti-flash-white);
            margin-bottom: 0.8rem;
        }

        .hero-container {
            min-height: 20vh;
        }

        /* Pagination Container */
        .pagination {
            margin-top: 1rem;
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }

        /* Pagination Links */
        .pagination a {
            text-decoration: none;
            text-align: center;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
            padding: 0.5rem 0.8rem;
            border: 1px solid #ccc;
            color: #000;
            /* Default text color */
        }

        /* Hover */
        .pagination a:hover {
            background-color: var(--oxford-blue);
            color: #fff;
        }

        /* Active Page */
        .pagination a.active {
            font-weight: bold;
            background-color: var(--oxford-blue);
            color: #fff;
            /* keep same text color */
        }

        /* Disabled Links */
        .pagination a.disabled {
            pointer-events: none;
            opacity: 0.5;
        }

        /* Responsive breakpoints */
        @media (max-width: 992px) {
            .product-list-item {
                flex: 1 1 calc(50% - 1rem);
                /* 2 per row on tablets */
            }
        }

        @media (max-width: 576px) {
            .product-list-item {
                flex: 1 1 100%;
                /* 1 per row on mobile */
            }

            .product-card-links {
                gap: 0.5rem;
                flex-wrap: wrap;
            }

            .pagination {
                flex-wrap: wrap;
            }

            .pagination a {
                padding: 0.4rem 0.6rem;
                margin-bottom: 0.3rem;
            }
        }

        .subcategory-window {
            position: fixed;
            background: #ffffff;
            border: 2px solid #1a2842;
            border-radius: 8px;
            padding: 0;
            width: 220px;
            max-height: 250px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            font-family: Arial, sans-serif;
        }

        /* Category header in window */
        .subcategory-window h4 {
            background-color: #1a2842;
            /* dark blue header */
            color: #fff;
            margin: 0;
            padding: 10px 15px;
            font-size: 1.1rem;
            font-weight: 600;
            font-weight: bold;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

        /* Subcategory items */
        .subcategory-window-item {
            padding: 10px 15px;
            cursor: pointer;
            font-size: 13px;
            color: #333;
            border-bottom: 1px solid #f0f0f0;
        }

        .subcategory-window-item:last-child {
            border-bottom: none;
        }

        .subcategory-window-item:hover {
            background-color: #f5f5f5;
        }

        .subcategory-window {
            position: fixed;
            background: #fff;
            border: 2px solid #1a2842;

            width: 250px;
            max-height: 200px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
        }

        .subcategory-window.show {
            display: block;
        }

        .subcategory-window-item {
            padding: 5px 10px;
            cursor: pointer;
        }

        .subcategory-window-item:hover {
            background-color: #f0f0f0;
        }

        .brand-categories.open {
            display: block;
        }

        .brand-categories {
            display: none;

        }

        .brand-header {
            cursor: pointer;
        }

        .brand-toggle-icon {
            margin-right: 5px;
        }


                    /* Basic styling */
                    .brand-categories {
                        display: none;

                    }

                    .brand-categories.open {
                        display: block;
                    }

                    .subcategory-window {
                        position: fixed;
                        background: #fff;
                        border: 2px solid #1a2842;
                        width: 250px;
                        max-height: 400px;
                        overflow-y: auto;
                        display: none;
                        z-index: 9999;
                    }

                    .subcategory-window.show {
                        display: block;
                    }

                    .brand-header a {
                        display: flex;
                        text-decoration: none;
                        align-items: center;


                        cursor: pointer;
                        transition: background 0.3s;
                        font-weight: 600;
                        color: var(--oxford-blue);
                    }

                    .category-header a {

                        cursor: pointer;
                        transition: all 0.3s;
                        font-weight: 500;
                        color: #10192e;
                        text-decoration: none;
                    }

                    .subcategory-window-item {
                        /* margin: 5px 0; */
                        display: flex;
                        align-items: center;
                        padding: 1rem 1.5rem;
                        cursor: pointer;
                        transition: background 0.3s;
                        border-left: 3px solid transparent;
                        font-size: .95rem !important;
                    }


                    .subcategory-window-item .item-name {
                        font-size: 0.95rem;
                        color: #10192e !important;
                        font-weight: 500;
                    }

                    .subcategory-window-item a:hover {
                        text-decoration: underline;
                        color: #001f3f;
                    }

                    /* Initially hide filter-group on mobile */
/* Initially hide filter-group on mobile */
@media (max-width: 767px) {
    .filter-group {
        display: none;
        transition: all 0.3s ease;
    }

    .filter-group.show {
        display: block;
    }

    /* Optional: style the toggle button */
    .mobile-filter-toggle {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 23.2em;
    }


    .filter-toggle-btn i {
        margin-right: 0.5rem;
    }
}
       