
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: outfit;
}

body{
    background-color: #dadada;
}
a{
    text-decoration: none;
    color: inherit;
}
nav{
    display:flex;
    align-items: center;
    justify-content: space-between;
    background-color: #131921;
    padding: 10px 15px;
    color: white;
}
.nav-country{
    display: flex;
    align-items: end;
    margin-left: 10px;
    font-size: 13px;
    color: #c4c4c4;
}
.nav-country img{
    padding:0 ;
    position: absolute;
    right: 91%;
    top: 0.9cm;
}

.nav-country h1{
    color: white;
    font-size: 14px;
    margin: 0;
}

.nav-search{
    flex: 1;
    display: flex;
    align-items: center;
    background-color: white;
    color: gray;
    max-width: 1000px;
    border-radius: 4px;
    margin-left: 15px;
    height: 35px;
}
.nav-search-category{
    display: flex;
    align-items: center;
    padding: 6px 15px;
    gap: 5px;
    background: #e5e5e5;
    border-radius: 4px 0 0 4px;
}
.nav-search-input{
    border: none;
    outline: none;
    padding-left: 20px;
    width: 100%;
}
.nav-search-icon{
    max-width: 35px;
    padding: 8px;
    background: #ffd64f;
    border-radius: 0 4px 4px 0;
}
.nav-lang{
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 600;
    margin-left: 15px;

}
.nav-text{
    margin-left: 15px;

}
.nav-text p{
    font-size: 10px;

}
.nav-text h1{
    font-size: 14px;
    margin: 0;
}
.nav-cart{
    display: flex;
    align-items: center;
    margin: 0 15px;
}
.nav-bottom{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    background: #232f3e;
    color: white;
    font-size: 15px;
}
.nav-bottom div{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.header-slider ul{
    display: flex;
    overflow-y: hidden;
}
.header-img{
    max-width: 100%;
    mask-image: linear-gradient(to bottom ,#000000 50% , transparent 100%);
}
.header-slider a{
    position: absolute;
    top: 20%;
    z-index: 1;
    padding: 5vh 1vw;
    color: #0000007b;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    cursor:pointer;
}
.header-slider .slider-images {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.5s ease; 
}
.header-slider .slider-images li {
    flex: 0 0 100%;
    transition: opacity 0.5s ease; 
}

.control_next{
    right: 0;
}
.box-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin: 20px 30px;
}

.box-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    flex-basis: 24%;
    box-sizing: border-box;
    z-index: 1;
}

.box-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3; /* Maintain a consistent aspect ratio for images */
}
.box-col a{
    font-size: 30px;
    color: #009999;
    font-size: 15px;
    font-weight: 500;
}
.header-box{
    margin-top: -20vw;
}
.product-slider{
    background: white;
    margin: 0 30px;
    padding: 20px;
    margin-bottom: 15px;
}
.product-slider .products{
    display: flex;
    overflow: auto;
    gap: 20px;
    margin-top: 10px;
}
.product-slider .products img{
    max-width: 200px;
    max-height: 200;
}
.product-slider .products::-webkit-scrollbar {
    height: 8px;
}

.product-slider .products::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-slider .products::-webkit-scrollbar-thumb {
    background-color: #919191ba; 
    border-radius: 10px; 
    height: 8px; 
}

.product-slider .products::-webkit-scrollbar-thumb:hover {
    background-color: #696868;
}
footer{
    display: flex;
    align-items: center;
    color: white;
    background-color: #131921;
    padding: 20px 40px;
}
footer p{
    font-size: 13px;
    margin-left: 20px;
}
footer img{
    margin-left: 40%;
}