*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', sans-serif;
    font-size: 18px;
}

html{
  height: 200vh;
  background-image: linear-gradient(  
                to right,                
             #FF0BAC, #FDBCFD
             
  );
  background-attachment: fixed;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.header{
    height: 80px;
    width: 70%;
    background-color: transparent;
    border-radius: 3px;
    margin: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    padding-bottom: 30px;
}

h2{
    display: flex;
    font-size: 15px;
    color: #fff;
    text-align: center;
    padding-bottom: 10px;
}

.logo img{
   width: 12%;
   height: auto;
   position: absolute;
   left: 150px;
   top: 0px;
}

.cart{
    display: flex;
    position: absolute;
    right: 200px;
    top: 60px;
    background-color: transparent;
    justify-content: space-between;
    padding: 7px 10px;
    width: 60px;
}

.cart h2{
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px; 
    background-color: #fff;
    color: white;
}

.fa-solid{
    color: #fff;
}

.container{
    display: flex;
    width: 70%;

}
#root{
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.sidebar{
    width: 20%;
    border-radius: 5px;
    background-color:  #975C8D;
    margin-left: 150px;
    padding: 5px;
    position: absolute;
    right: 20px;
}
.head{
    background-color: purple;
    border-radius: 3px;
    height: 20px;
    padding: 5px;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
}
.foot{
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
    padding: 10px 0px;
    border-top: 1px solid #333;
}

.box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid black;
    border-radius: 5px;
    padding: 15px;
}
.img-box{
    width: 100%;
    height: 180px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.images{
    max-width: 90%;
    max-height: 90%;
    object-fit: cover;
    object-position: center;
    align-item: center;   
}

#hover-zoom {
  transition: transform 0.3s ease; /* Add a smooth transition */
}

#hover-zoom:hover {
  transform: scale(1.2); /* Scale the image by 1.2 times on hover */
}

.bottom{
    margin-top: 10px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: right;
    height: 80px;
}

button{
    width: 100%;
    position: relative;
    border: none;
    border-radius: 5px;
    background-color: #863A6F;
    padding: 7px 25px;
    cursor: pointer;
    color: white;
}


button:hover{
    background-color: #E5C3A6;
}

.cart-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: ;
    border-bottom: 1px solid #aaa;
    border-radius: 3px;
    margin: 10px 10px;
}

.row-img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 1px solid goldenrod;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rowimg{
    max-width: 43px;
    max-height: 43px;
    border-radius: 50%;
}

.fa-trash:hover{
    cursor: pointer;
    color: #333;
}

@media screen and (max-width: 480px) {
    background: white;
}