/* RG3D Print — Precision-Forged Collectibles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&display=swap');

:root {
    /* Fondos */
    --primary: #09090f;
    --primary-light: #111118;
    --primary-mid: #1a1a26;
    /* Acento verde neón RG3D */
    --accent: #39FF14;
    --accent-hover: #2de010;
    --accent-light: #6fff54;
    --accent-glow: rgba(57, 255, 20, 0.12);
    --gold: #39FF14;
    --gold-light: #6fff54;
    /* Estados */
    --success: #39FF14;
    --error: #ff4444;
    /* Superficies */
    --bg: #09090f;
    --surface: #111118;
    --surface2: #1a1a26;
    --surface3: #22222f;
    --card: #111118;
    --border: #2a2a3a;
    --border-light: #1e1e2c;
    /* Texto */
    --text: #f0f0f0;
    --text-light: #a0a0b0;
    --text-lighter: #606070;
    --text-muted: #606070;
    --text-on-dark: #f0f0f0;
    /* Aliases para compatibilidad con templates */
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0b0;
    --border-light: #2a2a3a;
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
    --shadow: 0 2px 8px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.7);
    --shadow-gold: 0 0 20px rgba(57,255,20,0.2);
    /* Radios */
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    /* Tipografía — DM Sans en todo, sin serif */
    --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* === HEADER === */
.header {
    background: var(--primary);
    color: var(--text-on-dark);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--accent);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img { height: 32px; }

.header-logo h1 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: white;
}

.header-logo h1 span {
    color: var(--accent);
}

.header-tagline {
    font-size: 0.8rem;
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-on-dark);
}

/* === HERO BANNER === */
.hero-banner {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(57,255,20,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    position: relative;
    color: white;
}

.hero-banner p {
    font-size: 0.9rem;
    opacity: 0.75;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.hero-banner .gold-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
    position: relative;
}

/* === MAIN CONTAINER === */
.container {
    max-width: 820px;
    margin: -1.5rem auto 2rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* === WIZARD PROGRESS BAR === */
.wizard-progress {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.wizard-steps-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0.75rem;
}

.wizard-steps-nav::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.wizard-progress-line {
    position: absolute;
    top: 16px;
    left: 20px;
    height: 2px;
    background: var(--accent);
    z-index: 1;
    transition: width 0.4s ease;
}

.wizard-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 2;
    cursor: default;
}

.wizard-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-lighter);
    transition: all 0.3s;
}

.wizard-step-indicator.active .wizard-step-circle {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.wizard-step-indicator.completed .wizard-step-circle {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary);
}

.wizard-step-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-lighter);
    font-weight: 500;
    text-align: center;
    transition: color 0.3s;
}

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

.wizard-step-indicator.completed .wizard-step-label {
    color: var(--text-light);
}

/* === WIZARD STEPS === */
.wizard-step {
    display: none;
    animation: fadeSlideIn 0.35s ease;
}

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

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

/* === WIZARD NAVIGATION === */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-light);
}

.wizard-nav.end-only {
    justify-content: flex-end;
}

.btn-wizard-back {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border);
    padding: 0.65rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.btn-wizard-back:hover {
    border-color: var(--text-light);
    color: var(--text);
}

.btn-wizard-next {
    background: var(--accent);
    color: #09090f;
    border: none;
    padding: 0.65rem 2rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: var(--shadow-gold);
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.btn-wizard-next:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    box-shadow: 0 6px 24px rgba(57,255,20,0.35);
}

.btn-wizard-next:active { transform: translateY(0); }

/* === FORM SECTIONS === */
.form-section {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.form-section:focus-within::before {
    opacity: 1;
}

.form-section h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.section-icon.gold { background: rgba(57,255,20,0.1); color: var(--accent); }
.section-icon.warm { background: var(--surface2); color: var(--text-light); }
.section-icon.amber { background: var(--surface2); }
.section-icon.emerald { background: var(--surface2); }
.section-icon.purple { background: var(--surface2); }
.section-icon.rose { background: var(--surface2); }
.section-icon.blue { background: rgba(57,255,20,0.08); }
.section-icon.slate { background: var(--surface2); }

/* === FORM GRID === */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: var(--accent);
    margin-left: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--surface);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input.input-error,
.form-group select.input-error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* Price input */
.price-input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
}

.price-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.price-input-wrapper .currency-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 0.7rem 0.85rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.8rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.price-input-wrapper input {
    border: none;
    flex: 1;
    padding: 0.7rem 0.85rem;
    font-size: 1rem;
    font-weight: 600;
}

.price-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

/* === AMENITIES GRID === */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.82rem;
    font-weight: 500;
}

