.so-blocks
{
    background-color: #F9F9F9;
}

.so-banner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    background-color: #FEF8EB;
    aspect-ratio: 1280 / 347;
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

.so-banner__content
{
    padding: 40px;
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    max-width: 57.2%;
}

.so-banner-img-wrap
{
    align-self: flex-end;
}

.so-banner__img
{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.so-banner__img--mobile
{
    display: none;
}

.so-banner__png
{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    align-self: flex-end;
}

.so-banner__png--mobile
{
    display: none;
}

.so-banner__tag
{
    display: flex;
    padding: 3px 6px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.so-banner__tag>img
{
    max-width: 17px;
    max-height: 17px;
    object-fit: contain;
}

.so-banner__text
{
    opacity: 0.8;
}

.so-banner__text>*:last-child
{
    margin-bottom: 0;
}

.so-banner__text p
{
    font-size: 15px;
    font-weight: 300;
}

.so-related
{
    padding-bottom: 40px;
    opacity: 1;
    transition: all 0.3s ease;
}

.so-related.loading
{
    opacity: 0.5;
}

.so-related__title
{
    margin-bottom: 20px;
}

.so-related__grid .catalog-product__image
{
    aspect-ratio: 1 / 1;
}

.so-related__loadmore
{
    margin-top: 20px;
}

@media screen and (max-width: 768px)
{
    .so-banner
    {
        margin: 20px 0;
        aspect-ratio: unset;
        flex-direction: column;
    }

    .so-banner__img
    {
        display: none;
        object-position: bottom center;
    }

    .so-banner__img--mobile
    {
        display: block;
    }

    .so-banner-img-wrap
    {
        align-self: auto;
    }

    .so-banner__png
    {
        display: none;
    }

    .so-banner__png--mobile
    {
        display: block;
    }

    .so-banner__content
    {
        padding: 30px;
        padding-bottom: 10px;
        max-width: none;
    }

    .so-related__loadmore
    {
        margin-top: 14px;
    }
}

@media screen and (max-width: 576px)
{
    .so-banner__content
    {
        padding: 20px;
        padding-bottom: 0;
        gap: 6px;
    }

    .so-banner__title
    {
        font-size: 22px;
    }

    .so-banner__text p
    {
        font-size: 13px;
        margin-bottom: 10px;
    }
}





/* Special offer card */
.special-offers__item
{
    position: relative;
    height: 213px;
    padding: 25px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
}

.special-offers__badge
{
    display: flex;
    padding: 3px 6px;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 10px;
}

.special-offers__badge svg
{
    width: 17px;
    height: 17px;
    aspect-ratio: 1/1;
}

.special-offers__badge--discount
{
    background: #FFB928;
}

.special-offers__content
{
    position: relative;
    z-index: 2;
    max-width: 233px;
}

.special-offers__title
{
    margin-bottom: 15px;
}

.special-offers__text {
    color: #000;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%; 
    opacity: 0.6;
}

.special-offers__button
{
    padding: 7px 14px;
    border-radius: 10px;
    background: #FFF;
    width: fit-content;
    color: #E63737;
    font-size: 13px;
    font-weight: 500;
    line-height: 140%;
    transition: all .3s;
}

.special-offers__button:hover
{
    background: #E63737;
    color: #fff
}

.special-offers__image
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.special-offers__img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.special-offers__item:hover .special-offers__img
{
    transform: scale(1.04);
}


.special-offers__img--mob
{
    display: none !important;
}

@media (max-width: 768px)
{
    .special-offers__img--desct
    {
        display: none !important;
    }

    .special-offers__img--mob
    {
        display: block !important;
    }

    .special-offers__item
    {
        position: relative;
        height: 271px;
        min-width: 246px;
        width: 246px;
        padding: 20px;
        display: flex;
        align-items: flex-start;
        border-radius: 20px;
        overflow: hidden;
    }

    .special-offers__title
    {
        margin-bottom: 10px;
    }
}

/* Special offers slider */
.special-offers-slider
{
    padding-bottom: 60px;
}

.special-offers-slider .slider-items .slick-track
{
    margin-left: 0;
}

.special-offers-slider .slider-items .slick-slide
{
    display: flex !important;
    margin-right: 20px;
}

.special-offers-slider .slider-items .slick-list
{
    margin-right: -20px;
}


.so-arrows
{
    display: flex;
    gap: 10px;
}

.so-arrow
{
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff;
    cursor: pointer;
    transition: all .3s;
}

.so-arrow svg path
{
    transition: all .3s;
}

.so-arrow:hover
{
    background: #E63737;
}

.so-arrow:hover svg path
{
    stroke: #fff;
}

.so-arrow.slick-disabled
{
    opacity: .5;
    pointer-events: none;
}


@media screen and (max-width: 768px)
{
    .special-offers-slider .slider-items .slick-slide
    {
        margin-right: 14px;
    }

    .special-offers-slider .slider-items .slick-list
    {
        margin-right: -14px;
    }

    .so-arrows {
        display: none;
    }
}


/* ARCHIVE */

.special-offers__archive {
    padding: 40px 0;
    transition: all .3s;
}

.special-offers__archive.loading {
    opacity: .5;
    pointer-events: none;
}

.special-offers__archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.so-pagination-wrapper {
    margin-top: 40px;
}
.so-pagination-wrapper ul.page-numbers {
    margin-top: 20px;
}

@media screen and (max-width: 992px) {
    .special-offers__archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .special-offers__archive {
        padding: 25px 0;
    }
    .special-offers__archive-grid {
        gap: 14px;
    }
    .special-offers__archive-grid .special-offers__item {
        width: auto;
        min-width: auto;
    }

    .so-pagination-wrapper {
        margin-top: 14px;
    }
}

@media screen and (max-width: 576px) {
    .special-offers__archive-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media screen and (min-width: 380px) and (max-width: 576px) {
    .special-offers__archive-grid .special-offers__item {
        height: 212px;
    }
    .special-offers__archive-grid .special-offers__img--mob {
        display: none !important;
    }
    .special-offers__archive-grid .special-offers__img--desct {
        display: block !important;
    }
}