/* Stile per il contenuto del pop-up size guide */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Sfondo semi-trasparente */
}
#sizeGuide {
    line-height: 1.36;
    letter-spacing: .09px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}
.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 10px;
    width: 90%;
    max-width: 600px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 13px 11px rgb(111 54 25 / 50%);
}

/* Stile per l'immagine della guida alle taglie */
.size-guide-image {
    width: 100%;
    height: auto;
}

/* Stile per il bottone di chiusura */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: black;
    font-size: 54px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #6F3619;
}