.amenity-item:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
}

.amenity-item:has(input:checked) {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--primary);
}

.amenity-item input[type="checkbox"] {
    accent-color: var(--accent);
    width: 15px;
    height: 15px;
    border-radius: 3px;
}

/* === PHOTO UPLOAD === */
.photo-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.photo-section-cover,
.photo-section-extras {
    display: flex;
    flex-direction: column;
}

.cover-badge {
    display: inline-block;
    font-size: 0.65rem;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    align-self: flex-start;
}

.photo-section-subtitle {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.photo-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.photo-upload-area:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.photo-upload-area.dragover {
    border-color: var(--accent);
    background: var(--accent-glow);
    transform: scale(1.01);
}

.photo-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.photo-upload-icon {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
    opacity: 0.5;
    color: var(--accent);
}

.photo-upload-text {
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.5;
}

.photo-upload-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* Photo previews */
.photo-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
}

.photo-preview.cover-photo-preview {
    aspect-ratio: 16/10;
    margin-top: 0;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-preview .remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.15s;
}

.photo-preview .remove-btn:hover { background: var(--error); }

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

.photo-previews .photo-preview {
    aspect-ratio: 4/3;
}

.photo-previews .photo-preview .remove-btn {
    width: 20px;
    height: 20px;
    top: 3px;
    right: 3px;
    font-size: 0.6rem;
    opacity: 0;
    transition: opacity 0.15s;
}

.photo-previews .photo-preview:hover .remove-btn { opacity: 1; }

/* Drag-and-drop reorder */
.photo-previews .photo-preview[draggable] {
    cursor: grab;
    user-select: none;
    touch-action: manipulation;
}
.photo-previews .photo-preview[draggable]:active {
    cursor: grabbing;
}
.photo-preview.dragging {
    opacity: 0.4;
    border: 2px dashed var(--accent);
    transform: scale(0.95);
}
.photo-preview.drag-over {
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    transform: scale(1.05);
    transition: all 0.15s ease;
}

/* Order badge */
.photo-order-badge {
    position: absolute;
    top: 3px;
    left: 3px;
    background: rgba(0,0,0,0.65);
    color: var(--accent-light);
    font-size: 0.6rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    font-family: 'DM Sans', sans-serif;
}

/* Rotate button */
.photo-rotate-btn {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.15s, transform 0.15s;
    line-height: 1;
}
.photo-rotate-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(90deg);
}

/* Extras: show action buttons on hover */
.photo-previews .photo-preview .photo-rotate-btn {
    width: 22px;
    height: 22px;
    bottom: 3px;
    right: 3px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.15s;
}
.photo-previews .photo-preview:hover .photo-rotate-btn { opacity: 1; }

/* Cover: always show rotate */
.cover-photo-preview .photo-rotate-btn {
    opacity: 1;
}

/* Rotated image container overflow handling */
.photo-preview img {
    transition: transform 0.3s ease;
}

/* Mobile: always show action buttons */
@media (max-width: 768px) {
    .photo-previews .photo-preview .remove-btn,
    .photo-previews .photo-preview .photo-rotate-btn {
        opacity: 1;
    }
    .photo-rotate-btn {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    .photo-previews .photo-preview .photo-rotate-btn {
        width: 26px;
        height: 26px;
    }
    .photo-previews .photo-preview .remove-btn {
        width: 24px;
        height: 24px;
    }
}

/* === SUBMIT BUTTON === */
.submit-section {
    text-align: center;
    padding: 1.5rem 0;
}

.btn-submit {
    background: var(--accent);
    color: #09090f;
    border: none;
    padding: 1rem 3.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: var(--shadow-gold);
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.btn-submit:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    box-shadow: 0 6px 24px rgba(57,255,20,0.4);
}

.btn-submit:active { transform: translateY(0); }

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

.btn-submit .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(44, 36, 32, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
    vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

.submit-hint {
    margin-top: 0.75rem;
    color: var(--text-lighter);
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}

/* === RESULTS PAGE === */

/* ── Hero Banner ── */
.results-hero {
    background: var(--primary);
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.results-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(57,255,20,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(57,255,20,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.results-hero-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.results-hero-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(57,255,20,0.3);
}
.results-hero-badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    animation: drawCheck 0.4s ease 0.3s both;
}
.results-hero-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.results-hero-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}
.results-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}
.hero-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes drawCheck {
    0% { stroke-dasharray: 0 100; }
    100% { stroke-dasharray: 100 100; }
}

/* ── Results Container ── */
.results-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem 2rem;
}

/* ── Section ── */
.results-section {
    margin-top: 2rem;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}
