.product-page-border {
    border-top: 2px solid #1B1A17;
}
.bestsellers-container-product-page {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 2em;
    gap: 1em
}

.bestsellers-item-container-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    max-width: 1250px;
    gap: 1em;
    max-height: 1120px;
    margin-bottom: 2em;
}
.product-container-height {
    max-height: 550px;
}
.sidebar {
   width: 450px;
}


@media screen and (max-width:1250px) {
    .bestsellers-item-container-grid{
        grid-template-columns: repeat(2,1fr) ;
        max-height: none;
        max-width: none;
    }
}