.container {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.product-item {
    text-align: center;
    padding: 40px 40px 20px 40px;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 0;
    position: relative;
}

.product-item .number {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    text-align: center;
    color: black;
    font-size: 45px;
    font-weight: 800;
}

.product-item img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin: auto;
}

.product-item .container-texts {
    display: flex;
    flex-direction: column;
}

.product-item .price {
    color: grey;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: normal;
}

.product-item .title {
    font-size: 20px;
    color: black;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: normal;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.product-item .container-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-item .button {
    display: inline-block;
    padding: 15px 10px 15px 10px;
    background-color: black;
    border: 1px solid black;

    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
}

.product-item .small-button {
    color: grey;
    font-size: 14px;
    font-weight: 500;
}

.product-item .button:hover {
    background-color: #FFFFFF;
    color: black;
}

.podium-left {
    flex: 1;
    order: 1;
}

.podium-center {
    flex: 1.2;
    order: 2;
    
    img {
       width: 300px;
       height: 300px;
    }
}

.podium-right {
    flex: 1;
    order: 3;
}

.container-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.star {
    color: gold;
    font-size: 14px;
}


@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    
    .product-item {
        width: 100%;
    }
    
    .podium-center {
        order: 1;
        flex: 1;

        img {
            width: 250px;
            height: 250px;
        }
    }
    
    .podium-left {
        order: 2;
    }
    
    .podium-right {
        order: 3;
    }
}