.section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.1rem;
}
.section-desc {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ── Media Grid (Post + Story + Video) ── */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.media-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.media-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.media-card-badge {
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}
.media-card-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    min-height: 260px;
    background: var(--surface2);
}
.media-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.85rem;
    border-top: 1px solid var(--border-light);
    background: var(--surface);
}
.media-card-size {
    font-size: 0.7rem;
    color: var(--text-lighter);
    font-weight: 500;
}
.media-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--accent);
    color: #09090f;
    text-decoration: none;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s;
}
.media-card-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Phone Frame Mockups */
.phone-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(0,0,0,0.12),
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 0 0 2px rgba(0,0,0,0.06);
    background: #000;
}
.phone-frame img {
    display: block;
    width: 100%;
    height: auto;
}
.phone-frame--post {
    max-width: 180px;
}
.phone-frame--story {
    max-width: 140px;
}

/* ── Video Status States ── */
.video-generating {
    text-align: center;
    padding: 1rem 0;
    position: relative;
}
.video-pulse-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-glow);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    animation: pulseRing 2s ease-out infinite;
}
.video-pulse-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    animation: gentlePulse 2s ease-in-out infinite;
}
.video-status-text {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}
.video-ready-state {
    text-align: center;
    padding: 1rem 0;
}
.video-ready-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-ready-state p {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}
.video-error-state {
    text-align: center;
    padding: 1rem 0;
    color: var(--error);
}
.video-error-state p {
    font-size: 0.82rem;
    font-weight: 600;
}
.video-error-hint {
    font-weight: 400 !important;
    opacity: 0.75;
    margin-top: 0.25rem;
    font-size: 0.72rem !important;
    word-break: break-word;
}
.btn-retry-video {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: #09090f;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-retry-video:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 16px rgba(57,255,20,0.3);
    transform: translateY(-1px);
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -60%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -60%) scale(1.3); opacity: 0; }
    100% { transform: translate(-50%, -60%) scale(0.8); opacity: 0; }
}
@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ── Carousel Card ── */
.carousel-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin-top: 1rem;
    transition: box-shadow 0.25s;
}
.carousel-card:hover {
    box-shadow: var(--shadow-md);
}
.carousel-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}
.carousel-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.carousel-card-desc {
    font-size: 0.78rem;
    color: var(--text-light);
}
.carousel-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--surface3);
    color: var(--text);
    border: 1px solid var(--border);
    text-decoration: none;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.carousel-download-btn:hover {
    background: var(--accent);
    color: #09090f;
    border-color: var(--accent);
    transform: translateY(-1px);
}
.carousel-slides-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.carousel-slides-scroll::-webkit-scrollbar { height: 4px; }
.carousel-slides-scroll::-webkit-scrollbar-track { background: var(--bg); }
.carousel-slides-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.carousel-slide-item {
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: start;
    width: 200px;
}
.carousel-slide-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.2s;
}
.carousel-slide-item:hover img {
    opacity: 0.92;
}
.carousel-slide-num {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ── PDF Card ── */
.pdf-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: box-shadow 0.25s;
}
.pdf-card:hover {
    box-shadow: var(--shadow-md);
}
.pdf-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pdf-card-info {
    flex: 1;
}
.pdf-card-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.pdf-card-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}
.btn-download-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s;
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-download-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57,255,20,0.35);
}

/* ── Copy Grid ── */
.copy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}
.copy-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.copy-card:hover {
    box-shadow: var(--shadow);
}
.copy-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}
.copy-card-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}
.copy-card-icon {
    font-size: 1rem;
}
.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--surface3);
    color: var(--text-light);
    border: 1px solid var(--border);
    padding: 0.3rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.btn-copy:hover { background: var(--border); color: var(--text); }
