/* ===========================
   STILE PULSANTE DI CONTATTO - BASE
=========================== */
.contact-button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.contact-button {
    background-color: #E30613;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 400;
    text-align: center;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #b81f17;
}

.contact-icons {
    display: none;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 2px;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    flex-wrap: wrap;
    padding: 10px 0;
    background-color: #fff;
}

.contact-icons.show {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-icons a img {
    width: 44px;
    height: 44px;
    transition: transform 0.2s ease;
}

.contact-icons a img:hover {
    transform: scale(1.1);
}


/* ===========================
   CONTATTO - MOBILE
=========================== */
@media screen and (max-width: 768px) {
    .contact-button-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-button {
        font-size: 14px;
        padding: 0px 16px !important;
    }

    .contact-icons a img {
        width: 40px;
        height: 40px;
    }
}


/* ===========================
   CONTATTO - TABLET
=========================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .contact-button {
        font-size: 15.5px;
        padding: 13px 20px;
    }

    .contact-icons a img {
        width: 42px;
        height: 42px;
    }
}


/* ===========================
   CONTATTO - LARGE SCREEN
=========================== */
@media screen and (min-width: 1280px) {
    .contact-button-wrapper {
        max-width: 220px;
    }



    .contact-icons a img {
        width: 48px;
        height: 48px;
    }
}
