:root{
    --container-padding: 50px;
    --container-md-padding: 10px;
    --white: #ffffff;
    --yellow-500: #ffc107;
    --yellow-600: #cc9a06;
    --red-500: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --black: #000000;
}
*{
    padding: 0;
    margin: 0;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
input{
    font-size: inherit;
    font-family: inherit;
    outline: none;
}
button, input[type="button"], input[type="submit"]{
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}
.fa-light{
    font-weight: 400;
}
.fa-regular{
    font-weight: 600;
}
body{
    background-color: var(--gray-100);
}
/* Product Suggestions */
.product-suggestions{
    background-color: #00b4b0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px var(--container-padding);
    height: 300px;
    margin: 25px 0;
}
.product-suggestions .header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 15%;
}
.product-suggestions .header .image{
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
}
.product-suggestions .header .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-suggestions .header .link{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-suggestions .header .link a{
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid var(--white);
    margin-top: 10px;
}
.product-suggestions .product-carousel{
    width: 85%;
}
.product-suggestions .product-carousel .owl-carousel .item{
    background-color: var(--white);
    margin-right: 10px;
    border-radius: 5px;
    height: 280px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: auto;
    position: relative;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.product-suggestions .product-carousel .owl-carousel .item .image{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 150px;
}
.product-suggestions .product-carousel .item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-suggestions .product-carousel .item .title{
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
    color: var(--gray-800);
    margin: 0 auto;
}
.product-suggestions .product-carousel .item .price{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    color: var(--gray-700);
}
.product-suggestions .product-carousel .item .price .new{
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
}
.product-suggestions .product-carousel .item .price .old{
    color: var(--gray-500);
    text-decoration: line-through;
    white-space: nowrap;
    overflow: hidden;
}
.product-suggestions .product-carousel .item .link{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-suggestions .product-carousel .item .link a{
    color: var(--gray-600);
    border: 1px solid var(--gray-600);
    padding: 5px 10px;
    border-radius: 4px;
}
.product-suggestions .product-carousel .item .link a:hover{
    color: var(--yellow-600);
    border-color: var(--yellow-600);
}
.product-suggestions .product-carousel .owl-carousel .item .off{
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--red-500);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Banners */
.banners-4-column, .banners-2-column{
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 var(--container-padding);
    margin-bottom: 10px;
}
.banners-4-column{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.banners-2-column{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.banners-4-column .banner, .banners-2-column .banner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    padding: 10px;
    border-radius: 10px;
}
.banners-4-column .banner a, .banners-2-column .banner a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.banners-4-column .banner a img, .banners-2-column .banner a img{
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Product Categories */
.product-categories{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px var(--container-padding);
}
.product-categories .title{
    font-size: 22px;
    font-weight: bold;
}
.product-categories .list{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
}
.product-categories .list .category{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 200px;
    cursor: pointer;
    margin: 10px 5px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    margin-top: 20px;
    transition: border-color 0.3s;
}
.product-categories .list .category:hover{
    border-color: var(--yellow-600);
}
.product-categories .list .category .image{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}
.product-categories .list .category .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-categories .list .category .title{
    margin-top: 10px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.3s;
}
.product-categories .list .category:hover .title{
    color: var(--yellow-600);
}
/* Brands */
.brands{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 var(--container-padding);
    margin-top: 30px;
    margin-bottom: 40px;
}
.brands .title{
    font-size: 22px;
    font-weight: bold;
}
.brands .owl-carousel{
    margin-top: 30px;
}
.brands .owl-carousel .item a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 100%;
}
.brands .owl-carousel .item a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-card{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid var(--gray-500);
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 5px;
    padding: 10px;
    height: 250px;
}
.product-card .image{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
}
.product-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-card .title{
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 80%;
}
.product-card .price{
    font-size: 14px;
}
.product-card .view a{
    margin-top: 15px;
    border: 1px solid var(--gray-500);
    color: var(--gray-600);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
}
.product-card:hover .view a{
    color: var(--yellow-600);
    border-color: var(--yellow-600);
}
/* Header */
header{
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}
header .header{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 30px var(--container-padding);
}
header .header #toggler-mobile-menu, header .header #toggler-mobile-search{
    padding: 5px 7px;
    color: var(--gray-600);
    font-size: 25px;
    border-radius: 3px;
    transition: color 0.3s;
}
header .header #toggler-mobile-menu{
    border: 1px solid var(--gray-700);
    transition: border-color 0.3s;
}
header .header #toggler-mobile-menu:hover, header .header #toggler-mobile-search:hover{
    color: var(--yellow-600);
    border-color: var(--yellow-600);
}
header .header #toggler-mobile-menu:hover{
    border-color: var(--yellow-600);
}
header .header .logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    min-width: 20%;
    font-size: 36px;
    font-weight: bold;
    color: var(--yellow-500);
    white-space: nowrap;
}
header .header .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
header .header .search{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 20px;
    margin-left: auto;
}
header .header .search{
    font-size: 15px;
}
header .header .search form{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
}
header .header .search form input{
    border: 1px solid var(--gray-300);
    background-color: var(--gray-200);
    padding: 10px 10px 10px 50px;
    border-radius: 10px;
    width: 100%;
    transition: background-color 0.3s;
}
header .header .search form input:focus{
    background-color: var(--white);
}
header .header .search form button[type="submit"]{
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    font-size: 20px;
    color: var(--gray-600);
}
header .header .shop ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .header .shop ul li{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
header .header .shop ul li a{
    color: var(--gray-600);
    font-size: 22px;
    padding-left: 10px;
    transition: color 0.3s;
}
header .header .shop ul li a:hover{
    color: var(--yellow-500);
}
header .header .shop ul li:not(:last-child) a{
    padding-left: 10px;
}
header .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-300);
    padding: 0 var(--container-padding);
}
header .nav nav > ul{
    display: flex;
    flex-wrap: nowrap;
}
header .nav nav ul li{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
}
header .nav nav ul li a{
    color: var(--black);
    padding: 15px 0 15px 15px;
    position: relative;
    transition: color 0.3s;
}
header .nav nav > ul > li:not(:first-child) a{
    margin-right: 10px;
}
header .nav nav ul li:hover > a{
    color: var(--yellow-600);
}
header .nav nav > ul > li:not(.active) a::before{
    position: absolute;
    content: '';
    top: 55px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--yellow-600);
    transition: width 0.3s;
}
header .nav nav > ul > li:not(.active):hover > a::before{
    width: 100%;
}
header .nav nav > ul > li.active > a, header .nav nav > ul > li:has(ul li.active) > a{
    color: var(--yellow-600);
    border-bottom: 1px solid var(--yellow-600);
}
header .nav nav ul li:has(ul){
    position: relative;
}
header .nav nav ul li:has(ul) ul{
    position: absolute;
    top: 80px;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.2s, opacity 0.3s, top 0.4s;
    z-index: 2;
}
header .nav nav ul li:has(ul):hover ul{
    top: 55px;
    opacity: 1;
    visibility: visible;
}
header .nav nav ul li:has(ul) ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}
header .nav nav ul li:has(ul) ul li a{
    white-space: nowrap;
    padding: 10px;
}
header .nav nav ul li:has(ul) ul li.active a{
    color: var(--yellow-600);
}
header .nav .banner{
    font-size: 16px;
}
main .top-carousel{
    margin-top: 20px;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}