.btn-copy.copied { background: var(--accent); color: #09090f; border-color: var(--accent); }
.copy-card-body {
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 200px;
    overflow-y: auto;
    color: var(--text);
}
.copy-card-body::-webkit-scrollbar { width: 4px; }
.copy-card-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.copy-card-action {
    padding: 0.5rem 1rem 0.85rem;
    border-top: 1px solid var(--border-light);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }

/* ── Bottom Actions ── */
.results-bottom-actions {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}
.btn-new-listing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    padding: 0.65rem 1.8rem;
    font-size: 0.88rem;
    font-weight: 600;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: all 0.2s;
}
.btn-new-listing:hover {
    background: var(--accent);
    color: #09090f;
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .media-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pdf-card {
        flex-direction: column;
        text-align: center;
    }
    .carousel-slide-item { width: 160px; }
    .results-hero { padding: 2rem 1rem 1.5rem; }
    .results-hero-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    .carousel-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === ERROR === */
.error-box {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.3);
    color: #ff8080;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Validation error hint */
.validation-hint {
    color: var(--error);
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: none;
}

.validation-hint.show {
    display: block;
    animation: fadeSlideIn 0.25s ease;
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-lighter);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.footer span {
    color: var(--accent);
    font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-inner { padding: 0.75rem 1rem; }
    .header-tagline { display: none; }
    .hero-banner { padding: 1.5rem 1rem; }
    .hero-banner h2 { font-size: 1.3rem; }
    .container { padding: 0 1rem; margin-top: -1rem; }
    .form-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .form-section { padding: 1.25rem; }
    .photo-sections { grid-template-columns: 1fr; }

    .wizard-progress { padding: 1rem; }
    .wizard-step-label { font-size: 0.6rem; }
    .wizard-step-circle { width: 28px; height: 28px; font-size: 0.7rem; }
    .wizard-nav { flex-direction: column; gap: 0.75rem; }
    .btn-wizard-back, .btn-wizard-next { width: 100%; text-align: center; }
}

/* ===================================================================
   TEMPLATE EDITOR
   =================================================================== */

/* Header navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-nav-link {
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}

.header-nav-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.header-nav-link.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 600;
}

/* Editor header */
.template-editor-header {
    text-align: center;
    margin-bottom: 2rem;
}

.template-editor-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.template-editor-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Section cards */
.template-section {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.template-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.template-section-icon {
    font-size: 1.2rem;
}

.template-section-body {
    padding: 1.5rem;
}

/* Variant selector */
.variant-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.variant-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.variant-option {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: center;
    background: var(--surface2);
}

.variant-option:hover {
    border-color: var(--accent);
}

.variant-option.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(57,255,20,0.2);
}

.variant-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 0.5rem;
}

.variant-desc {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

/* Variant thumbnails - CSS mini-mockups */
.variant-thumb {
    width: 100%;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: var(--surface3);
    border: 1px solid var(--border);
}

/* Clásico thumbnail */
.variant-thumb-clasico .vt-hero {
    width: 100%;
    height: 55%;
    background: linear-gradient(180deg, #2a2a3a 0%, #111118 100%);
    position: relative;
}

.variant-thumb-clasico .vt-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 20px;
    height: 7px;
    background: #39FF14;
    border-radius: 2px;
}

.variant-thumb-clasico .vt-price-overlay {
    position: absolute;
    bottom: 5px;
    left: 6px;
    width: 45%;
    height: 5px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
}

.variant-thumb-clasico .vt-statsbar {
    width: 100%;
    height: 12%;
    background: #1a1a26;
}

.variant-thumb-clasico .vt-lines {
    padding: 6px;
}

.variant-thumb-clasico .vt-line {
    height: 4px;
    background: #3a3a4a;
    border-radius: 2px;
    margin-bottom: 3px;
}

.variant-thumb-clasico .vt-line.short {
    width: 60%;
}

/* Moderno thumbnail */
.variant-thumb-moderno .vt-header-bar {
    width: 100%;
    height: 14%;
    background: #1a1a26;
}

.variant-thumb-moderno .vt-photo {
    width: 82%;
    height: 35%;
    margin: 4px auto 0;
    background: #2a2a3a;
    border-radius: 3px;
}

.variant-thumb-moderno .vt-center-price {
    width: 40%;
    height: 5px;
    margin: 5px auto 0;
    background: rgba(57,255,20,0.5);
    border-radius: 2px;
}

.variant-thumb-moderno .vt-cards {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 5px;
    padding: 0 8px;
}

.variant-thumb-moderno .vt-card {
    flex: 1;
    height: 14px;
    background: #1e1e2c;
    border-radius: 2px;
    border-top: 1.5px solid #39FF14;
}

@media (max-width: 600px) {
    .variant-selector {
        flex-direction: column;
    }
}

/* Color pickers */
.color-pickers-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.color-picker-group {
    flex: 1;
    min-width: 160px;
}

.color-picker-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-picker-wrapper input[type="color"] {
    width: 48px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 2px;
    background: var(--surface);
}

.color-hex-input {
    width: 90px;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text);
    background: var(--bg);
}

.color-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    margin-top: 0.3rem;
}

/* Preview label */
.preview-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

/* PDF Preview */
.preview-pdf {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 400px;
}

