/*========================================*\
    Hero Banner
\*========================================*/
#heroBanner {
    margin-bottom: 50px;
}
.hero-banner-container {
    position: relative;
    height: 100vh;
    margin-bottom: 160px;
}
.hero-banner {
    position: relative;
    height: 100%;
}
.section-image-hero img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.hero-banner-text {
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}
.hero-banner-text__main {
    font-size: 70px;
}
.hero-banner-text__sub {
    font-size: 29px;
}
.hero-banner-link {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 40px;
    border-radius: 30px;
    transition: 0.5s;
}
.hero-banner-link:hover {
    background: #fff;
}
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 60px;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    text-align: center;
    line-height: 15px;
    font-size: 12px;
    color: transparent;
    opacity: 1;
    background: transparent;
    border: 1px solid #fff;
    transition: 0.5s ease-in-out;
}
.swiper-pagination-bullet-active {
    background: #fff;
}

/*========================================*\
    Best Sellers
\*========================================*/
#bestSeller .feature-title {
    text-align: center;
}
#bestSeller .product-grid-detail {
    transform: translateY(-100%);
}
#bestSellerProduct article {
    margin-right: 20px;
}
#bestSellerProduct .product-grid-img {
    padding: 0px;
    height: auto;
}
#bestSellerProduct .product-grid-img img {
    position: static;
    transform: none;
}
#bestSellerProduct .product-grid-detail {
    position: static;
    transform: none;
}
#bestSellerProduct .swiper-button-container {
    position: absolute;
    display: flex;
    left: 0px;
    width: 100%;
    top: 50%;
    justify-content: center;
}
.swiper-button-prev,
.swiper-button-next {
    border: 1px solid #000;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    content: ''
}


/*========================================*\
    Review Section
\*========================================*/
.star-review-icon {
    display: block;
    height: 18px;
    width: 102px;
    margin-bottom: 20px;
}
svg.star-review-icon {
    max-height: 100%;
	overflow: hidden;
}
#reviews .description {
    font-size: 20px;
}
#reviewSlide {
    padding: 40px 0px;
}
#reviewSlide .swiper-button-prev,
#reviewSlide .swiper-button-next {
    position: absolute;
    top: 65px;
    left: 45px;
}
#reviewSlide .swiper-button-next {
    left: 90px;
}


/*========================================*\
    Featured Product
\*========================================*/
.featured-product-grid {
    position: relative;
    width: calc(var(--single-grid) * 2);
}
.featured-product-grid .product-grid-img {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0px;
}
.featured-product-grid .product-grid-img img {
    position: static;
    transform: none;
}
.featured-product-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #ffffff;
    text-align: center;
}
.featured-product-text > small {
    font-size: 16px;
}
.featured-product-text > div {
    font-size: 60px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}


/*========================================*\
    Image Feed
\*========================================*/
.image-feed-grid {
    position: relative;
    width: calc(var(--single-grid) * 1);
    padding: 0px 5px;
    margin-bottom: 10px;
}
.image-feed-grid figure {
    position: relative;
    margin: 0px;
}
.image-feed-caption {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0px;
    opacity: 0;
    transition: 0.5s;
    color: #fff;
    z-index: 1;
}
.image-feed-caption > span {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 20px;
    font-size: 14px;
}
.image-feed-caption::before {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
    z-index: -1;
}
.image-feed-grid img {
    width: 100%;
}
.image-feed-grid:hover .image-feed-caption {
    opacity: 1;
}


@media (max-width: 1724px) {
    .featured-product-grid {
        width: calc(var(--single-grid) * 1);
    }
    .image-feed-grid {
        width: calc(var(--single-grid) * 0.5);
    }
}

@media (max-width: 1300px) {
    .image-feed-grid {
        width: calc(var(--single-grid) * 0.666);
    }
}

@media only screen and (max-width: 876px) {
    .hero-banner-text__sub {
        font-size: 23px;
    }
    .featured-product-grid {
        margin-bottom: 15px;
    }
    .image-feed-grid {
        width: calc(var(--single-grid) * 0.5);
    }
    .hero-banner-text__main {
        font-size: 12vw;
    }
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
    #bestSeller .feature-title {
        text-align: left;
        padding-left: 10px;
    }
    #bestSellerProduct {
        padding-bottom: 60px;
    }
    #bestSellerProduct .swiper-button-container {
        top: auto;
        bottom: 0px;
        gap: 10px;
    }
    #bestSellerProduct .swiper-button-prev,
    #bestSellerProduct .swiper-button-next {
        position: static;
    }
    #reviews .section-flex-reverse {
        flex-direction: column-reverse;
    }
    #reviewSlide .swiper-button-prev,
    #reviewSlide .swiper-button-next {
        left: 0px;
        top: 35px;
    }
    #reviewSlide .swiper-button-next {
        left: 50px;
    }
    .image-feed-caption > span {
        font-size: 10px;
        padding: 15px;
    }
}

@media (max-width: 603px) {
    .hero-banner-text__sub {
        font-size: 18px;
    }
}
