.bestsellers-container {
    margin-right: 2em;
    margin-left: 2em;
    margin-bottom: 2em;
    margin-top: 5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bestsellers-text {
    font-size: 40px;
    font-weight: 700;
}

.bestsellers-item-container {
    margin-top: 3em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.bestsellers-item {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    background-color: black;
    color: white;
}
.item-img {
    position: relative;
    display: flex;
}
.item-img img{
    max-width: 100%;
    object-fit: cover;
}

.item-text {
    padding: 0 1em;
}
.product-name {
    font-size: 32px;
}

.price-addButton {
    padding: 0 1em 1em 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.add-button {
    padding: 0.3em 0.8em;
    font-size: 24px;
    border: none;
    border-radius: 99999px;
    background-color: #FF8303;
    cursor: pointer;
    color: black;
}

.item-img::after {
    content: url(../icons/rating.svg);
    position: absolute;
    bottom: 5px;
    right: 5px;

}