.preview-pdf-hero {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="120"><rect fill="%23667" width="400" height="120"/></svg>');
    background-size: cover;
    padding: 1rem;
    position: relative;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.preview-pdf-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.preview-pdf-price {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.preview-pdf-location {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
}

.preview-pdf-stats {
    display: flex;
    gap: 0;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.5rem 0;
    text-align: center;
}

.preview-pdf-stats span {
    flex: 1;
}

.preview-pdf-title {
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.6rem 1rem 0.2rem;
}

.preview-pdf-text {
    font-size: 0.65rem;
    color: var(--text-light);
    padding: 0 1rem 0.8rem;
}

/* Video Preview */
.preview-phone-wrapper {
    display: flex;
    justify-content: center;
}

.preview-phone {
    width: 180px;
    height: 320px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255,255,255,0.1);
}

.preview-phone-badge {
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 3px;
    letter-spacing: 2px;
}

.preview-phone-line {
    width: 80px;
    height: 2px;
}

.preview-phone-type {
    font-size: 0.75rem;
    font-family: Georgia, serif;
    letter-spacing: 3px;
}

.preview-phone-price {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: Georgia, serif;
}

.preview-phone-cta {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    margin-top: 8px;
}

/* Music section */
.music-field {
    margin-bottom: 0.5rem;
}

.music-field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.music-field input[type="text"] {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
}

.music-field input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.music-presets {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.presets-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.btn-preset {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.75rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-preset:hover {
    background: rgba(57,255,20,0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* File uploads (Branding) */
.file-uploads-row {
    display: flex;
    gap: 2rem;
}

.file-upload-group {
    flex: 1;
}

.file-upload-group > label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.file-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.file-upload-area:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.file-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.file-upload-icon {
    font-size: 1.5rem;
}

.file-preview {
    max-width: 120px;
    max-height: 80px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    object-fit: contain;
}

.file-preview-round {
    border-radius: 50%;
    max-width: 80px;
    max-height: 80px;
    object-fit: cover;
    aspect-ratio: 1;
}

/* QR Section */
.qr-toggle-row {
    margin-bottom: 1rem;
}

.qr-toggle-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
}

.qr-toggle-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.qr-url-field {
    margin-top: 0.5rem;
}

.qr-url-field label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.qr-url-field input[type="url"] {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.2s, opacity 0.2s;
    box-sizing: border-box;
}

.qr-url-field input[type="url"]:focus {
    border-color: var(--accent);
    outline: none;
}

.qr-url-field input[type="url"]:disabled {
    opacity: 0.5;
    background: var(--bg);
    cursor: not-allowed;
}

/* Actions */
.template-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-template-save {
    padding: 0.8rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.2s;
}

.btn-template-save:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-template-reset {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-template-reset:hover {
    border-color: var(--error);
    color: var(--error);
}

/* Toast */
.toast-success {
    background: var(--success);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: opacity 0.4s;
}

.toast-success.fade-out {
    opacity: 0;
}

/* ===================================================================
   HISTORY PAGE
   =================================================================== */

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.history-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.history-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.history-card-header {
    background: var(--primary);
    color: var(--text-on-dark);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.history-card-type {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
}

.history-card-op {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 4px;
}

.history-card-body {
    padding: 1rem 1.25rem;
}

.history-card-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.history-card-location svg {
    color: var(--accent);
    flex-shrink: 0;
}

.history-card-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.history-card-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.history-card-status {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.25rem;
    flex-wrap: wrap;
}

.status-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.status-ready {
    background: rgba(57,255,20,0.1);
    color: var(--accent);
    border: 1px solid rgba(57,255,20,0.2);
}

.status-processing {
    background: rgba(107, 107, 107, 0.1);
    color: var(--text-light);
}

.status-error {
    background: rgba(192, 57, 43, 0.1);
    color: var(--error);
}

.history-card-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-light);
    margin-top: 0.75rem;
}

.btn-history-dl {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-history-dl:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Empty state */
.history-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.history-empty-icon {
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.history-empty h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.history-empty p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-history-new {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-gold);
}

.btn-history-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57,255,20,0.3);
}

/* ===================================
   VOICEOVER / STEP 6 STYLES
   =================================== */

/* Toggle button groups (video type, voice, tone) */
.vo-toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.vo-toggle-group-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.vo-toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1rem 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.vo-toggle-btn:hover {
    border-color: var(--accent);
    background: var(--surface3);
}
.vo-toggle-btn.active {
    border-color: var(--accent);
    background: var(--surface2);
    box-shadow: 0 0 0 1px var(--accent), 0 0 12px rgba(57,255,20,0.1);
}
.vo-toggle-btn input[type="radio"] {
    display: none;
}
.vo-toggle-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.vo-toggle-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}
.vo-toggle-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Section divider */
.vo-section-divider {
    height: 1px;
    background: var(--border-light);
    margin: 1.5rem 0;
}

/* Switch toggle */
.vo-switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    cursor: pointer;
}
.vo-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}
.vo-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.vo-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ddd;
    border-radius: 28px;
    transition: 0.3s;
}
.vo-switch-slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.vo-switch input:checked + .vo-switch-slider {
    background: var(--accent);
}
.vo-switch input:checked + .vo-switch-slider::before {
    transform: translateX(24px);
}

