.product-image{
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .product-image{
        height: 300px;
    }
}
.product-container{
    position: relative;
    margin-bottom: 40px;
}

.reset-btn{
    color: var(--base-color);
    /* border-bottom: 1px solid var(--base-color); */
}

.product-button{
    font-size: 12px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .product-button{
        font-size: 10px;
    }
}

.product-image{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#main-image{
    width: 100%;
    height: 60vh;
}

.thumbnail-image{
    width: 100px;
    height: 100px;
}

.product-details-container{
    min-height: 60vh;
}
@media (max-width: 768px) {
    .product-details-container{
        min-height: auto;
    }
    .thumbnail-image{
        width: 65px;
        height: 65px;
    }
}

.shop-title{
    text-transform: uppercase;
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 25px;
    padding: 0;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
}

.cart-item-title{
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

#product-price{
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
    margin-left: 10px;
}

#discounted-price{
    font-size: 26px;
    line-height: 28px;
    color: var(--base-color);
    letter-spacing: 0;
}

.product-name-container{
    min-height: 60px;
}

@media (max-width: 768px) {
    #product-price{
        font-size: 20px;
        line-height: 24px;
    }
    #discounted-price{
        font-size: 24px;
        line-height: 26px;
    }
}

.btn-quantity, .btn-remove{
    border: none !important;
    background-color: transparent !important;
    font-size: 24px;
    padding: 0 !important;
}

.btn-quantity:hover, .btn-quantity:focus, .btn-remove:hover, .btn-remove:focus{
    color: var(--base-color) !important;
}
#quantity{
    font-size: 24px;
    text-align: center;
    margin: 0;
    padding: 0;
    border: none !important;
    -moz-appearance: textfield; /* Firefox */
}

/* Nasconde le frecce spin buttons per Chrome, Safari, Edge, Opera */
#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.row-cart-height{
    min-height: 15vh;
}
@media (max-width: 768px) {
    .row-cart-height{
        min-height: auto;
    }
}
.cart-image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .cart-image{
        height: 300px;
    }
}
.btn-quantity.disabled{
    opacity: 0.5;
    color: #757575 ;
    cursor: not-allowed;
}

.btn-quantity.disabled:hover{
    color: #757575 !important;
}
div#addToCart {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 15px 25px;
    color: green;
    background: #eaffdb;
    border: 1px solid green;
    display: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}
#shipping-cost-text{
    margin-top: 10px;
    line-height: 1.2;
}
.product-name-shop{
    display: flex;
    align-items: center;
    min-height: 52px;
    justify-content: center;
    text-align: center;
}
#codice-medico-box{
    display: none;
}
#close-codice-medico{
    top: 5px;
    right: 10px;
    cursor: pointer;
}
#close-login-alert{
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    cursor: pointer;
}

.product-name-text{
    font-size: 20px;
    line-height:26px;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    word-break: keep-all;
}
@media (max-width: 768px) {
    .product-name-text{
        font-size: 12px;
        line-height:16px;
    }
}

