@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
body{
    margin:0;
    background: rgb(51, 49, 51);
}
html{
    max-width: 100%;
    height: 100dvh;
}

.splash-screen{
    display: flex;
    flex-direction: row;
}
.products{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color:white;
    font-family: 2rem;
    flex: 92.5%;
}
.filters{
    display: flex;
    flex:7.5%;
    flex-direction: column;
}
.submit{
    width: 120px;
    height: 32px;
}
.border{
    border: 1px solid red;
}
.obj-card{
    display: grid;
    grid-template-columns: auto auto auto;
    
    justify-content:space-evenly
}
.card{
    display: flex;
    flex-direction: column;
    top: 0px;
    margin: 20px;
    position: relative;
    /* background-color: #242124; */
    background-color: #2c2b2b;
    width: 17rem;
    height: 23rem;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s ease-in-out;
}
.img{
    margin:auto auto;
    width: 13rem;
    height: 13rem;
    object-fit:contain;
    transition: 0.46s ease-in-out;
    scale: 1;
    /* border:1px solid red */

}
.filters-btn{
    display: none;
}

.description{
    font-size:1.4rem;
    font-family:arial;
    color:white;
}
.buy-btn{
    color:white;
    background: #04AA6D;
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 10px;
    height: 3rem;
    width: 5rem;
    border: none;
    border-radius: 5px;
    font-size:1rem;
    transition: 0.6s ease-in-out;
    
}
.brand{
    font-size:1.2rem;
    padding: 0;
    margin-bottom: 5px;
}
.gray{
    color:rgb(212, 212, 212)
}
.buy-btn:hover{
    background-color: #025f3d;
    cursor: pointer;
}
.card:hover{
    position: relative;
    cursor: pointer;
    top: 10px;
}
.card:hover .img{
    
    
}
.product-photos img {
    width:75px;
    opacity: 0;
    display: none;
    transition: 0.6s;
}
.card:hover .product-photos img{
    opacity: 1;
    display: block;

}
.card:hover .currency{
    display: none;
}
.basket{
    float: right;
}
.table{
    border-collapse: collapse;
    width: 95%;
    
}
.basket-products{
    
    overflow-x: auto;
}

@media (max-width:1260px) {
    .basket{
        clear: both;
        margin-right: 10px;
    }
}
@media (max-width:885px) {
    .obj-card{
        grid-template-columns: auto auto ;
    }
    
}
@media (max-width:800px){
    .navigation-link{
        
        font-size: 1.2rem !important;
        /* background-color: rebeccapurple; */

    }

}
@media (max-width:712px) {
   .navigation-bar{
    gap:50px;
   }
   .navigation-link{
    display: none;
   }
}
@media (max-width:660px) {
    .link{
        font-size: 0.9rem !important;
    }
    .footer-links{
        gap:10px;
    }
    .input{
        width: 90vw !important;
    }
}
@media (max-width:600px) {
   .obj-card{
    grid-template-columns: auto;
   }
   .navigation-bar{
    gap:20px;
    
   }
   .navigation-link{
    font: 1.2rem arial;
   }
   .filters {
    display: none;
    transition: 0.6s;
    position: relative;
    top:1dvh;
    z-index: 10;
    background-color: #2c2b2b;
    
   }
   
   .filters-btn{
    display: block;
    width: 70dvw !important;
    margin: 0 auto !important;
   }
   .splash-screen{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
   }
}
@media (max-width:410px) {
    .navigation-link{
        font: 1.1rem arial;
       }
    .navigation-bar{
        gap:10px;
    }

}
@media (max-width:380px) {
   
}