/* Voiceover options reveal */
.vo-options {
    animation: fadeSlideIn 0.3s ease;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===================================
   SCRIPT REVIEW PAGE
   =================================== */
.script-review-card {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.script-review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.script-review-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.script-review-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
    margin: 0;
}
.script-review-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}
.script-review-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.script-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    background: rgba(57,255,20,0.08);
    border: 1px solid rgba(57,255,20,0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}
.script-textarea-wrapper {
    margin-bottom: 1.5rem;
}
.script-textarea-wrapper label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.script-textarea {
    width: 100%;
    min-height: 200px;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--surface2);
    resize: vertical;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.script-textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.script-word-count {
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.script-review-actions {
    display: flex;
    justify-content: center;
}

/* ===================================
   PHOTO GUIDANCE & WARNINGS
   =================================== */
.photo-guidance {
    margin-bottom: 1.25rem;
}
.photo-guidance-reel,
.photo-guidance-tour {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text);
    animation: fadeSlideIn 0.3s ease;
}
.photo-guidance-reel {
    background: var(--surface2);
    border: 1px solid var(--border);
}
.photo-guidance-tour {
    background: rgba(57,255,20,0.04);
    border: 1px solid rgba(57,255,20,0.2);
}
.photo-guidance-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.photo-guidance-hint {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}
.photo-count-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    margin-top: 0.75rem;
    background: rgba(255,180,0,0.08);
    border: 1px solid rgba(255,180,0,0.25);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: #ffb400;
    animation: fadeSlideIn 0.3s ease;
}
.photo-count-warning svg {
    flex-shrink: 0;
    color: #ffb400;
}

/* History responsive */
@media (max-width: 768px) {
    .history-grid { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 600px) {
    .color-pickers-row { flex-direction: column; gap: 1rem; }
    .file-uploads-row { flex-direction: column; gap: 1rem; }
    .template-actions { flex-direction: column; }
    .btn-template-save, .btn-template-reset { width: 100%; text-align: center; }
    .preview-phone { width: 150px; height: 270px; }
    .header-nav { gap: 0.3rem; }
    .header-nav-link { font-size: 0.75rem; padding: 0.3rem 0.6rem; }
    .vo-toggle-group-3 { grid-template-columns: 1fr; }
    .vo-toggle-group { grid-template-columns: 1fr; }
    .script-review-card { margin: 1rem; padding: 1.25rem; }
    .script-review-header { flex-direction: column; }
}

/* ============================================
   LOADING OVERLAY
   ============================================ */
.loading-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loadingFadeIn 0.4s ease;
}
.loading-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(57,255,20,0.05) 0%, transparent 60%);
    pointer-events: none;
}
@keyframes loadingFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.loading-content {
    text-align: center;
    max-width: 420px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.loading-logo {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}
.loading-logo span {
    color: var(--accent);
}
.loading-animation {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-house {
    position: relative;
    z-index: 2;
    animation: loadingFloat 2.5s ease-in-out infinite;
}
@keyframes loadingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.loading-pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(57,255,20,0.3);
    border-radius: 50%;
    animation: loadingPulse 2.2s ease-out infinite;
}
.loading-pulse-ring::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 1px solid rgba(57,255,20,0.12);
    border-radius: 50%;
    animation: loadingPulse 2.2s ease-out infinite 0.4s;
}
@keyframes loadingPulse {
    0% { width: 80px; height: 80px; opacity: 1; }
    100% { width: 150px; height: 150px; opacity: 0; }
}
.loading-status {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2rem;
    min-height: 1.5em;
    transition: opacity 0.3s ease;
}
.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    margin-bottom: 1.5rem;
}
.loading-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    background: rgba(57,255,20,0.02);
    border: 1px solid rgba(57,255,20,0.06);
    opacity: 0.35;
    transition: all 0.4s ease;
}
.loading-step.active {
    opacity: 1;
    background: rgba(57,255,20,0.07);
    border-color: rgba(57,255,20,0.25);
    box-shadow: 0 0 20px rgba(57,255,20,0.06);
}
.loading-step.done {
    opacity: 0.7;
    background: rgba(57,255,20,0.04);
    border-color: rgba(57,255,20,0.12);
}
.loading-step-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.loading-step-text {
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: var(--text-light);
    flex: 1;
}
.loading-step-check {
    font-size: 0.9rem;
    color: var(--accent);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.loading-step.done .loading-step-check {
    opacity: 1;
    transform: scale(1);
}
.loading-step.active .loading-step-icon {
    animation: loadingBounce 0.6s ease infinite alternate;
}
@keyframes loadingBounce {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}
.loading-hint {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: rgba(57,255,20,0.35);
    margin-top: 0.5rem;
}

/* ============================================
   IMMERSIVE WIZARD — Apple-style full-screen form
   Scoped under .wizard-immersive to avoid affecting other pages
   ============================================ */

/* ── Base: dark full-screen background ── */
.wizard-immersive {
    background: #0a0a0a;
    color: #f5f5f7;
    min-height: 100vh;
}
.wizard-immersive::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(57,255,20,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Header: transparent glass ── */
.wizard-immersive .header {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}
.wizard-immersive .header-nav-link {
    color: rgba(255,255,255,0.6);
}
.wizard-immersive .header-nav-link:hover {
    color: #f5f5f7;
    background: rgba(255,255,255,0.08);
}

/* ── Container: full-width ── */
.wizard-immersive .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* ── Topbar progress ── */
.wizard-topbar {
    position: fixed;
    top: 58px;
    left: 0; right: 0;
    z-index: 99;
    padding: 0.6rem 2rem;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.wizard-topbar-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.wizard-topbar-step {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}
.wizard-topbar-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}
.wizard-topbar-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}
.wizard-topbar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
    width: 0%;
}

