@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.title {
        margin: 20px;
    color: #fff;
}


@media (max-width: 768px) {
    .product {
        width: 100%;
    }
}

.images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.images img {
    width: calc(50% - 4px);
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.name-id-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    font-size: 18px;
    font-weight: bold;
    max-width: 80%;
}

.article {
    font-size: 14px;
    color: #aaa;
    white-space: nowrap;
}

.desc-label {
    font-weight: 500;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.price-line .favorite {
    cursor: pointer;
    font-size: 20px;
}

.hearted {
    color: red;
}



.favorite {
    position: absolute;
    bottom: 8px;
    right: 8px;
    cursor: pointer;
      color: red;
}
