.pastries-hero__section{
    padding-top: 5rem;
    padding-bottom: 3rem;
    background-color: var(--white);
}

.pastries-hero__section .pastries-hero__heading{
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.pastries-hero__section .pastries-hero__heading .heading__title{
    text-align: center;
    width: 100%;
}

.pastries-hero__section .pastries-hero__pros{
    list-style: none;
    margin: 0;
    width: 100%;
}

.pastries-hero__section .pastries-hero__pros .pastries-hero__pro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.pastries-hero__section .pastries-hero__pros .pastries-hero__pro .pro__icon{
    height: 3rem;
    width: 3rem;
    margin-top: 1rem;
    margin-right: 2rem;
}

.pastries-hero__section .pastries-hero__pros .pastries-hero__pro:last-child .pro__icon{
    width: 5rem;
    margin-top: 0.25rem;
}

.pastries-hero__section .pastries-hero__pros .pastries-hero__pro .pro__title{
    margin-bottom: 0.5rem;
    display: inline-block;
    line-height: 100%;
    text-transform: uppercase;
}

.pastries-hero__section .pastries-hero__pros .pastries-hero__pro .pro__content{
    width: calc(100% - 5rem);
}

.pastries-hero__section .pastries-hero__filter{
    position: relative;
}

.pastries-hero__section .pastries-hero__filter .filter__list{
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.pastries-hero__section .pastries-hero__filter .filter__list .filter__item{
    width: 48%;
    margin-bottom: 1rem;
    aspect-ratio: 16 / 8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-position: center;
    background-size: cover;
}

.pastries-hero__section .pastries-hero__filter .filter__list .filter__item .filter__button{
    border: 4px solid rgba(255, 255, 255, 0.75);
    background-color: #9da09e3e;
    font-family: 'Grand Halva', sans-serif;
    font-size: clamp(0.9000rem, 0.7615rem + 0.3846vw, 1.0500rem)!important;
    width: 85%;
    height: 70%;
    color: var(--white)!important;
    margin: auto;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.4s opacity ease, 0.4s border ease, 0.4s -webkit-transform ease;
    transition: 0.4s opacity ease, 0.4s border ease, 0.4s -webkit-transform ease;
    -o-transition: 0.4s opacity ease, 0.4s transform ease, 0.4s border ease;
    transition: 0.4s opacity ease, 0.4s transform ease, 0.4s border ease;
    transition: 0.4s opacity ease, 0.4s transform ease, 0.4s border ease, 0.4s -webkit-transform ease;
}

.pastries-hero__section .pastries-hero__filter .filter__list .filter__item .filter__button.active{
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    border: 4px solid var(--orange);
}

.pastries-hero__section .pastries-hero__filter .filter__reset{
    position: absolute;
    bottom: -2rem;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.4s opacity ease;
    -o-transition: 0.4s opacity ease;
    transition: 0.4s opacity ease;
}

.pastries-hero__section .pastries-hero__filter .filter__reset.button-visible{
    opacity: 1;
}

.pastries-hero__section .pastries-hero__filter .filter__reset .filter__reset-button{
    background: transparent;
    border: none;
    padding: 0;
    font-family: 'Mercedes-Serial-Light', sans-serif!important;
}

@media (min-width: 576px){
    .pastries-hero__section .pastries-hero__filter .filter__list{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 2rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        row-gap: 2rem;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
        -webkit-box-pack: unset;
            -ms-flex-pack: unset;
                justify-content: unset;
    }

    .pastries-hero__section .pastries-hero__filter .filter__list .filter__item{
        width: 100%;
        margin-bottom: 0;
        aspect-ratio: 16 / 6;
    }

    .pastries-hero__section .pastries-hero__filter .filter__reset {
        bottom: -2.25rem;
    }
}

@media (min-width: 768px){
    .pastries-hero__section{
        padding-bottom: 5rem;
    }

    .pastries-hero__section .pastries-hero__pros{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
      width:100%;
    }

    .pastries-hero__section .pastries-hero__pros .pastries-hero__pro{
        width: 45%;
        padding: 0 2%;
    }

    .pastries-hero__section .pastries-hero__filter .filter__list{
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }

    .pastries-hero__section .pastries-hero__filter .filter__list .filter__item .filter__button{
        opacity: 0;
        -webkit-transform: scale(0.96);
            -ms-transform: scale(0.96);
                transform: scale(0.96);
    }

    .pastries-hero__section .pastries-hero__filter .filter__list .filter__item .filter__button:focus-visible,
    .pastries-hero__section .pastries-hero__filter .filter__list .filter__item .filter__button:hover{
        opacity: 1;
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1);
    }

    .pastries-hero__section .pastries-hero__filter .filter__list .filter__item .filter__button.active{
        opacity: 1;
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1);
        border: 4px solid rgba(255, 255, 255, 0.75);
    }

    .pastries-hero__section .pastries-hero__filter .filter__reset {
        bottom: -3.25rem;
    }
}

@media (min-width: 992px){
    .pastries-hero__section .pastries-hero__pros .pastries-hero__pro{
        width: 38%;
        max-width: 480px;
        padding: 0 2%;
    }
}

@media (min-width: 1200px){
    .pastries-hero__section .pastries-hero__filter .filter__list{
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    }
}