/* ── Full-viewport steps ── */
.wizard-immersive .wizard-step {
    display: none;
    min-height: 100vh;
    padding: 120px 1.5rem 80px;
}
.wizard-immersive .wizard-step.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: wizardStepIn 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes wizardStepIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Remove card aesthetic ── */
.wizard-immersive .form-section {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}
.wizard-immersive .form-section::before {
    display: none;
}
.wizard-immersive .form-section h2 {
    font-size: 2.4rem;
    color: #f5f5f7;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
    letter-spacing: -0.02em;
}

/* ── Step hero area ── */
.step-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.step-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.step-hero h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: #f5f5f7;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    border: none;
    padding: 0;
}
.step-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin: 0;
}

/* ── Dark inputs ── */
.wizard-immersive .form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.wizard-immersive .form-group input,
.wizard-immersive .form-group select,
.wizard-immersive .form-group textarea {
    padding: 0.95rem 1.1rem;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    font-size: 1rem;
    color: #f5f5f7;
    background: rgba(255,255,255,0.05);
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.wizard-immersive .form-group input:focus,
.wizard-immersive .form-group select:focus,
.wizard-immersive .form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 4px rgba(57,255,20,0.1);
    outline: none;
}
.wizard-immersive .form-group input::placeholder,
.wizard-immersive .form-group textarea::placeholder {
    color: rgba(255,255,255,0.22);
}
.wizard-immersive .form-group select option {
    background: #1a1a1a;
    color: #f5f5f7;
}

/* ── Form grid spacing ── */
.wizard-immersive .form-grid {
    gap: 1.4rem;
}

/* ── Price input ── */
.wizard-immersive .price-input-wrapper {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
}
.wizard-immersive .price-input-wrapper input {
    border: none;
    background: transparent;
}
.wizard-immersive .currency-badge {
    background: rgba(57,255,20,0.12);
    color: var(--accent);
    border-color: rgba(255,255,255,0.08);
}

/* ── Amenities: pill toggles ── */
.wizard-immersive .amenities-grid {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 0.65rem;
}
.wizard-immersive .amenity-item {
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 0.6rem 1.1rem;
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
    transition: all 0.2s;
}
.wizard-immersive .amenity-item:hover {
    background: rgba(57,255,20,0.06);
    border-color: rgba(57,255,20,0.3);
    color: rgba(255,255,255,0.8);
}
.wizard-immersive .amenity-item:has(input:checked) {
    background: rgba(57,255,20,0.1);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 500;
}
.wizard-immersive .amenity-check {
    display: none;
}

/* ── Voiceover toggle cards ── */
.wizard-immersive .vo-toggle-btn {
    border: 1.5px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    color: rgba(255,255,255,0.6);
}
.wizard-immersive .vo-toggle-btn:hover {
    border-color: rgba(57,255,20,0.3);
    background: rgba(57,255,20,0.05);
}
.wizard-immersive .vo-toggle-btn.active {
    border-color: var(--accent);
    background: rgba(57,255,20,0.08);
    box-shadow: 0 0 0 1px var(--accent), 0 4px 20px rgba(57,255,20,0.1);
    color: #f5f5f7;
}
.wizard-immersive .vo-toggle-label { color: inherit; }
.wizard-immersive .vo-toggle-desc { color: rgba(255,255,255,0.35); }
.wizard-immersive .vo-switch-label { color: rgba(255,255,255,0.8); }
.wizard-immersive .vo-section-divider { background: rgba(255,255,255,0.06); }
.wizard-immersive .vo-options { border-color: rgba(255,255,255,0.06); }

