/*  ==========  #INFO  ==========  */

/* Ipad, laptop Devices < 1024px */
/* Tablet Devices < 767px */
/* Mobile Devices < 480px */
/* MINI Devices < 480px */

/*  ==========  END #INFO  ==========  */

/*  ==========  MAIN BANNERS STYLES  ==========  */
#main-banners .main-banners-inner{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
#main-banners .slider{
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid var(--color-border-6)
}
.swiper-pagination-bullet-active{background: var(--color-main) !important;}
#main-banners .slider img{border-radius: 12px; width: 100%;}
#main-banners .high-lights{
    display: flex;
    flex-direction: column;
    width: 29%;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid var(--color-border-6);
    aspect-ratio: 1 /1;
}
#main-banners .high-lights .header{
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
#main-banners .high-lights .content{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
#main-banners .high-lights .product-card{padding-bottom: 35px;}
#main-banners .high-lights .product-card .title{
    height: 50px;
    font-size: 14px;
}
#main-banners .high-lights .product-card .price-old{font-size: 13px;}
#main-banners .high-lights .product-card .price{font-size: 18px;}
@media screen and (max-width: 1024px){
    #main-banners .high-lights .header{padding: 15px;}
    #main-banners .high-lights .product-card{padding-top: 30px;}
    #main-banners .high-lights .product-card .image{height: 150px;}
}
@media screen and (max-width: 767px){
    #main-banners .main-banners-inner{
        flex-direction: column;
        justify-content: unset;
    }
    #main-banners .high-lights{
        width: 100%;
        aspect-ratio: unset;
    }
}
/*  ==========  END MAIN BANNERS STYLES  ==========  */





/*  ==========  CATALOG STYLES  ==========  */
#catalog .catalog-inner{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    overflow-x: auto;
}
#catalog .catalog-inner .item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid var(--color-border-6);
    position: relative;
}
#catalog .catalog-inner .image{
    width: 100%;
    aspect-ratio: 1 / 1;
}
#catalog .catalog-inner .image img{
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
#catalog .catalog-inner .title{
    text-align: center;
    font-weight: 500;
}
#catalog .catalog-inner .item a{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
}
@media screen and (max-width: 1024px){
    #catalog .catalog-inner{grid-template-columns: repeat(5, 25%);}
}
@media screen and (max-width: 767px){
    #catalog .catalog-inner{
        grid-template-columns: repeat(5, 36%);
        gap: 10px;
        padding-bottom: 10px;
    }
    /* #catalog .catalog-inner::-webkit-scrollbar{display: none;} */
    #catalog .catalog-inner .item{
        padding: 15px;
    }
}
@media screen and (max-width: 480px){
    #catalog .catalog-inner{
        grid-template-columns: repeat(5, 55%);
    }
}
/*  ==========  END CATALOG STYLES  ==========  */





/*  ==========  SHOW MORE STYLES  ==========  */
.show-more-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.show-more-button{
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 32px;
    box-sizing: border-box;
    background-color: #fff;
    color: #131313;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    /* box-shadow: var(--box-shadow); */
}
/*  ==========  END SHOW MORE STYLES  ==========  */





/* ===== HOW TO ORDER STYLES ===== */
#howtoorder .howtoorder-inner{
    justify-content: center;
}
#howtoorder .group{
    display: flex;
    gap: 16px;
}
#howtoorder .num-block{
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-main);
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px;
    background-color: var(--color-main-alpha);
}
#howtoorder .text{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#howtoorder .title{
    font-weight: 600;
    font-size: 18px;
}
#howtoorder .desc{color: var(--color-text-secondary);}
/* ===== END HOW TO ORDER STYLES ===== */





/*  ==========  ABOUT STYLES  ==========  */
#about .about-inner{
    display: flex;
    gap: 35px;
    background-color: #fff;
    padding: 35px;
    box-sizing: border-box;
    border-radius: 12px;
}
#about .about-inner .text-wrap{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#about .about-inner .text-wrap ul{
    padding-left: 28px;
}
#about .about-inner .text-wrap p,
#about .about-inner .text-wrap ul{
    font-size: 14px;
}
#about .about-inner .text-wrap strong{
    font-weight: 600;
}
#about .about-inner .group{flex: 1;}
#about .about-inner .group .image img{
    border-radius: 12px;
}
@media screen and (max-width: 767px){
    #about .about-inner{flex-direction: column-reverse;}
    #about .about-inner .text-wrap{width: 100%;}
}
/*  ==========  END ABOUT STYLES  ==========  */





/*  ==========  ARTICLES STYLES  ==========  */
#articles .articles-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#articles .item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}
#articles .item .image{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
#articles .item .image img{
    height: 100%;
    object-fit: cover;
}
#articles .item .content{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 32px;
    padding-top: 12px;
    box-sizing: border-box;
}
#articles .item .content .title{
    display: block;
    width: 100%;
    height: 72px;
    font-weight: 600;
    font-size: 20px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
#articles .item .content .text{
    font-size: 15px;
    margin-top: 10px;
}
#articles .item .content .link{
    display: flex;
    align-items: center;
    margin-top: 25px;
    font-size: 15px;
    gap: 2px;
    transition: .3s;
}
#articles .item .content .link:hover{gap: 5px;}
#articles .item .content .link span{color: var(--color-main);}
#articles .item .content svg{
    width: 18px;
    height: 18px;
}
#articles .item .content svg path{
    stroke: var(--color-main);
}
@media screen and (max-width: 1024px){
    #articles .articles-inner{
        grid-template-columns: repeat(3, 40%);
        overflow-x: auto;
    }
}
@media screen and (max-width: 767px){
    #articles .articles-inner{
        grid-template-columns: repeat(3, 70%);
        overflow-x: auto;
    }
    #articles .item .content .title{font-size: 17px;}
}
/*  ==========  END ARTICLES STYLES  ==========  */





/*  ==========  REVIEWS STYLES  ==========  */
#reviews{
    overflow: hidden;
    position: relative;
    padding-bottom: 45px;
}
#reviews .item{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    background-color: #fff;
}
#reviews .item .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--color-bg-gray);
}
#reviews .item .header .user{
    max-width: 190px;
    display: flex;
    align-items: center;
    gap: 12px;
}
#reviews .item .header .user .image{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
#reviews .item .header .user .image img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
#reviews .item .header .title-wrap{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#reviews .item .header .title-wrap .source{
    display: flex;
    gap: 8px;
    align-items: center;
}
#reviews .item .header .title-wrap .name{
    font-size: 14px;
    font-weight: 600;
}
#reviews .item .header .rate i{color: gold;}
#reviews .item .text{
    height: 100px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
/*  ==========  END REVIEWS STYLES  ==========  */