main .top-carousel .main-carousel{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}
main .top-carousel .main-carousel{
    padding: 0 20px;
}
main .top-carousel .main-carousel, .owl-carousel{
    position: relative;
}
main .top-carousel .main-carousel .owl-carousel .item{
    border-radius: 20px;
}
main .top-carousel .main-carousel .owl-carousel .item a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: 20px;
}
main .top-carousel .main-carousel .owl-carousel .item a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-prev, 
main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 150px;
    font-size: 52px;
    color: var(--gray-100);
}
main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-prev{
    right: 15px;
}
main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-next{
    left: 15px;
}
main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-prev:hover, 
main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-next:hover{
    background-color: transparent;
}
main .top-carousel .banners{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 400px;
    gap: 20px;
    width: 25%;
}
main .top-carousel .banners .banner{
    width: 100%;
}
main .top-carousel .banners .banner a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 190px;
    border-radius: 20px;
}
main .top-carousel .banners .banner a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
main .products{
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 var(--container-padding);
}
main .products .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--gray-300);
    padding: 10px 0;
}
main .products .header .title{
    font-size: 20px;
    font-weight: bold;
}
main .products .header .more{
    display: flex;
    justify-content: center;
    align-items: center;
    color:var(--gray-700);
    transition: color 0.3s;
    font-size: 16px;
}
main .products .header .more:hover{
    color: var(--yellow-600);
}
main .products .list{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
/* Footer */
footer{
    background-color: var(--gray-200);
    padding: 40px var(--container-padding);
}
footer .footer{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
footer .footer .widget-footer{
    width: 25%;
    margin-bottom: 30px;
}
footer .footer .widget-footer .title{
    font-size: 19px;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 20px;
}
footer .footer .widget-footer ul li a{
    color: var(--gray-700);
    font-size: 15px;
}
footer .footer .widget-footer .socials .title{
    font-size: 19px;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 15px;
    text-align: center;
}
footer .footer .widget-footer .socials ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
footer .footer .widget-footer .socials ul li{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .footer .widget-footer .socials ul li a{
    margin: 5px;
    padding: 5px 10px 4px 10px;
    border-radius: 50%;
    transition: transform 0.3s;
}
footer .footer .widget-footer .socials ul li a:hover{
    transform: scale(1.1);
}
footer .footer .widget-footer .socials ul li a:has(.fa-whatsapp){
    background-color: #25d366;
    color: var(--white);
}
footer .footer .widget-footer .socials ul li a:has(.fa-telegram){
    background-color: #2ca5e0;
    color: var(--white);
}
footer .footer .widget-footer .socials ul li a:has(.fa-instagram){
    background-color: var(--gray-700);
    color: var(--white);
}
footer .footer .widget-footer .socials ul li a:has(.fa-twitter){
    background-color: #1da1f2;
    color: var(--white);
}
footer .footer .widget-footer .socials ul li a:has(.fa-linkedin){
    background-color: #0077b5;
    color: var(--white);
}
footer .footer form{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80%;
    margin: 15px auto 0 auto;
}
footer .footer form input[type="text"]{
    background-color: var(--gray-100);
    font-size: 17px;
    border: 1px solid var(--gray-200);
    padding:  10px 50px 10px 10px;
    width: 100%;
}
footer .footer form button[type="submit"]{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 17px;
    color: var(--gray-600);
}
/* Mobile Bottom Menu */
#mobile-bottom-menu{
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 2;
}
#mobile-bottom-menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-md-padding);
    margin: 10px 0;
}
#mobile-bottom-menu ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
#mobile-bottom-menu ul li a{
    width: 100%;
}
#mobile-bottom-menu ul li:not(:last-child){
    border-left: 1px dashed var(--gray-200);
}
#mobile-bottom-menu ul li a{
    color: var(--gray-700);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 22px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.3s;
}
#mobile-bottom-menu ul li a:hover{
    background-color: var(--gray-100);
    color: var(--yellow-600);
}
/* Mobile Menu */
#mobile-menu{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    top: 0;
    left: 0;
    right: -100px;
    bottom: 0;
    margin: auto;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    transition: right 0.2s, opacity 0.3s, visibility 0.3s;
}
#mobile-menu.show{
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
#mobile-menu .container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin: auto;
    background-color: var(--white);
    width: 100%;
    height: 100%;
}
#mobile-menu .container .close{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray-700);
    color: var(--gray-600);
    font-size: 22px;
    padding: 5px 7px;
    border-radius: 3px;
    margin: 15px auto 20px 15px;
}
#mobile-menu .container .close i{
    transition: transform 0.3s;
}
#mobile-menu .container .close:hover i{
    transform: rotate(90deg);
}
#mobile-menu .container nav{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 0 auto;
    width: 100%;
}
#mobile-menu .container nav ul{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 15px;
    width: 100%;
}
#mobile-menu .container nav ul li{
    display: flex;
    flex-direction: column;
    width: 100%;
}
#mobile-menu .container nav ul li > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
#mobile-menu .container nav > ul li a:not(.toggle-sub-menu){
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    color: var(--gray-700);
    font-size: 15px;
    padding: 10px 0;
}
#mobile-menu .container nav ul li.active a, #mobile-menu .container nav ul li:has(ul li.active) > a, 
#mobile-menu .container nav ul li:has(ul li.active) > div a, #mobile-menu .container nav ul li a:hover{
    color: var(--yellow-600);
}
#mobile-menu .container nav ul li a.toggle-sub-menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 50px;
    color: var(--gray-700);
}
#mobile-menu .container nav ul li a.toggle-sub-menu::before{
    position: absolute;
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s;
}
#mobile-menu .container nav ul li.show a.toggle-sub-menu::before{
    transform: rotate(180deg);
}
#mobile-menu .container nav ul li a:hover + a.toggle-sub-menu::before{
    color: var(--yellow-600);
}
#mobile-menu .container nav ul li ul li a{
    border-top: none !important;
}
#mobile-menu .container nav > ul > li:first-child a{
    border-top: 1px solid var(--gray-300);
}
#mobile-menu .container nav ul li a{
    border-bottom: 1px solid var(--gray-300);
}
#mobile-menu .container nav ul li:has(ul){
    position: relative;
}
#mobile-menu .container nav ul li:has(ul) ul{
    margin: 0;
    width: auto;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, height 0.2s;
}
#mobile-menu .container nav ul li.show ul{
    height: auto;
    opacity: 1;
    visibility: visible;
}
#mobile-menu .container nav ul li:has(ul) ul li{
    padding-right: 30px;
    width: calc(100% - 30px);
}
#mobile-menu .container nav ul li:has(ul) ul li a{
    position: relative;
}
#mobile-menu .container nav ul li:has(ul) ul li a::before{
    position: absolute;
    top: 22px;
    right: -30px;
    content: '';
    background-color: var(--gray-500);
    height: 4px;
    width: 4px;
    border-radius: 50px;
    transition: background-color 0.2s, width 0.3s;
}
#mobile-menu .container nav ul li:has(ul) ul li a:hover::before{
    background-color: var(--yellow-600);
    width: 15px
}
#mobile-menu .container nav ul li:has(ul) ul li.active a::before{
    background-color: var(--yellow-600);
}
#move-top{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.2s, opacity 0.3s;
}
#move-top.show{
    opacity: 1;
    visibility: visible;
}
#move-top a{
    background-color: var(--yellow-600);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 15px;
}
@media (min-width: 992px){
    #mobile-bottom-menu, header .header #toggler-mobile-menu, header .header #toggler-mobile-search, 
    #mobile-menu{
        display: none;
    }
}
@media (max-width: 991.98px){
    body{
        padding-bottom: 75px;
    }
    .product-suggestions .header{
        width: 20%;
    }
    .product-suggestions .product-carousel{
        width: 80%;
    }
    .banners-4-column{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .banners-2-column{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .banners-2-column .banner{
        max-height: 250px;
        height: auto;
    }
    .banners-2-column .banner a{
        width: auto;
    }
    .banners-2-column .banner a img{
        object-fit: contain;
    } 
    .product-categories .list{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    header .header{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    header .header #toggler-mobile-menu{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .header .logo{
        margin-right: auto;
        margin-left: auto;
    }
    header .header .search, header .header .shop, header .nav{
        display: none;
    }    
    main .top-carousel{
        flex-direction: column;
        margin-bottom: 30px;
    }
    main .top-carousel .main-carousel, main .top-carousel .banners{
        width: 100%;
    }
    main .top-carousel .banners{
        height: auto;
        gap: 10px;
    }
    main .top-carousel .banners .banner a{
        height: 400px;
    }
    main .products .list{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    footer .footer .widget-footer{
        width: 50%;
        text-align: center;
    }
    #move-top{
        bottom: 90px;
    }
}
@media (max-width: 767.98px){
    .product-suggestions .header{
        width: 30%;
    }
    .product-suggestions .product-carousel{
        width: 70%;
    }
    .product-categories .list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    main .products .list{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    footer .footer .widget-footer{
        width: 100%;
    }
}
@media (max-width: 576.98px){
    .product-suggestions .header{
        width: 40%;
    }
    .product-suggestions .product-carousel{
        width: 60%;
    }
    .banners-4-column{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .banners-4-column .banner{
        max-height: 250px;
        height: auto;
    }
    .banners-4-column .banner a{
        width: auto;
    }
    .banners-4-column .banner a img{
        object-fit: cover;
    } 
    .product-categories .list{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    header .header, .product-suggestions, .banners-4-column, .banners-2-column, .brands, main .products{
        padding-left: var(--container-md-padding);
        padding-right: var(--container-md-padding);
    }
    main .top-carousel{
        padding-left: 20px;
        padding-right: 20px;
    }
    main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-prev, 
    main .top-carousel .main-carousel .owl-carousel .owl-nav button.owl-next{
        top: 0;
        bottom: 0;
        margin-bottom: 20px;
    }
    main .top-carousel .main-carousel .owl-carousel .item a{
        height: auto;
        max-height: 300px;
    }
    main .top-carousel .banners .banner a{
        height: auto;
    }
    main .products .list{
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}