        /* ============================================================
           VARIABLES — Coherentes con index.html
        ============================================================ */
        :root {
            --cream: #faf7f2;
            --warm-white: #fff8f0;
            --gold: #C8705A;
            --gold-light: #C8705A;
            --gold-dark: #C8705A;
            --dark: #1a1108;
            --dark-2: #2d1f0a;
            --text: #3a2c14;
            --text-light: #7a6540;
            --border: #e8dcc8;
            --success: #2d7a3a;
            --error: #c0392b;
            --radius: 12px;
            --radius-sm: 8px;
            --shadow: 0 4px 24px rgba(26, 17, 8, 0.10);
            --shadow-lg: 0 8px 40px rgba(26, 17, 8, 0.16);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--text);
            min-height: 100vh;
        }

        /* ============================================================
           NAV (idéntico al index)
        ============================================================ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 48px;
            height: 72px;
            background: rgba(250, 247, 242, 0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo img {
            width: 310px;
        }

        .nav-back {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: color .2s;
        }

        .nav-back:hover {
            color: var(--gold-dark);
        }

        .nav-secure {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: var(--text-light);
        }

        .nav-secure i {
            color: var(--gold);
        }

        /* ============================================================
           HERO STRIP
        ============================================================ */
        .page-hero {
            margin-top: 72px;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
            padding: 48px 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
        }

        .page-hero-label {
            font-size: 0.75rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: #fff;
            font-weight: 600;
            position: relative;
        }

        .page-hero h1 em {
            color: var(--gold-light);
            font-style: italic;
        }

        .page-hero p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.92rem;
            margin-top: 8px;
            position: relative;
        }

        /* ============================================================
           WIZARD STEPS
        ============================================================ */
        .wizard-nav {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 0;
            padding: 32px 24px 0;
            max-width: 680px;
            margin: 0 auto;
        }

        .wizard-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
            cursor: default;
        }

        .wizard-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 18px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }

        .wizard-step.done:not(:last-child)::after {
            background: var(--gold);
        }

        .step-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-light);
            position: relative;
            z-index: 1;
            transition: all .3s;
        }

        .wizard-step.active .step-circle {
            background: var(--gold);
            color: #fff;
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.2);
        }

        .wizard-step.done .step-circle {
            background: var(--gold-dark);
            color: #fff;
        }

        .step-label {
            margin-top: 8px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-light);
            text-align: center;
        }

        .wizard-step.active .step-label {
            color: var(--gold-dark);
            font-weight: 600;
        }

        .wizard-step.done .step-label {
            color: var(--gold-dark);
        }

        /* ============================================================
           MAIN CONTAINER
        ============================================================ */
        .wizard-container {
            max-width: 780px;
            margin: 28px auto 60px;
            padding: 0 20px;
        }

        /* ============================================================
           PANELS (tabs del wizard)
        ============================================================ */
        .wizard-panel {
            display: none;
        }

        .wizard-panel.active {
            display: block;
        }

        /* ============================================================
           CARD / SECCIÓN
        ============================================================ */
        .form-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 36px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }

        .form-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-card-title span {
            font-size: 1.3rem;
        }

        .form-card-subtitle {
            font-size: 0.84rem;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        /* ============================================================
           FORM ELEMENTS
        ============================================================ */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .form-group:last-child {
            margin-bottom: 0;
        }

        label {
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--text);
        }

        label .req {
            color: var(--gold-dark);
            margin-left: 2px;
        }

        label .opt {
            color: var(--text-light);
            font-weight: 400;
            font-size: 0.78rem;
            margin-left: 4px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            padding: 11px 14px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--warm-white);
            color: var(--text);
            outline: none;
            transition: border-color .2s, box-shadow .2s;
            width: 100%;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
        }

        input.valid {
            border-color: var(--success);
        }

        input.invalid {
            border-color: var(--error);
        }

        .field-hint {
            font-size: 0.76rem;
            color: var(--text-light);
        }

        .field-error {
            font-size: 0.76rem;
            color: var(--error);
            display: none;
        }

        .field-error.show {
            display: block;
        }

        .field-ok {
            font-size: 0.76rem;
            color: var(--success);
            display: none;
        }

        .field-ok.show {
            display: block;
        }

        /* RUT real-time badge */
        .rut-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.76rem;
            padding: 2px 8px;
            border-radius: 20px;
            margin-top: 2px;
            transition: all .2s;
        }

        .rut-badge.valid {
            background: #e8f5e9;
            color: var(--success);
        }

        .rut-badge.invalid {
            background: #fdecea;
            color: var(--error);
        }

        /* Divider between novio sections */
        .couple-divider {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 12px;
            margin: 20px 0;
        }

        .couple-divider hr {
            border: none;
            border-top: 1px solid var(--border);
        }

        .couple-divider span {
            font-size: 0.75rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--text-light);
            white-space: nowrap;
        }

        /* ============================================================
           FILE UPLOAD
        ============================================================ */
        .file-drop {
            border: 2px dashed var(--border);
            border-radius: var(--radius-sm);
            padding: 24px 20px;
            text-align: center;
            background: var(--warm-white);
            cursor: pointer;
            transition: border-color .2s, background .2s;
            position: relative;
        }

        .file-drop:hover,
        .file-drop.dragover {
            border-color: var(--gold);
            background: #fff8ec;
        }

        .file-drop input[type="file"] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
            padding: 0;
            border: none;
            background: none;
        }

        .file-drop-icon {
            font-size: 1.8rem;
            margin-bottom: 6px;
            color: var(--gold);
        }

        .file-drop p {
            font-size: 0.84rem;
            color: var(--text-light);
        }

        .file-drop strong {
            color: var(--text);
            font-weight: 600;
        }

        .file-preview {
            display: none;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
            padding: 10px 14px;
            background: #e8f5e9;
            border-radius: var(--radius-sm);
            font-size: 0.83rem;
        }

        .file-preview.show {
            display: flex;
        }

        .file-preview i {
            color: var(--success);
            font-size: 1.1rem;
        }

        .file-preview .file-name {
            font-weight: 600;
            color: var(--text);
            flex: 1;
        }

        .file-preview .file-size {
            color: var(--text-light);
        }

        .file-preview .file-remove {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--error);
            font-size: 1rem;
            padding: 0 4px;
        }

        .file-help {
            font-size: 0.79rem;
            color: var(--text-light);
            margin-top: 8px;
        }

        .file-help a {
            color: var(--gold-dark);
            text-decoration: underline;
        }

        /* Multiple files list */
        .multi-files-list {
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .multi-file-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #e8f5e9;
            border-radius: var(--radius-sm);
            font-size: 0.82rem;
        }

        .multi-file-item i {
            color: var(--success);
        }

        .multi-file-item span {
            flex: 1;
            font-weight: 500;
        }

        .multi-file-item .size {
            color: var(--text-light);
        }

        .multi-file-item button {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--error);
            font-size: 0.9rem;
        }

        /* ============================================================
           CHECKLIST CAPITULACIONES
        ============================================================ */
        .checklist-categoria {
            background: var(--warm-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
            margin-bottom: 14px;
        }

        .checklist-categoria h4 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 14px;
            letter-spacing: .02em;
        }

        .checklist-categoria label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            font-size: 0.88rem;
            font-weight: 400;
            color: var(--text);
            cursor: pointer;
            transition: color .15s;
        }

        .checklist-categoria label:hover {
            color: var(--gold-dark);
        }

        .checklist-categoria input[type="radio"],
        .checklist-categoria input[type="checkbox"] {
            width: 17px;
            height: 17px;
            accent-color: var(--gold-dark);
            cursor: pointer;
            flex-shrink: 0;
        }

        .nota-legal {
            background: #fff8ec;
            border-left: 4px solid var(--gold);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            padding: 14px 18px;
            font-size: 0.82rem;
            color: var(--text);
            line-height: 1.6;
            margin-top: 6px;
        }

        /* ============================================================
           TÉRMINOS
        ============================================================ */
        .terminos-box {
            background: var(--warm-white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 18px 20px;
        }

        .terminos-resumen {
            font-size: 0.84rem;
            color: var(--text);
            line-height: 1.65;
            margin-bottom: 16px;
        }

        .terminos-check {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.86rem;
            color: var(--text);
            cursor: pointer;
        }

        .terminos-check input {
            width: 17px;
            height: 17px;
            accent-color: var(--gold-dark);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .terminos-check a {
            color: var(--gold-dark);
            text-decoration: underline;
        }

        /* ============================================================
           RESUMEN LATERAL
        ============================================================ */
        .wizard-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 24px;
            align-items: start;
        }

        .order-summary {
            background: var(--dark);
            border-radius: var(--radius);
            padding: 28px 24px;
            position: sticky;
            top: 92px;
            color: #fff;
        }

        .order-summary-title {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--gold-light);
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .summary-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.84rem;
            padding: 6px 0;
            color: rgba(255, 255, 255, 0.75);
        }

        .summary-line.total {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 10px;
            padding-top: 12px;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }

        .summary-line.total span:last-child {
            color: var(--gold-light);
        }

        .summary-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(201, 168, 76, 0.15);
            border-radius: 6px;
            padding: 8px 10px;
            font-size: 0.78rem;
            color: var(--gold-light);
            margin-top: 14px;
        }

        .summary-includes {
            margin-top: 18px;
            padding-top: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .summary-includes p {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .summary-include-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.7);
            padding: 4px 0;
        }

        .summary-include-item i {
            color: var(--gold);
            font-size: 0.75rem;
        }

        /* ============================================================
           AUTOSAVE INDICATOR
        ============================================================ */
        .autosave-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            color: var(--text-light);
            padding: 8px 14px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .autosave-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--border);
            transition: background .3s;
        }

        .autosave-dot.saving {
            background: var(--gold);
            animation: pulse .8s infinite;
        }

        .autosave-dot.saved {
            background: var(--success);
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        /* ============================================================
           BUTTONS
        ============================================================ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 14px 36px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-light);
            border: 1.5px solid var(--border);
            border-radius: 50px;
            padding: 13px 28px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            font-weight: 500;
            cursor: pointer;
            transition: all .2s;
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold-dark);
        }

        .wizard-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        /* ============================================================
           PANEL 2: PAGO (simulado)
        ============================================================ */
        .payment-mock {
            text-align: center;
            padding: 40px 20px;
        }

        .payment-mock-icon {
            font-size: 3.5rem;
            margin-bottom: 16px;
        }

        .payment-mock h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .payment-mock p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 24px 0;
            flex-wrap: wrap;
        }

        .pay-method {
            background: var(--warm-white);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 14px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: border-color .2s, background .2s;
        }

        .pay-method.selected,
        .pay-method:hover {
            border-color: var(--gold);
            background: #fff8ec;
        }

        .pay-method i {
            color: var(--gold-dark);
            font-size: 1.1rem;
        }

        .payment-amount {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--dark);
            font-weight: 700;
            margin: 20px 0 6px;
        }

        .payment-amount small {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--text-light);
            display: block;
            font-weight: 400;
        }

        .flow-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f0f7ff;
            border: 1px solid #c3daf5;
            border-radius: 6px;
            padding: 8px 14px;
            font-size: 0.8rem;
            color: #1a5fa8;
            margin-top: 12px;
        }

        /* ============================================================
           PANEL 3: AGENDAMIENTO (simulado)
        ============================================================ */
        .schedule-mock {
            text-align: center;
            padding: 40px 20px;
        }

        .schedule-mock-icon {
            font-size: 3.5rem;
            margin-bottom: 16px;
        }

        .schedule-mock h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .schedule-mock p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .calendly-placeholder {
            background: var(--warm-white);
            border: 2px dashed var(--border);
            border-radius: var(--radius);
            padding: 48px 24px;
            margin-top: 24px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .calendly-placeholder i {
            font-size: 2.5rem;
            color: var(--border);
            display: block;
            margin-bottom: 12px;
        }

        .success-steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 28px 0;
            text-align: left;
        }

        .success-step {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: var(--warm-white);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 14px 18px;
        }

        .success-step-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--gold);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .success-step-text {
            font-size: 0.87rem;
            color: var(--text);
            line-height: 1.5;
        }

        .success-step-text strong {
            color: var(--dark);
            display: block;
            margin-bottom: 2px;
        }

        /* ============================================================
           FOOTER (idéntico al index)
        ============================================================ */
        footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 48px 48px 24px;
            margin-top: 60px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 32px;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            flex-wrap: wrap;
            gap: 8px;
        }

        .footer-bottom a {
            color: var(--gold-light);
            text-decoration: none;
        }

        /* WhatsApp float */
        .wa-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #25D366;
            color: #fff;
            border-radius: 50px;
            padding: 12px 20px 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            z-index: 200;
            transition: transform .2s;
        }

        .wa-float:hover {
            transform: translateY(-2px);
        }

        .wa-float i {
            font-size: 1.2rem;
        }

        /* Flow-only badge */
        .flow-only-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--warm-white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 16px 20px;
            margin: 24px auto 0;
            max-width: 380px;
            text-align: left;
        }
        .flow-only-badge img { height: 36px; width: auto; flex-shrink: 0; }
        .flow-only-badge strong { display: block; font-size: 0.9rem; color: var(--dark); }
        .flow-only-badge span  { font-size: 0.78rem; color: var(--text-light); }

        /* Submit loading */
        .submit-loading {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
            padding: 16px;
            font-size: 0.88rem;
            color: var(--text-light);
        }
        .submit-spinner {
            width: 20px; height: 20px;
            border: 3px solid var(--border);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin .7s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Error pago */
        .pago-error-box {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: #fdecea;
            border: 1px solid var(--error);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            margin-top: 16px;
            text-align: left;
        }
        .pago-error-icon { color: var(--error); font-size: 1.1rem; padding-top: 2px; flex-shrink: 0; }
        .pago-error-content { display: flex; flex-direction: column; gap: 2px; }
        .pago-error-content strong { font-size: 0.87rem; color: var(--error); }
        .pago-error-content span   { font-size: 0.82rem; color: var(--text); }

        /* Cancelación manual */
        .pago-cancelado-box {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: #fff8ec;
            border: 1.5px solid var(--gold);
            border-radius: var(--radius-sm);
            padding: 16px 18px;
            margin-top: 16px;
            text-align: left;
        }
        .cancelado-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
        .cancelado-content { display: flex; flex-direction: column; gap: 5px; }
        .cancelado-content strong { font-size: 0.9rem; color: var(--dark); }
        .cancelado-content span   { font-size: 0.83rem; color: var(--text); line-height: 1.55; }
        .cancelado-content em     { font-style: normal; font-weight: 700; color: var(--gold-dark); }

        /* ============================================================
           GOOGLE MAPS AUTOCOMPLETE
        ============================================================ */

        /* Hint visible solo en mobile bajo el campo de dirección */
        .mobile-address-hint {
            display: none;
            font-size: 0.76rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        @media (max-width: 768px),
               (hover: none) and (pointer: coarse) {
            .mobile-address-hint { display: block; }
            .map-preview          { display: none !important; }
        }
        .address-wrapper {
            position: relative;
        }
        .pac-container {
            border-radius: var(--radius-sm);
            border: 1.5px solid var(--gold);
            box-shadow: var(--shadow);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.88rem;
            margin-top: 2px;
        }
        .pac-item {
            padding: 8px 12px;
            cursor: pointer;
            color: var(--text);
        }
        .pac-item:hover { background: var(--warm-white); }
        .pac-item-query { color: var(--dark); font-weight: 500; }

        .map-preview {
            margin-top: 10px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1.5px solid var(--border);
            display: none;
            transition: all .3s;
        }
        .map-preview.show { display: block; }
        .map-preview iframe,
        .map-preview #map1,
        .map-preview #map2 {
            width: 100%;
            height: 180px;
            display: block;
            border: none;
        }
        .map-confirm-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #e8f5e9;
            border-top: 1px solid var(--border);
            font-size: 0.78rem;
            color: var(--success);
        }
        .map-confirm-badge i { font-size: 0.9rem; }
        .map-confirm-badge span { flex: 1; color: var(--text); font-size: 0.78rem; }
        .map-confirm-badge button {
            background: none;
            border: none;
            font-size: 0.75rem;
            color: var(--gold-dark);
            cursor: pointer;
            text-decoration: underline;
            padding: 0;
        }

        /* Auto-fill notice */
        .autofill-notice {
            display: none;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: #fff8ec;
            border: 1px solid var(--gold);
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            color: var(--text);
            margin-bottom: 14px;
        }
        .autofill-notice.show { display: flex; }
        .autofill-notice i { color: var(--gold-dark); }

        /* ============================================================
           RESPONSIVE
        ============================================================ */
        @media (max-width: 900px) {
            .wizard-layout {
                grid-template-columns: 1fr;
            }

            .order-summary {
                position: static;
            }
        }

        @media (max-width: 600px) {
            nav {
                padding: 0 20px;
            }

            .page-hero {
                padding: 36px 20px 28px;
            }

            .form-card {
                padding: 22px 18px;
                width: 360px;
            }

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

            .wizard-actions {
                flex-direction: column;
                gap: 12px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            footer {
                padding: 32px 20px 20px;
            }
        }
    