#hero{
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url("./assets/images/banner.jpeg");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

#hero .container{
    transform: scaleX(-1);
}

.hero-content{
    padding-top: 10rem;
    gap: 30px;
}

.hero-btn{
    margin-top: 40px;
    width: 100%;
    border: none;
    padding: 20px 30px;
    background: var(--secondary);
    border-radius: 8px;
    font-size: 1rem;
}

.hero-btn:hover{
    animation: bounce .5s linear;
}

.section-padding{
    padding: 70px 0 50px 0;
}
.mt-container{
    margin-top: 30px;
}


.best-selling-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.banner-card{
    width: 100%;
    height:  auto;
    position: relative;
}

.banner-card img{
    width: 100%;
    height: auto;
    min-height: 150px;
    object-fit: cover;
}

.banner-info{
    width: 100%;
    background: var(--main);
    text-align: center;
    padding: 30px 50px;
}

.banner-info h2{
    font-weight: 300;
    line-height: 150%;
}

.banner-btn{
    width: 100%;
    border: none;
    padding: 10px 0;
    background: var(--secondary);
    border-radius: 8px;
    font-size: 16px;
    color: var(--white);
    max-width: 276px;
}
.banner-slider .swiper-button-next, .banner-slider .swiper-button-prev{
    top: 75%;
}







/* ADAPTIVE */

@media (min-width:960px) {
    .hero-content{
        gap: 70px;
    }

    .hero-btn{
        width: 40%;
        font-size: 18px;
        margin-top: 80px;
    }
    .mt-container{
        margin-top: 50px;
    }

    .best-selling-grid{
        grid-template-columns: repeat(3, 1fr);
        column-gap: 30px;
        row-gap: 50px;
    }

    .banner-info{
        height: 131px;
        padding: 0 50px;
    }

    .banner-slider .swiper-button-next img{
        margin-right: 50px;
    }
    .banner-slider .swiper-button-prev img{
        margin-left: 50px;
    }

    .banner-slider .swiper-button-next, .banner-slider .swiper-button-prev{
        top: 50%;
    }
}

@media (min-width:1040px) {
    .best-selling-grid{
        grid-template-columns: repeat(4, 1fr);
    }
}