/**
 * ═══════════════════════════════════════════════════════════════
 * WOOD MULTISERVICE - DESIGN SYSTEM
 * Industrial Luxury Theme
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════ */

body {
    font-family: 'Roboto', sans-serif;
    color: #26201A;
    /* wood-900 */
    background-color: #FAFAF9;
    /* stone-50 */
}

/* ═══════════════════════════════════════════════════════════════
   BUTTON EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* Shimmer effect per il bottone primario */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.btn-shimmer {
    background: linear-gradient(105deg, #9C6644 20%, #B6805E 50%, #9C6644 80%);
    background-size: 200% auto;
    transition: 0.3s;
}

.btn-shimmer:hover {
    animation: shimmer 1.5s infinite linear;
}

/* Pulsing effect for the Submit button */
.pulse-attention {
    animation: pulse-attention 2s 2 !important;
    box-shadow: 0 0 0 0 rgba(76, 51, 37, 0.7);
}

@keyframes pulse-attention {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 102, 68, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(156, 102, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(156, 102, 68, 0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   ONLINE INDICATOR
   ═══════════════════════════════════════════════════════════════ */

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(5, 150, 105, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

.online-dot {
    width: 8px;
    height: 8px;
    background-color: #059669;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2.5s infinite;
}

/* ═══════════════════════════════════════════════════════════════
   TEXT EFFECTS
   ═══════════════════════════════════════════════════════════════ */

/* Effetto testo legno/industriale - Gradiente a 3 punti */
.text-wood-gradient {
    background: linear-gradient(180deg, #A67C52 0%, #8B5E3C 50%, #4A3728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE TAGS - PILL DESIGN
   ═══════════════════════════════════════════════════════════════ */

.interactive-tag {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background-color: white;
}

.interactive-tag:not(.selected):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #1C1917;
    color: #1C1917;
}

.interactive-tag.selected {
    background-color: #2D2D2D;
    border-color: #2D2D2D;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: none !important;
}

.interactive-tag.selected svg {
    color: white !important;
}

.interactive-tag svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s;
    opacity: 0.8;
}

.interactive-tag.selected svg {
    opacity: 1;
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* Select Placeholder Color Style */
select:invalid {
    color: #A8A29E;
    /* stone-400 */
    font-style: normal;
}

select option {
    color: #1C1917;
    /* wood-900 */
}

/* Date/Time Input Hover Effects */
input[type="date"],
input[type="time"] {
    cursor: pointer;
    position: relative;
}

input[type="date"]:hover,
input[type="time"]:hover {
    border-color: #1C1917;
    background-color: #FAFAF9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Styling the calendar and clock icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 8px;
    margin-right: -4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.6;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background-color: rgba(28, 25, 23, 0.1);
    transform: scale(1.15);
}

input[type="date"]:focus::-webkit-calendar-picker-indicator,
input[type="time"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Visual Feedback for Form Validation - Solo dopo il click */
form.was-validated input:invalid,
form.was-validated textarea:invalid {
    border-color: #ef4444 !important;
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Error Messages - Positioned relative to flow naturally */
.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: left;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

/* De-emphasize Spam Notice on Error */
form.was-validated input:invalid~.spam-notice,
form.was-validated input:invalid~.spam-notice svg {
    color: #a8a29e !important;
    /* stone-400 */
    transition: color 0.3s ease;
}

form.was-validated input:invalid+.error-message,
form.was-validated input:invalid~.error-message {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   SCHEDULING WIDGET
   ═══════════════════════════════════════════════════════════════ */

.scheduling-container {
    background: #FAFAF9;
    /* stone-50 */
    border: 1px solid #E7E5E4;
    /* stone-200 */
    border-top: 4px solid #1C1917;
    /* wood-900 top border */
    border-radius: 2px;
}

/* Time Slot Base */
.time-slot {
    background: white;
    border: 1px solid #E7E5E4;
    border-radius: 2px;
    padding: 0.85rem 1.15rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    min-height: 65px;
}

.time-slot:hover {
    border-color: #1C1917;
}

.time-slot.active {
    background: #2D2D2D;
    border-color: #2D2D2D;
    color: white;
}

.time-slot.active .slot-label {
    color: white;
}

.time-slot.active .slot-time {
    color: #A8A29E;
}

.time-slot.active .slot-icon {
    color: white;
}

.slot-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #78716C;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.slot-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #1C1917;
    transition: color 0.2s ease;
}

.slot-time {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: #78716C;
    transition: color 0.2s ease;
}

/* Custom Date/Time Fields - Hidden by default */
.custom-datetime {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-datetime.visible {
    display: grid;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File Upload Success State */
.upload-area.has-file {
    border-color: #25D366 !important;
    background-color: rgba(37, 211, 102, 0.05) !important;
}

.upload-area.has-file .upload-icon {
    color: #25D366 !important;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM DROPDOWN
   ═══════════════════════════════════════════════════════════════ */

.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #E7E5E4;
    padding: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #1C1917;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-dropdown-trigger:hover {
    border-color: #1C1917;
}

.custom-dropdown-trigger:focus {
    outline: none;
    border-color: #1C1917;
}

.custom-dropdown-trigger.placeholder {
    color: #78716C;
}

/* Numero "Fase" decorativo del processo: reso via pseudo-elemento (da data-fase),
   così non è un nodo di testo → nessun falso positivo di contrasto (è decorativo,
   il titolo leggibile è nell'<h3> accanto). */
.wm-fase::before {
    content: attr(data-fase);
}

.custom-dropdown-trigger svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #A8A29E;
    transition: transform 0.2s ease;
}

.custom-dropdown.open {
    z-index: 9999;
}

.custom-dropdown.open .custom-dropdown-trigger svg {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    border: 1px solid #E7E5E4;
    margin-top: 2px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.custom-dropdown.open .custom-dropdown-menu {
    max-height: 230px;
    overflow-y: auto;
    opacity: 1;
}

.custom-dropdown-option {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #1C1917;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
}

.custom-dropdown-option:hover {
    background-color: #F5F5F4;
    color: #2D2D2D;
}

.custom-dropdown-option.selected {
    background-color: #2D2D2D;
    color: white;
    font-weight: 600;
}

/* Scrollbar styling for dropdown */
.custom-dropdown-menu::-webkit-scrollbar {
    width: 12px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
    background: #E7E5E4;
    border-radius: 4px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2D2D2D, #57534E);
    border-radius: 4px;
    border: 1px solid #E7E5E4;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #78350f, #57534e);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL HINT
   ═══════════════════════════════════════════════════════════════ */

.scroll-hint {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #A8A29E;
    font-size: 0.7rem;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    animation: bounceDown 1.5s infinite;
    z-index: 10;
}

.scroll-hint svg {
    width: 16px;
    height: 16px;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-50%) translateY(4px);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FLATPICKR CUSTOM THEME
   ═══════════════════════════════════════════════════════════════ */

.flatpickr-calendar {
    font-family: 'Roboto', sans-serif;
    border: 1px solid #E7E5E4;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0 4px 4px 4px;
    width: auto !important;
    animation: calendarFadeIn 0.3s ease-out;
    transform-origin: top center;
    margin-top: 2px !important;
}

@keyframes calendarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
    display: none;
}

/* Header / Month Navigation */
.flatpickr-months {
    display: flex !important;
    align-items: center !important;
    background: #2D2D2D;
    border-radius: 2px 2px 0 0;
    padding: 8px 0;
}

.flatpickr-months .flatpickr-month {
    flex: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flatpickr-current-month {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    padding-top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    left: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.flatpickr-current-month input.cur-year {
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    position: relative !important;
    fill: white;
    color: white;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 0 !important;
    height: 30px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover,
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg,
.flatpickr-months .flatpickr-prev-month:hover path,
.flatpickr-months .flatpickr-next-month:hover path {
    fill: white !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 14px;
    height: 14px;
}

/* Weekdays */
.flatpickr-weekdays {
    background: #F5F5F4;
    border-bottom: 1px solid #E7E5E4;
}

.flatpickr-weekday {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #78716C;
    letter-spacing: 0.05em;
}

/* Days */
.flatpickr-day {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #1C1917;
    border-radius: 2px;
    transition: all 0.15s ease;
    max-width: 14.2857%;
    flex-basis: 14.2857%;
    height: 38px;
    line-height: 38px;
}

.flatpickr-day:hover {
    background: #F5F5F4;
    border-color: #1C1917;
}

.flatpickr-day.today {
    border-color: #1C1917;
    background: transparent;
    color: #1C1917;
    font-weight: 700;
}

.flatpickr-day.today:hover {
    background: #1C1917;
    color: white;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: #1C1917;
    border-color: #1C1917;
    color: white;
    font-weight: 600;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #78716C;
    opacity: 0.7;
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    color: #1C1917;
    opacity: 1;
    background: #F5F5F4;
    border-color: #1C1917;
}

/* Disabled days */
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.notAllowed,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #D6D3D1 !important;
    background: transparent !important;
    border-color: transparent !important;
    cursor: not-allowed;
    opacity: 1 !important;
}

/* Next month days (Future) - Visible and clickable */
.flatpickr-day.nextMonthDay {
    color: #78716C;
    text-decoration: none;
    cursor: pointer;
}

.flatpickr-day.nextMonthDay:hover {
    color: #1C1917;
    background: #F5F5F4;
    border-color: #1C1917;
}

/* Time Picker */
.flatpickr-time {
    border-top: 1px solid #E7E5E4;
    background: #FAFAF9;
    max-height: 50px;
}

.flatpickr-time input {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1C1917;
}

.flatpickr-time .numInputWrapper:hover {
    background: rgba(0, 0, 0, 0.05);
}

.flatpickr-time .flatpickr-time-separator {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #78716C;
}

.flatpickr-time .flatpickr-am-pm {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #1C1917;
}

.flatpickr-time .flatpickr-am-pm:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Arrow buttons */
.numInputWrapper span {
    border-color: #E7E5E4;
}

.numInputWrapper span:hover {
    background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper span::after {
    border-color: #78716C;
}

.numInputWrapper span:hover::after {
    border-color: #1C1917;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 1000px;
}

.faq-answer-content {
    padding-bottom: 1.5rem;
    color: #57534E;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY CARDS (Catalogo)
   ═══════════════════════════════════════════════════════════════ */

.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════════ */

/* Previene l'auto-zoom di iOS Safari sugli input (< 16px = zoom) */
@media screen and (max-width: 768px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    input[type="number"],
    textarea,
    select,
    .flatpickr-mobile,
    .custom-dropdown-trigger {
        font-size: 16px !important;
    }

    /* Flatpickr: calendario centrato a schermo pieno su mobile */
    .flatpickr-calendar {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: calc(100vw - 32px) !important;
        max-width: 360px !important;
        z-index: 99999 !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
        border-radius: 2px !important;
        animation: none !important;
        /* Disabilita calendarFadeIn che causa flickering */
    }

    /* Forza i container interni a occupare tutta la larghezza */
    .flatpickr-innerContainer,
    .flatpickr-rContainer,
    .flatpickr-days,
    .flatpickr-days .dayContainer {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .flatpickr-weekdays {
        width: 100% !important;
    }



    /* Giorni più grandi per target touch */
    .flatpickr-day {
        height: 44px;
        line-height: 44px;
        font-size: 15px;
    }

    /* Header più spaziato */
    .flatpickr-months {
        padding: 12px 0;
    }

    .flatpickr-current-month {
        font-size: 1.2rem;
    }

    .flatpickr-weekday {
        font-size: 0.8rem;
    }

    /* Frecce navigazione più grandi per touch */
    .flatpickr-months .flatpickr-prev-month,
    .flatpickr-months .flatpickr-next-month {
        padding: 0 16px !important;
        height: 40px !important;
    }

    .flatpickr-months .flatpickr-prev-month svg,
    .flatpickr-months .flatpickr-next-month svg {
        width: 18px;
        height: 18px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER + MAP PLACEHOLDER
   Stili di prima parte (no Tailwind) per evitare FOUC sul banner.
   ═══════════════════════════════════════════════════════════════ */

.wm-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #26201A;
    /* wood-900 */
    color: #F0EBE5;
    /* wood-100 */
    border-top: 3px solid #8B5E3C;
    /* wood-500 */
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
    padding: 1rem 1.25rem;
    font-family: 'Roboto', system-ui, sans-serif;
}

.wm-cookie-banner.is-hidden {
    display: none;
}

.wm-cookie-banner__inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.wm-cookie-banner__text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #D6C6B6;
    /* wood-200 */
}

.wm-cookie-banner__text strong {
    color: #F0EBE5;
}

.wm-cookie-banner__link {
    color: #A67C52;
    /* wood-400 */
    text-decoration: underline;
}

.wm-cookie-banner__link:hover {
    color: #F0EBE5;
}

.wm-cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    width: 100%;
}

.wm-cookie-btn {
    font-family: 'Oswald', system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex: 1;
}

.wm-cookie-btn--accept {
    background: #8B5E3C;
    /* wood-500 */
    color: #fff;
    border: 1px solid #8B5E3C;
}

.wm-cookie-btn--accept:hover {
    background: #A67C52;
    /* wood-400 */
    border-color: #A67C52;
}

.wm-cookie-btn--reject {
    background: transparent;
    color: #D6C6B6;
    border: 1px solid #544538;
    /* wood-700 */
}

.wm-cookie-btn--reject:hover {
    background: #3D3229;
    /* wood-800 */
    color: #F0EBE5;
}

/* Da tablet in su: testo e bottoni sulla stessa riga, bottoni a destra */
@media screen and (min-width: 768px) {
    .wm-cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .wm-cookie-banner__text {
        font-size: 0.8rem;
    }

    .wm-cookie-banner__actions {
        width: auto;
    }

    .wm-cookie-btn {
        flex: none;
    }
}

/* Placeholder mappa Google (click-to-load) */
.wm-map-placeholder {
    width: 100%;
    height: 16rem;
    border: 2px solid #E7E5E4;
    background: #FAFAF9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

@media screen and (min-width: 640px) {
    .wm-map-placeholder {
        height: 20rem;
    }
}

.wm-map-placeholder__content {
    max-width: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.wm-map-placeholder__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #8B5E3C;
}

.wm-map-placeholder__text {
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #78716C;
    /* stone-500 */
}

.wm-map-placeholder__link {
    font-size: 0.75rem;
    color: #8B5E3C;
    text-decoration: underline;
}

.wm-map-placeholder__link:hover {
    color: #26201A;
}