        .reservation-section {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(10, 10, 10, 0.85) 100%);
            padding: 6rem 2rem;
        }

        .reservation-container {
            max-width: 700px;
            margin: 0 auto;
        }

        /* The legacy styles.css ships `.reservation-form { display: none !important }`
           in two places (lines 2886 and 5443) because the production index.html has a
           script that replaces the form node with a "Reservar Mesa" button. On the new
           Astro /reservas page we actually want the form visible, so we re-enable
           display with the same !important precedence. */
        .reservation-form {
            display: block !important;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(227, 143, 47, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group-res {
            margin-bottom: 1.5rem;
        }

        .form-group-res.full-width {
            grid-column: 1 / -1;
        }

        .form-label-res {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--orange);
            margin-bottom: 0.5rem;
        }

        .form-input-res {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-input-res:focus {
            outline: none;
            border-color: var(--orange);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(227, 143, 47, 0.1);
        }

        .form-input-res::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        textarea.form-input-res {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn-res {
            width: 100%;
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn-res:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(227, 143, 47, 0.3);
        }

        .submit-btn-res:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* STEPPER PROGRESS */
        .stepper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2.5rem;
            gap: 0;
        }

        .step-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .step-dot.active {
            background: var(--orange);
            border-color: var(--orange);
            color: var(--black);
            transform: scale(1.15);
            box-shadow: 0 0 20px rgba(227, 143, 47, 0.4);
        }

        .step-dot.completed {
            background: rgba(46, 204, 113, 0.2);
            border-color: #2ecc71;
            color: #2ecc71;
        }

        .step-line {
            width: 30px;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .step-line.completed {
            background: #2ecc71;
        }

        /* STEP CONTENT ANIMATION */
        .step-content {
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: stepFadeIn 0.35s ease;
        }

        @keyframes stepFadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step-content .form-group-res {
            width: 100%;
            max-width: 400px;
            margin-bottom: 0;
        }

        .step-content .form-row {
            width: 100%;
            max-width: 400px;
        }

        .step-content .checkbox-group-res,
        .step-content .checkbox-grid {
            width: 100%;
            max-width: 500px;
        }

        .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--orange);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* STEP NAVIGATION BUTTONS */
        /* Marketing consent checkbox */
        .marketing-consent-group {
            margin-top: 1.2rem;
        }

        .marketing-consent-label {
            display: flex;
            align-items: flex-start;
            gap: 0.7rem;
            cursor: pointer;
            position: relative;
            padding-left: 0;
            user-select: none;
        }

        .marketing-consent-checkbox {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .marketing-consent-checkmark {
            width: 20px;
            height: 20px;
            min-width: 20px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.25s ease;
            position: relative;
            margin-top: 1px;
        }

        .marketing-consent-checkbox:checked + .marketing-consent-checkmark {
            background: var(--orange);
            border-color: var(--orange);
        }

        .marketing-consent-checkbox:checked + .marketing-consent-checkmark::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1px;
            width: 6px;
            height: 10px;
            border: solid #000;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .marketing-consent-text {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.4;
        }

        .marketing-consent-label:hover .marketing-consent-checkmark {
            border-color: rgba(227, 143, 47, 0.5);
        }

        .step-nav {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            width: 100%;
            max-width: 400px;
        }

        .step-btn {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .step-btn-back {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.6);
        }

        .step-btn-back:hover {
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }

        .step-btn-next {
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
            border: none;
            color: #fff;
        }

        .step-btn-next:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(227, 143, 47, 0.3);
        }

        .step-btn-next:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* OCCASION CUSTOM INPUT */
        .occasion-custom-input {
            margin-top: 0.8rem;
            animation: stepFadeIn 0.3s ease;
        }

        /* RECAP STEP */
        .recap-card {
            width: 100%;
            max-width: 450px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(227, 143, 47, 0.2);
            border-radius: 15px;
            padding: 1.5rem;
        }

        .recap-row {
            display: flex;
            justify-content: space-between;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .recap-row:last-child {
            border-bottom: none;
        }

        .recap-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.5);
        }

        .recap-value {
            color: var(--orange);
            font-weight: 600;
            text-align: right;
            max-width: 60%;
        }

        .recap-edit {
            text-align: center;
            margin-top: 1rem;
        }

        .recap-edit-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            cursor: pointer;
            text-decoration: underline;
        }

        .recap-edit-btn:hover {
            color: var(--orange);
        }

        @media (max-width: 768px) {
            .stepper {
                margin-bottom: 2rem;
            }
            .step-dot {
                width: 30px;
                height: 30px;
                font-size: 0.7rem;
            }
            .step-line {
                width: 20px;
            }
            .step-title {
                font-size: 1.1rem;
            }
            .step-content {
                min-height: 150px;
            }
            .reservation-form {
                padding: 1.5rem;
            }
            .step-nav {
                gap: 0.8rem;
            }
            .step-btn {
                padding: 0.9rem 1rem;
                font-size: 0.85rem;
            }
        }

        .form-message {
            padding: 1rem 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
            text-align: center;
            font-size: 0.95rem;
        }

        .form-message.success {
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.3);
            color: #2ecc71;
        }

        .form-message.error {
            background: rgba(231, 76, 60, 0.15);
            border: 1px solid rgba(231, 76, 60, 0.3);
            color: #e74c3c;
        }

        /* Fix pour les select (fond sombre, texte blanc) */
        .form-input-res option {
            background: #1a1a1a;
            color: #fff;
        }

        select.form-input-res {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
        }

        /* Fix pour le date picker */
        input[type="date"].form-input-res::-webkit-calendar-picker-indicator {
            filter: invert(1);
            cursor: pointer;
        }

        /* Styles pour les checkboxes du formulaire */
        .checkbox-group-res {
            margin-bottom: 1.5rem;
        }

        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .checkbox-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            cursor: pointer;
            padding: 1rem 0.6rem 0.8rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1.5px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            text-align: center;
        }

        .checkbox-item:hover {
            border-color: rgba(227, 143, 47, 0.4);
            background: rgba(227, 143, 47, 0.06);
            transform: translateY(-2px);
        }

        .checkbox-item.checked {
            border-color: var(--orange);
            background: rgba(227, 143, 47, 0.12);
            box-shadow: 0 0 20px rgba(227, 143, 47, 0.15), inset 0 0 20px rgba(227, 143, 47, 0.05);
        }

        .checkbox-item input[type="checkbox"] {
            display: none;
        }

        .checkbox-icon {
            position: absolute;
            top: 6px;
            right: 6px;
            width: 18px;
            height: 18px;
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 10px;
            color: white;
        }

        .checkbox-item.checked .checkbox-icon {
            background: var(--orange);
            border-color: var(--orange);
            box-shadow: 0 0 8px rgba(227, 143, 47, 0.4);
        }

        .checkbox-svg-icon {
            width: 32px;
            height: 32px;
            transition: all 0.35s ease;
            margin-bottom: 0.15rem;
            /* Invert black SVG to white, then reduce opacity */
            filter: invert(1) opacity(0.45);
        }

        .checkbox-item.checked .checkbox-svg-icon {
            /* Invert to white, then colorize to orange (#E38F2F) */
            filter: invert(65%) sepia(80%) saturate(500%) hue-rotate(350deg) brightness(95%) drop-shadow(0 0 6px rgba(227, 143, 47, 0.35));
        }

        .checkbox-item:hover .checkbox-svg-icon {
            filter: invert(65%) sepia(60%) saturate(400%) hue-rotate(350deg) brightness(95%) opacity(0.8);
        }

        .checkbox-label {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
            letter-spacing: 0.02em;
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .checkbox-item.checked .checkbox-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .checkbox-emoji {
            font-size: 1.1rem;
        }

        /* Occasion grid - single select cards */
        .occasion-grid {
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            max-width: 500px;
        }

        .step-content .occasion-grid {
            max-width: 500px;
        }

        /* Section divider */
        .form-section-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--orange);
            margin-bottom: 0.8rem;
            margin-top: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(227, 143, 47, 0.2);
        }

        @media (max-width: 768px) {
            .reservation-form {
                padding: 2rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .checkbox-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.6rem;
            }

            .checkbox-svg-icon {
                width: 26px;
                height: 26px;
            }

            .checkbox-label {
                font-size: 0.72rem;
            }

            .checkbox-item {
                padding: 0.8rem 0.4rem 0.6rem;
                border-radius: 12px;
            }

            .occasion-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .occasion-grid .checkbox-item {
                padding: 0.9rem 0.3rem 0.7rem;
            }

            .occasion-grid .checkbox-label {
                font-size: 0.68rem;
            }
        }

        /* RESERVATION - Small mobile */
        @media (max-width: 480px) {
            .reservation-section {
                padding: 3rem 0.5rem;
            }

            .reservation-form {
                padding: 1.2rem 0.8rem;
                border-radius: 14px;
                margin-top: 2rem;
            }

            .stepper {
                margin-bottom: 1.5rem;
                gap: 0;
            }

            .step-dot {
                width: 26px;
                height: 26px;
                font-size: 0.6rem;
            }

            .step-line {
                width: 14px;
            }

            .step-label {
                font-size: 0.55rem;
            }

            .step-title {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }

            .step-subtitle {
                font-size: 0.75rem;
            }

            .step-content {
                min-height: 120px;
            }

            .step-content,
            .step-content .form-group-res,
            .step-content .form-row {
                width: 100%;
                max-width: 100% !important;
            }

            .step-nav {
                max-width: 100% !important;
            }

            .step-content .checkbox-group-res,
            .step-content .checkbox-grid,
            .step-content .occasion-grid {
                width: 100%;
                max-width: 100% !important;
            }

            .form-input-res {
                padding: 0.8rem 0.9rem;
                font-size: 0.9rem;
            }

            .form-label-res {
                font-size: 0.8rem;
            }

            .checkbox-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .checkbox-item {
                padding: 0.7rem 0.3rem 0.5rem;
                border-radius: 10px;
            }

            .checkbox-svg-icon {
                width: 22px;
                height: 22px;
            }

            .checkbox-label {
                font-size: 0.65rem;
            }

            .checkbox-icon {
                width: 15px;
                height: 15px;
                top: 4px;
                right: 4px;
                font-size: 8px;
            }

            .occasion-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }

            .occasion-grid .checkbox-item {
                padding: 0.7rem 0.2rem 0.5rem;
            }

            .occasion-grid .checkbox-label {
                font-size: 0.62rem;
            }

            .recap-card {
                max-width: 100%;
                padding: 1rem;
                border-radius: 12px;
            }

            .recap-row {
                font-size: 0.85rem;
            }

            .recap-value {
                max-width: 55%;
                word-break: break-word;
            }

            .step-nav {
                gap: 0.6rem;
                margin-top: 1.5rem;
            }

            .step-btn {
                padding: 0.8rem 0.8rem;
                font-size: 0.8rem;
                border-radius: 10px;
            }

            .form-section-title {
                font-size: 0.7rem;
                margin-top: 1rem;
            }
        }
