.product-name {
    color: #9C8D60;
    letter-spacing: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Fira Code';
    font-weight: 600;
    font-size: 35px;
}

.product-rating {
    font-family: 'Fira Code';
    font-weight: 600;
    font-size: 30px;
    color: #173651;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-image {
    order: 0;
}

.product-alcohol, .product-volume {
    font: 700 17px 'Roboto', cursive;
}

.product-description {
    color: #4B4B4B;
    font: 400 16px 'Roboto', cursive;
    line-height: 27px;
    max-width: 60%;
}

.product-description-mobile {
    display: none;
    color: #4B4B4B;
    font: 400 16px 'Roboto', cursive;
    line-height: 1.5;
}

.product-detail-page {
    margin: 50px auto;
}

@media (max-width: 1280px) {
    .product-name {
        width: 100%;
    }

    .product-rating {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .product-description {
        display: none;
    }

    .product-description-mobile {
        display: block;
        text-align: left;
    }

    .product-name {
        font-size: 30px;
    }

    .product-rating {
        font-size: 24px;
    }

    .product-detail {
        margin-top: 20px;
    }

    .product-alcohol, .product-volume {
        font: 700 15px 'Roboto', cursive;
        margin-top: 15px;
    }

    .product-detail-page {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .product-name {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 20px;
    }

    .product-rating {
        font-size: 19px;
    }

    .product-alcohol, .product-volume {
        font: 700 14px 'Roboto', cursive;
    }

    .product-description-mobile {
        font-size: 14px;
    }
}