/* ── Photo upload areas ── */
.wizard-immersive .photo-upload-area {
    border: 2px dashed rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
}
.wizard-immersive .photo-upload-area:hover {
    border-color: var(--accent);
    background: rgba(57,255,20,0.04);
}
.wizard-immersive .photo-upload-text { color: rgba(255,255,255,0.45); }
.wizard-immersive .photo-upload-text strong { color: rgba(255,255,255,0.7); }
.wizard-immersive .photo-upload-icon svg { stroke: rgba(255,255,255,0.25); }
.wizard-immersive .photo-section-subtitle { color: rgba(255,255,255,0.35); }
.wizard-immersive .cover-badge { background: var(--accent); color: #0a0a0a; }
.wizard-immersive .photo-guidance-reel,
.wizard-immersive .photo-guidance-tour {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
}
.wizard-immersive .photo-guidance-reel strong,
.wizard-immersive .photo-guidance-tour strong { color: rgba(255,255,255,0.85); }
.wizard-immersive .photo-count-warning {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.2);
    color: #fca5a5;
}

/* Additional formats section */
.additional-formats-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Photo preview items */
.wizard-immersive .photo-preview-item {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}
.wizard-immersive .photo-preview-item .rotate-btn,
.wizard-immersive .photo-preview-item .remove-btn {
    background: rgba(0,0,0,0.7);
    color: #f5f5f7;
}

/* ── Navigation buttons ── */
.wizard-immersive .wizard-nav {
    border-top: none;
    margin-top: 2.5rem;
    padding-top: 0;
    justify-content: center;
    gap: 1rem;
    max-width: 680px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.wizard-immersive .wizard-nav.end-only {
    justify-content: center;
}
.wizard-immersive .btn-wizard-next {
    background: var(--accent);
    color: #0a0a0a;
    border: none;
    padding: 0.95rem 2.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 20px rgba(57,255,20,0.2);
    letter-spacing: 0.02em;
}
.wizard-immersive .btn-wizard-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(57,255,20,0.3);
}
.wizard-immersive .btn-wizard-back {
    background: transparent;
    color: rgba(255,255,255,0.45);
    border: 1.5px solid rgba(255,255,255,0.12);
    padding: 0.95rem 2rem;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.2s;
}
.wizard-immersive .btn-wizard-back:hover {
    color: #f5f5f7;
    border-color: rgba(255,255,255,0.25);
}
.wizard-immersive .btn-submit {
    background: var(--accent);
    color: #0a0a0a;
    font-size: 1rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    box-shadow: 0 4px 25px rgba(57,255,20,0.25);
    border: none;
}
.wizard-immersive .btn-submit:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    box-shadow: 0 8px 35px rgba(57,255,20,0.35);
}

/* ── Error states ── */
.wizard-immersive .form-group input.input-error,
.wizard-immersive .form-group select.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}
.wizard-immersive .error-box {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.3);
    color: #fca5a5;
    max-width: 680px;
    margin: 100px auto 0;
}

/* ── Misc dark overrides ── */
.wizard-immersive .submit-hint { color: rgba(255,255,255,0.3); }
.wizard-immersive .footer { color: rgba(255,255,255,0.15); background: transparent; border-top: 1px solid rgba(255,255,255,0.04); }
.wizard-immersive .required { color: var(--accent); }
.wizard-immersive .form-group .required { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .wizard-immersive .wizard-step { padding: 100px 0 60px; }
    .wizard-immersive .form-section { padding: 0 1.25rem; }
    .step-hero h2 { font-size: 1.9rem; }
    .wizard-immersive .form-grid { grid-template-columns: 1fr; }
    .wizard-immersive .amenities-grid { grid-template-columns: 1fr 1fr; }
    .wizard-immersive .wizard-nav { flex-direction: column; gap: 0.75rem; padding: 0 1.25rem; }
    .wizard-immersive .btn-wizard-next,
    .wizard-immersive .btn-wizard-back,
    .wizard-immersive .btn-submit { width: 100%; text-align: center; justify-content: center; }
    .wizard-immersive .photo-sections { grid-template-columns: 1fr; }
    .wizard-topbar { padding: 0.5rem 1rem; }
}
