<style>
  /* === FILTER CONTROLS === */
.filter-section {
        display: inline-flex;
        background-color: #fff;
        border-radius: 50px;
        padding: 0px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }

    .filter-wrapper {
        display: flex;
        justify-content: center;
    }

    .filter-icon {
        font-size: 1rem;
        color: #2c3e50;
        font-weight: 600;
        padding-right: 16px;
        border-right: 1px solid #e9ecef;
        margin-right: 16px;
    }

    .filter-pill {
        background: none;
        border: none;
        padding: 10px 20px;
        margin: 0 4px;
        cursor: pointer;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    .filter-section {
        display: inline-flex;
        background-color: #fff;
        border-radius: 50px;
        padding: 0px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }

    .filter-wrapper {
        display: flex;
        justify-content: center;
    }

    .filter-icon {
        font-size: 1rem;
        color: #2c3e50;
        font-weight: 600;
        padding-right: 16px;
        border-right: 1px solid #e9ecef;
        margin-right: 16px;
    }

    .filter-pill {
        background: none;
        border: none;
        padding: 10px 20px;
        margin: 0 4px;
        cursor: pointer;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .filter-pill:hover {
        color: #2c3e50;
    }

    .filter-pill.active {
        color: #17a2b8;
        border-bottom-color: #17a2b8;
    }


    @media (max-width: 991px) {


        .filter-section {
            border-radius: 25px;
            padding: 8px 12px;
        }

        .filter-pill {
            padding: 8px 12px;
            font-size: 0.9rem;
            margin: 0 2px;
        }

        .filter-icon {
            padding-right: 12px;
            margin-right: 12px;
        }


    }

    .product-price {
        font-size: 1.25rem;
        font-weight: 800;
    }

   
    /* Mobile filter */
    .mobile-filter-toggle {
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 999px;
        padding: .65rem 1rem;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    }

    .mobile-filter-list {
        list-style: none;
        margin: .75rem 0 0;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
        background: #fff;
    }

    .mobile-filter-item {
        width: 100%;
        text-align: left;
        padding: .75rem 1rem;
        border: 0;
        background: none;
        font-weight: 600;
    }

    .mobile-filter-item.active,
    .mobile-filter-item:hover {
        background: #e9f5ff;
        color: #0b5a8a;
    }


/* === PRODUCT GRID === */

  .product-card {
        border: 0;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
        background-color: white;
        display: flex;
        flex-direction: column;
        height: 100%;
        text-align: center;
    }

    .product-card .card-body {
        padding: 1.25rem;
        background: #fff;
        text-align: center;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

   /* Image wrapper */
#productGrid .product-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Base image styles */
#productGrid .product-img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Primary image */
#productGrid .product-img--primary {
    position: relative;
    z-index: 1;
    transition: opacity 0.18s ease-in-out;
}

/* Alt image stacked on top */
#productGrid .product-img--alt {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-in-out;
}

/* Toggle state */
#productGrid .product-image-wrapper.is-alt .product-img--alt {
    opacity: 1;
}

#productGrid .product-image-wrapper.is-alt .product-img--primary {
    opacity: 0;
}

/* Arrows */
#productGrid .product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    font-size: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#productGrid .product-arrow::before {
    font-size: 22px;
    line-height: 1;
    color: #fff;
    display: block;
    transform: translateY(-1px);
}

#productGrid .product-prev {
    left: 10px;
}

#productGrid .product-next {
    right: 10px;
}

#productGrid .product-prev::before {
    content: "‹";
}

#productGrid .product-next::before {
    content: "›";
}

/* Dots */
#productGrid .product-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

#productGrid .product-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, transform 0.2s ease;
}

#productGrid .product-image-wrapper:not(.is-alt) .product-dot--primary,
#productGrid .product-image-wrapper.is-alt .product-dot--alt {
    background: rgba(0, 0, 0, 0.9);
}

</style>
