/* ===== WIZARD PAGE ===== */
.wizard-hero {
    position: relative;
    height: 35vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.wizard-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1920&q=80') center/cover no-repeat;
}

.wizard-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92,64,51,0.75), rgba(139,115,85,0.6));
}

.wizard-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 2rem;
}

.wizard-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.wizard-hero-content p {
    font-size: 1rem;
    opacity: 0.85;
    letter-spacing: 1px;
}

/* STEPS INDICATOR */
.wizard-steps-bar {
    background: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 15px rgba(92,64,51,0.08);
    position: sticky;
    top: 60px;
    z-index: 50;
}

.wizard-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.wz-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
    transition: opacity 0.3s;
}

.wz-step.clickable {
    cursor: pointer;
}

.wz-step.clickable:hover .wz-step-circle {
    border-color: #B8976A;
}

.wz-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #E8DDD3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: #C4A882;
    background: #fff;
    transition: all 0.3s;
    flex-shrink: 0;
}

.wz-step.active .wz-step-circle {
    background: #5C4033;
    border-color: #5C4033;
    color: #fff;
}

.wz-step.done .wz-step-circle {
    background: #6B7B3A;
    border-color: #6B7B3A;
    color: #fff;
}

.wz-step-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #C4A882;
    transition: color 0.3s;
}

.wz-step.active .wz-step-label {
    color: #5C4033;
}

.wz-step.done .wz-step-label {
    color: #6B7B3A;
}

.wz-step-line {
    width: 30px;
    height: 2px;
    background: #E8DDD3;
    margin: 0 0.4rem;
    transition: background 0.3s;
}

.wz-step-line.done {
    background: #6B7B3A;
}

/* WIZARD BODY */
.wizard-body {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 2rem 4rem;
}

.wizard-panel {
    display: none;
    animation: wzFadeIn 0.4s ease;
}

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

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

.wizard-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #5C4033;
    margin-bottom: 0.4rem;
}

.wizard-panel-sub {
    font-size: 0.9rem;
    color: #8B7355;
    margin-bottom: 2rem;
}

/* STEP 1: EXPERIENCES */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.exp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(92,64,51,0.08);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 2px solid transparent;
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(92,64,51,0.15);
    border-color: #B8976A;
}

.exp-card.selected {
    border-color: #5C4033;
    box-shadow: 0 8px 30px rgba(92,64,51,0.2);
}

.exp-card-img {
    height: 180px;
    overflow: hidden;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.exp-card:hover .exp-card-img img {
    transform: scale(1.05);
}

.exp-card-body {
    padding: 1.2rem;
}

.exp-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #5C4033;
    margin-bottom: 0.4rem;
}

.exp-card-body p {
    font-size: 0.82rem;
    color: #6B5E52;
    line-height: 1.5;
}

/* STEP 2: PLAN (PEOPLE + SESSIONS + PRICING) */
.wz-plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(92,64,51,0.1);
}

.wz-plan-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid #F5F0EB;
}

.wz-plan-section:first-child { padding-top: 0; }
.wz-plan-section:last-child { border-bottom: none; padding-bottom: 0; }

.wz-plan-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #B8976A;
    margin-bottom: 1rem;
}

/* People selector */
.wz-people-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.wz-people-opt {
    flex: 1;
    min-width: 70px;
    max-width: 100px;
    text-align: center;
    padding: 1.2rem 0.8rem;
    border: 2px solid #E8DDD3;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.wz-people-opt:hover {
    border-color: #B8976A;
    box-shadow: 0 4px 15px rgba(92,64,51,0.1);
}

.wz-people-opt.selected {
    border-color: #5C4033;
    background: #F5F0EB;
}

.wz-people-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #5C4033;
    line-height: 1;
}

.wz-people-type {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B7355;
    margin-top: 0.3rem;
}

.wz-people-plus .wz-people-num {
    font-size: 1.8rem;
}

/* Custom people input */
.wz-custom-people {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #F5F0EB;
    border-radius: 12px;
    flex-wrap: wrap;
}

.wz-custom-people label {
    font-size: 0.85rem;
    color: #6B5E52;
}

.wz-custom-people input {
    width: 80px;
    padding: 0.6rem;
    border: 1px solid #E8DDD3;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
    background: #fff;
    color: #3A3028;
}

.wz-custom-people input:focus {
    outline: none;
    border-color: #B8976A;
}

