.section_marketplace{
    width: 100%;
    min-height: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.container_marketplace{
    width: 1280px;
    min-height: 100%;
    margin: 0 auto;
}

.product-grid{ 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    place-items: center;
}

.product{   
    width: 300px;
    height: 350px;
    background-color: #282828;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.product-link_marketplace{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;

}

.product-image_marketplace{
    width: 100%;
    height: 150px;
    object-fit: cover;
    }


.product-name_marketplace{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    color: #fff;
}

.product-tags_marketplace{
    background-color: rgb(23, 22, 21);
    color: #fff;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #7d7d7d;
}

.container_price_note{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.container_price_note p{
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-note_marketplace img{
    margin-bottom: 2px;

}