@media only screen and (min-width: 992px) {
    .product-view {
        max-width: 100%;
    }
}

body {
    background: #fff !important;
}

.product-view {
    background-color: #fff;
    color: #262626;
    padding: 50px;
    margin-bottom: 100px;
    margin-top: 80px;
}

.product-view > .row {
    display: flex;
    align-items: center;
}

.column-immagini-prodotto {
    flex-direction: column;
    gap: 10px;
}

.immagine-prodotto-preview{
    width: 100px;
    height: 100px;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

@media only screen and (max-width: 991px) {
    .header-product-view-images {
        flex-direction: column;
    }
    .column-immagini-prodotto {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 20px;
    }
    .immagine-prodotto-preview {
        width: 100%;
        padding-bottom: 20%;
    }
}

.product-view .immagine-profumo {
    width: 100%;
    padding-bottom: 100%;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat;
}

.product-view h1 {
    font-size: 38px;
}

.product-view h3 {
    color: #858585;
    font-size: 19px;
}

.product-view .ml {
    padding: 10px;
    margin: 20px 10px;
    cursor: pointer;
}
.product-view .ml.selected {
    border: 1px solid #000;
}

.product-view a:hover {
    text-decoration: none;
}

.product-view .prezzo {
    font-size: 35px;
    text-align: right;
    display: block;
    margin: 20px 0;
    font-weight: 600;
}
.product-view .prezzo-non-scontato {
    margin-bottom: 20px;
    margin-right: 10px;
    text-decoration: line-through;
}
.product-view .percentuale-sconto {
    margin-left: 5px;
    margin-top: 20px;
}
.product-view .sold-out-alert {
    border: 3px solid red;
    padding: 3px 5px;
    color: red;
    font-weight: 600;
    font-size: .8em;
    border-radius: 3px;
    width: max-content;
    text-align: center;
    margin-right: 10px;
    animation: pulse 2s infinite;
}
@media only screen and (max-width: 500px) {
    .product-view .sold-out-alert {
        font-size: .7em;
        font-weight: 500;
        border-width: 2px;
    }
}
@keyframes pulse {
    0% {
        background-color: transparent;
    }
    50% {
        background-color: #ffcece;
    }
    100% {
        background-color: transparent;
    }
}

.product-view .aggiungi, .product-view .rimuovi {
    background-color: #ededed;
    font-size: 18px;
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    padding: 5px;
    cursor: pointer;
}
.product-view input[type=text] {
    border: 1px solid #ededed;
    margin: 0 5px;
    text-align: center;
    width: 80px;
    height: 40px;
}
.product-view svg {
    fill: #000;
}
.product-view .add-to-cart-button {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    background: #ce3ad3;
    color: #fff;
}
.product-view .add-to-cart-button:hover {
    opacity: .8;
}
@media only screen and (max-width: 1480px) {
    .product-view .add-to-cart-button {
        padding: 15px;
        font-size: 17px;
        margin-left: 10px;
    }
}

.product-view .pagamenti-sicuri {
    border: 2px solid #7d7d7d;
    color: #7d7d7d;
    padding: 10px;
    margin-top: 30px;
    min-width: max-content;
}
.product-view .pagamenti-sicuri svg {
    fill: #7d7d7d;
}

@media only screen and (max-width: 500px) {
    .product-view {
        padding: 30px;
    }
    .product-view h1 {
        font-size: 7vw;
    }
    .product-view h3 {
        font-size: 4vw;
    }
    .product-view .prezzo {
        font-size: 8vw;
    }
    .product-view input[type=text] {
        width: 50px;
        height: 35px;
        font-size: 4vw;
    }
    .product-view .add-to-cart-button {
        padding: 10px;
        font-size: 3.5vw;
    }
    .product-view .aggiungi, .product-view .rimuovi {
        width: 25px;
        height: 35px;
        font-size: 3.5vw;
    }
}

@media only screen and (max-width: 575px) {
    .ml-container {
        justify-content: space-between;
    }
}

hr {
    border-top: 1px solid rgba(0, 0, 0, .3) !important;
}

footer {
    background-color: rgba(176, 0, 129, 1) !important;
}
footer > * {
    color: #fff;
}