 /* FONDO GENERAL CON IMAGEN */
        .reserva-bg {
            background: url('/image/slade.png') center/cover no-repeat;
            position: relative;
            padding: 120px 0;
        }

        .reserva-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        /* CONTENEDOR DEL FORMULARIO */
        .reserva-card {
            position: relative;
            z-index: 5;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            border: 2px solid #a24c22;
        }

        .reserva-title {
            color: #9b542f;
            text-align: center;
            font-weight: 700;
            letter-spacing: 3px;
            margin-bottom: 30px;
            position: relative;
            z-index: 5;
        }

        /* ÍCONOS DENTRO DE INPUTS */
        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #a24c22;
            font-size: 1.2rem;
        }

        .input-with-icon input {
            padding-left: 45px;
            border: 1px solid #a24c22;
        }

        .input-with-icon input:focus {
            border-color: #803619;
            box-shadow: 0 0 8px rgba(162, 76, 34, 0.6);
        }

        /* BOTÓN RESERVAR */
        .btn-reservar {
            width: 100%;
            padding: 12px;
            border-radius: 40px;
            border: 2px solid #a24c22;
            color: #a24c22;
            background: transparent;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            transition: 0.3s ease;
        }

        .btn-reservar:hover {
            background: #a24c22;
            color: #fff;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
            transform: translateY(-3px);
        }

        /* FECHA – ESTILO ESPECIAL */
        .input-with-icon input[type="date"] {
            padding-left: 45px;
            border: 1px solid #a24c22;
            color: #803619;
            font-weight: 500;
            background-color: #fff;
            cursor: pointer;
        }

        /* Color del texto dentro del date picker */
        .input-with-icon input[type="date"]::-webkit-datetime-edit {
            color: #803619;
        }

        /* Ícono del botón calendario */
        .input-with-icon input[type="date"]::-webkit-calendar-picker-indicator {
            filter: sepia(60%) hue-rotate(340deg) saturate(600%);
            opacity: 0.9;
            cursor: pointer;
        }

        /* Hover */
        .input-with-icon input[type="date"]:hover {
            border-color: #803619;
            box-shadow: 0 0 8px rgba(162, 76, 34, 0.5);
        }

        /* Focus */
        .input-with-icon input[type="date"]:focus {
            border-color: #a24c22 !important;
            box-shadow: 0 0 10px rgba(162, 76, 34, 0.6);
        }


        /* --- CALENDARIO PREMIUM --- */

        .flatpickr-calendar {
            background: #fff;
            border: 2px solid #a24c22 !important;
            border-radius: 12px;
            box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
        }

        /* Header */
        .flatpickr-months {
            background: #a24c22 !important;
            color: #fff;
        }

        .flatpickr-monthDropdown-months,
        .flatpickr-yearDropdown-years {
            background: #803619 !important;
            color: #fff !important;
        }

        /* Días */
        .flatpickr-day {
            border-radius: 8px;
            color: #803619;
            font-weight: 500;
        }

        .flatpickr-day:hover {
            background: #a24c22 !important;
            color: #fff !important;
        }

        /* Día seleccionado */
        .flatpickr-day.selected {
            background: #a24c22 !important;
            color: #fff !important;
        }

        /* Hoy */
        .flatpickr-day.today {
            border: 1px solid #a24c22 !important;
            color: #a24c22 !important;
        }

        /* Flechas */
        .flatpickr-prev-month svg,
        .flatpickr-next-month svg {
            fill: #fff !important;
        }

        /* Input con icono */
        .calendario {
            cursor: pointer;
            border: 1px solid #a24c22;
        }

        .calendario:focus {
            border-color: #803619;
            box-shadow: 0 0 8px rgba(162, 76, 34, 0.6);
        }