        .exclusivedate-form {
            display: flex;
            flex-wrap: nowrap;
            /* impedir salto si hay ancho suficiente */
            align-items: stretch;
            border-radius: 0 20px;
            overflow: hidden;
            margin: 10px auto;
            background: rgba(256, 256, 256, .85);
            width: 100%;
            max-width: 1000px;
            /* límite superior */
            filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, .8));
        }

        .exclusivedate-box {
            padding: 12px 12px 6px 12px;
            text-align: center;
            flex: 1 1 160px;
            min-width: 150px;
            border-right: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .exclusivedate-box:last-child {
            border-right: none;
        }

        .exclusivedate-label {
            font-size: .8rem;
            letter-spacing: 1px;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .exclusivedate-value {
            color: #ac9b4b;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
            border: none;
            background: none;
            text-align: center;
            width: 100%;
            outline: none;
            padding: 0;
            margin-bottom: 0;
        }

        .exclusivedate-desc {
            color: #888;
            font-size: 1rem;
            letter-spacing: 2px;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        .exclusivedate-promo-input {
            border: 1.5px solid #bbb;
            background: #fafbfc;
            font-size: 1.5rem;
            color: #bbb;
            font-weight: 600;
            letter-spacing: 3px;
            text-align: center;
            padding: 0.4rem 0.8rem;
            width: 100%;
            outline: none;
            border-radius: 0;
            margin-top: 10px;
            margin-bottom: 0;
        }

        .exclusivedate-btn {
            background: transparent;
            color: var(--primary);
            border: none;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 3px;

            /* ↓ menos alto y flexible */
            padding: 18px;
            /* antes 28px 18px */
            flex: 1 1 250px;
            /* reemplaza min-width rígido */
            min-width: 0;
            /* permite encogerse si hace falta */
            height: auto;
            /* no fuerza alto fijo */

            border-radius: 0;
            transition: background .5s;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            /* evita que se parta el texto */
        }

        .exclusivedate-btn:hover {
            background: var(--primary);
            color: #fff;
        }

        input[type="number"].exclusivedate-value::-webkit-inner-spin-button,
        input[type="number"].exclusivedate-value::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type="number"].exclusivedate-value {
            -moz-appearance: textfield;
            appearance: textfield;
        }

        @media (max-width: 1100px) {
            .exclusivedate-form {
                flex-wrap: wrap;
                /* recién permitir salto */
            }
 
            .exclusivedate-btn {
                flex-basis: 100%;
                width: 100%;
            }
        }

        @media (max-width: 990px) {
            .exclusivedate-form {
                flex-wrap: wrap;
            }

            .exclusivedate-box {
                min-width: 33%;
                border-bottom: 1px solid #eee;
                border-right: none;
            }

            .exclusivedate-btn {
                min-width: 100%;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .exclusivedate-form {
                display: none;
            }
        }

        #bookingMobileModal {
            animation: fadeIn 0.3s ease-in-out;
        }

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

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