@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "Open Sans", sans-serif;
}

.product-item {
    border: 1px solid rgb(219, 219, 219);
}

.product-img {
    position: relative;
    overflow: hidden;
}

.btns {
    position: absolute;
    left: 0;
    bottom: -100%;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}

.btns button {
    border: none;
    background-color: rgb(39, 39, 39);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btns button:hover {
    color: #fcb941;
}

.product-img:hover .btns {
    bottom: 0;
}

.heart-icon {
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 18px;
}

.product-type {
    font-size: 13px;
    opacity: 0.8;
}

.product-name {
    transition: all 0.3s ease-in-out;
}

.product-name:hover {
    color: #fcb941 !important;
}

.product-price {
    color: #fcb941;
}

.rating {
    font-size: 13px;
}

.product-item {
    justify-content: center;
    display: flex;
    width: 300px;
    border-radius: 10px;
    height: 250px;
    background-color: black;
    color: white;
}

.product-info {
    /* display: flex; */
    width: 300px;
    /* flex-direction: column; */
    /* align-items: flex-start;
    justify-content: center; */
}