    .price-range,
    .age-range {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        pointer-events: none;
        position: absolute;
        width: 100%;
        height: 4px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    dt.variation-AddedAccessories {
        font-weight: 700;
    }

    ul.aa-added-accessories-list {
        list-style-type: disc;
        padding-left: 25px;
    }

    div.aa-cart-item-meta {
        font-size: 14px !important;
    }

    .price-range::-webkit-slider-thumb,
    .age-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #111;
        pointer-events: all;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }

    .price-range::-moz-range-thumb,
    .age-range::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #111;
        pointer-events: all;
        cursor: pointer;
        box-shadow: none;
        border: 2px solid #111;
    }

    /* Active filter tag pill */
    .active-filter-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #111;
        color: #fff;
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 999px;
        font-weight: 500;
    }

    .active-filter-tag button {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        padding: 0;
        font-size: 14px;
    }

    #products-loading {
        position: absolute;
        background: rgba(255, 255, 255, 0.7);
        z-index: 10;
        border-radius: 8px;
        backdrop-filter: blur(2px);
    }

    #products-wrapper {
        position: relative;
        min-height: 200px;
    }

    .filter-btn.is-active {
        border-color: #111;
        background: #111;
        color: #fff;
    }

    .filter-btn.is-active svg {
        stroke: #fff;
    }

    #products-pagination span.page-numbers,
    #products-pagination a.page-numbers {
        font-size: 0.9rem;
        line-height: 1rem;
        width: 31px;
        height: 33px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        border: 1px solid #011CA7;
        color: #011CA7;
        font-family: Sora, sans-serif;
        transition-duration: 300ms;
    }

    #products-pagination span.page-numbers.current {
        background-color: #011CA7;
        color: white;
    }

    #products-pagination a.page-numbers:hover {
        background-color: #011CA7;
        color: white;
    }

    .hero-banner-list {
        background-image: url('/wp-content/uploads/2026/07/hero-banner.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    /* Mobile & Tablet */
    @media (max-width: 1023px) {
        .hero-banner-list {
            background-image: url('/wp-content/uploads/2026/07/hero-m.webp');
        }
    }


    /* ===== Certificate Slider ===== */
    .certificate-slider {
        padding-bottom: 40px;
        /* space for pagination */
    }

    .certificate-slider .swiper-wrapper {
        align-items: center;
        /* vertical center all slides */
    }

    /* Default (middle) slides */
    .certificate-slider .swiper-slide {
        /* width: 36% !important; */
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* First & Last slides – wider */
    .certificate-slider .swiper-slide:first-child,
    .certificate-slider .swiper-slide:last-child {
        /* width: 50% !important; */
    }

    /* Inner wrapper to control height */
    .certificate-slider .slide-inner {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Image styling – prevents height breaking */
    .certificate-slider .certificate-img {
        width: 100%;
        height: auto;
        max-height: 420px;
        /* ← adjust this value as needed */
        object-fit: contain;
        border-radius: 20px;
        /* box-shadow: 2px 4px 30px 0px rgba(1, 28, 167, 0.2); */
    }

    /* Mobile */
    @media (max-width: 639px) {
        .certificate-slider .swiper-slide {
            /* width: 82% !important; */
        }

        .certificate-slider .swiper-slide:first-child,
        .certificate-slider .swiper-slide:last-child {
            /* width: 88% !important; */
        }

        .certificate-slider .certificate-img {
            /* max-height: 340px; */
        }
    }