.wz-bulk-badge {
    background: #6B7B3A;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wz-bulk-hint {
    font-size: 0.78rem;
    color: #5C4033;
    background: #F5F0EB;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border-left: 3px solid #B8976A;
}

.wz-bulk-hint strong {
    color: #6B7B3A;
}

/* Sessions selector */
.wz-sessions-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    .wz-sessions-options {
        grid-template-columns: 1fr;
    }
}

.wz-sessions-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #8B7355;
    font-style: italic;
    text-align: center;
}

.wz-session-opt {
    border: 2px solid #E8DDD3;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    background: #fff;
}

.wz-session-opt:hover {
    border-color: #B8976A;
    box-shadow: 0 4px 15px rgba(92,64,51,0.1);
}

.wz-session-opt.selected {
    border-color: #5C4033;
    background: #F5F0EB;
}

.wz-session-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.wz-session-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5C4033;
}

.wz-session-discount {
    background: #6B7B3A;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.wz-session-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3A3028;
}

.wz-session-price span {
    font-size: 0.75rem;
    font-weight: 300;
    color: #8B7355;
}

.wz-session-tag {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #B8976A;
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Price breakdown */
.wz-price-breakdown {
    background: #FDFCFB;
    border-radius: 12px;
    padding: 1.5rem !important;
    border: none !important;
}

.wz-price-rows {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wz-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #6B5E52;
}

.wz-price-base {
    text-decoration: line-through;
    color: #C4A882;
}

.wz-price-discount-row {
    color: #6B7B3A;
}

.wz-price-saved {
    font-weight: 500;
    color: #6B7B3A;
}

.wz-price-final-row {
    padding-top: 0.8rem;
    margin-top: 0.4rem;
    border-top: 1px solid #E8DDD3;
    font-weight: 500;
    color: #3A3028;
}

.wz-price-final {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5C4033;
}

.wz-price-total-row {
    padding-top: 0.6rem;
    margin-top: 0.2rem;
    border-top: 2px solid #5C4033;
    font-weight: 600;
    color: #3A3028;
}

.wz-price-total {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5C4033;
}

.wz-price-savings {
    margin-top: 1rem;
    text-align: center;
    padding: 0.7rem;
    background: #e8f5e2;
    border-radius: 10px;
    color: #6B7B3A;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Summary pricing */
.wz-summary-price-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wz-summary-price-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wz-summary-price-label {
    flex: 1;
    font-size: 0.9rem;
    color: #6B5E52;
}

.wz-summary-price-base {
    text-decoration: line-through;
    color: #C4A882;
    font-size: 0.9rem;
}

.wz-summary-price-final {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5C4033;
}

.wz-summary-price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 2px solid #5C4033;
    font-weight: 600;
    font-size: 1.2rem;
    color: #5C4033;
}

/* STEP 3: CALENDAR & SLOTS */
.wz-calendar-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(92,64,51,0.1);
}

.wz-selected-exp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F5F0EB;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.wz-selected-exp img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.wz-selected-exp .info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5C4033;
}

.wz-selected-exp .info p {
    font-size: 0.75rem;
    color: #8B7355;
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.cal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #5C4033;
}

.cal-nav {
    display: flex;
    gap: 0.5rem;
}

.cal-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E8DDD3;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #5C4033;
    font-size: 1.1rem;
}

.cal-nav button:hover {
    background: #5C4033;
    color: #fff;
    border-color: #5C4033;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B7355;
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: default;
    color: #C4A882;
    transition: all 0.2s;
    position: relative;
}

.cal-day.has-slots {
    cursor: pointer;
    color: #3A3028;
    font-weight: 500;
}

.cal-day.has-slots:hover {
    background: #F5F0EB;
}

.cal-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6B7B3A;
}

.cal-day.selected {
    background: #5C4033;
    color: #fff;
}

.cal-day.selected::after {
    background: #B8976A;
}

.cal-day.today {
    border: 2px solid #B8976A;
}

.cal-day.empty {
    visibility: hidden;
}

/* SLOTS */
.wz-slots-panel {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E8DDD3;
}

.wz-slots-panel.visible {
    display: block;
}

.wz-slots-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #5C4033;
    margin-bottom: 1rem;
}

.wz-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}

.wz-slot {
    border: 2px solid #E8DDD3;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.wz-slot:hover {
    border-color: #B8976A;
    box-shadow: 0 4px 15px rgba(92,64,51,0.1);
}

