.sanza-shop-catalog {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.sanza-shop-catalog__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sanza-shop-catalog__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid #98A2B3;
    border-radius: 999px;
    background: #FFFFFF;
    color: #30343E;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8889rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.sanza-shop-catalog__filter:hover,
.sanza-shop-catalog__filter:focus-visible,
.sanza-shop-catalog__filter.is-active {
    background: #A9D9EC;
    border-color: #A9D9EC;
    color: #004BB2;
    outline: none;
}

.sanza-category-carousel.is-filtered-out {
    display: none;
}

.sanza-category-carousel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sanza-category-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sanza-category-carousel__title {
    margin: 0;
    color: #30343E;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}

.sanza-category-carousel__controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sanza-category-carousel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #004BB2;
    border-radius: 999px;
    background: #F4F4F4;
    color: #004BB2;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.sanza-category-carousel__button:hover,
.sanza-category-carousel__button:focus-visible {
    background: #004BB2;
    color: #FFFFFF;
    outline: none;
}

.sanza-category-carousel__button[disabled] {
    opacity: 0.45;
    cursor: default;
}

.sanza-category-carousel__viewport {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.sanza-category-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.sanza-category-carousel__viewport:focus-visible {
    outline: 2px solid #004BB2;
    outline-offset: 0.25rem;
}

.sanza-category-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sanza-category-carousel__track::before,
.sanza-category-carousel__track::after {
    display: none !important;
}

.sanza-category-carousel__track li.product.sanza-product-card {
    flex: 0 0 calc((100% - 3rem) / 4);
    width: calc((100% - 3rem) / 4);
    min-width: 0;
    margin: 0;
}

.sanza-product-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22.2222rem;
    padding: 1.5rem 1rem 3.25rem;
    border: 1px solid #98A2B3;
    border-radius: 1rem;
    background: #FFFFFF;
    box-sizing: border-box;
    overflow: visible;
}

.sanza-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    text-decoration: none;
}

.sanza-product-card__image img,
.sanza-product-card__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
}

.sanza-product-card__cta {
    position: absolute;
    left: 50%;
    bottom: -0.75rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.3333rem;
    padding: 0.3889rem 0.6667rem;
    border-radius: 999px;
    background: #A9D9EC;
    color: #004BB2;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8889rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    text-decoration: none;
    white-space: nowrap;
}

.sanza-product-card__title {
    display: block;
    margin-top: 1.25rem;
    color: #30343E;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4444rem;
    text-decoration: none;
}

.sanza-product-card__price {
    margin-top: 0.3333rem;
    color: #30343E;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7778rem;
    font-weight: 400;
    line-height: 1.3;
}

.sanza-product-card__price .amount,
.sanza-product-card__price bdi {
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .sanza-category-carousel__track li.product.sanza-product-card {
        flex-basis: calc((100% - 1rem) / 2);
        width: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .sanza-shop-catalog {
        gap: 2.5rem;
    }

    .sanza-shop-catalog__filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }

    .sanza-shop-catalog__filters::-webkit-scrollbar {
        display: none;
    }

    .sanza-category-carousel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .sanza-category-carousel__title {
        font-size: 1.6667rem;
    }

    .sanza-category-carousel__track li.product.sanza-product-card {
        flex-basis: 100%;
        width: 100%;
    }

    .sanza-product-card__media {
        height: 16.6667rem;
        padding: 1rem 0.875rem 3rem;
    }
}