.wz-slot.selected {
    border-color: #5C4033;
    background: #F5F0EB;
}

.wz-slot.full {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.wz-slot-time {
    font-weight: 600;
    font-size: 1.2rem;
    color: #5C4033;
}

.wz-slot-dur {
    font-size: 0.78rem;
    color: #8B7355;
    margin: 0.2rem 0;
}

.wz-slot-spots {
    font-size: 0.75rem;
    color: #6B7B3A;
    font-weight: 500;
}

.wz-slot-spots.full-text {
    color: #c0392b;
}

.wz-no-slots {
    text-align: center;
    padding: 2rem;
    color: #8B7355;
    font-style: italic;
}

/* STEP 3: FORM */
.wz-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(92,64,51,0.1);
    max-width: 550px;
    margin: 0 auto;
}

.wz-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wz-field {
    margin-bottom: 0.5rem;
}

.wz-field.full {
    grid-column: 1 / -1;
}

.wz-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6B5E52;
    margin-bottom: 0.3rem;
}

.wz-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #E8DDD3;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    background: #F5F0EB;
    color: #3A3028;
    transition: border-color 0.3s;
}

.wz-field input:focus {
    outline: none;
    border-color: #B8976A;
    box-shadow: 0 0 0 3px rgba(184,151,106,0.15);
}

/* STEP 4: SUMMARY */
.wz-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(92,64,51,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.wz-summary-section {
    padding: 1.2rem 0;
    border-bottom: 1px solid #F5F0EB;
}

.wz-summary-section:last-child {
    border-bottom: none;
}

.wz-summary-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #B8976A;
    margin-bottom: 0.5rem;
}

.wz-summary-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wz-summary-row img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.wz-summary-row .info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #5C4033;
}

.wz-summary-row .info p {
    font-size: 0.85rem;
    color: #6B5E52;
}

.wz-summary-detail {
    font-size: 0.95rem;
    color: #3A3028;
    line-height: 1.7;
}

/* STEP 5: CONFIRMATION */
.wz-confirm {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 30px rgba(92,64,51,0.1);
}

.wz-confirm-check {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #6B7B3A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.wz-confirm h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #5C4033;
    margin-bottom: 0.8rem;
}

.wz-confirm p {
    font-size: 0.9rem;
    color: #6B5E52;
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.wz-confirm-id {
    font-family: monospace;
    background: #F5F0EB;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #5C4033;
}

/* BUTTONS */
.wz-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.wz-buttons.center {
    justify-content: center;
}

.wz-btn {
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wz-btn-primary {
    background: #5C4033;
    color: #fff;
}

.wz-btn-primary:hover {
    background: #8B7355;
    transform: translateY(-2px);
}

.wz-btn-primary:disabled {
    background: #C4A882;
    cursor: not-allowed;
    transform: none;
}

.wz-btn-back {
    background: transparent;
    color: #8B7355;
    border: 1px solid #E8DDD3;
}

.wz-btn-back:hover {
    border-color: #8B7355;
    color: #5C4033;
}

.wz-btn-outline {
    background: transparent;
    color: #5C4033;
    border: 1px solid #5C4033;
}

.wz-btn-outline:hover {
    background: #5C4033;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-hero-content h1 {
        font-size: 2.2rem;
    }

    .wz-step-label {
        display: none;
    }

    .wz-step-line {
        width: 20px;
    }
}

@media (max-width: 600px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }

    .wizard-hero {
        height: 25vh;
        min-height: 200px;
    }

    .wizard-hero-content h1 {
        font-size: 1.8rem;
    }

    .wizard-body {
        padding: 1.5rem 1rem 3rem;
    }

    .wz-calendar-card,
    .wz-form-card,
    .wz-summary-card,
    .wz-confirm {
        padding: 1.5rem;
    }

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

    .wz-slots-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wz-buttons {
        flex-direction: column-reverse;
    }

    .wz-btn {
        width: 100%;
        justify-content: center;
    }

    .cal-grid {
        gap: 2px;
    }

    .cal-day {
        font-size: 0.8rem;
    }
}

/* MercadoPago payment states */
.wz-payment-error {
    background: #fff0f0;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-align: center;
}

.wz-confirm-pending {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #F0A500;
}

.wz-confirm-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e8e4da;
    border-top-color: #6B7B3A;
    border-radius: 50%;
    animation: wz-spin 0.9s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.wz-confirm-failed {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #c0392b;
    font-weight: 700;
}
