/* ============================================================
   WIZARD.CSS — Miss XV VIP Sales Wizard
   Migrated from inline <style> blocks — TOS-039
   Fonts: Poppins (body), Montserrat (headings), Great Vibes (script)
   ============================================================ */

/* ==========================================================
   1. CSS Variables
   ========================================================== */
:root {
    --wiz-navy:    #000927;
    --wiz-gold:    #EAA121;
    --wiz-purple:  #8B01FD;
    --wiz-purple-light: #a855f7;
    --wiz-dark:    #0a0a1a;
    --wiz-card:    rgba(255,255,255,.04);
    --wiz-border:  rgba(234,161,33,.15);
    --wiz-glass:   rgba(255,255,255,.06);
    --wiz-glass-border: rgba(255,255,255,.12);
    --wiz-radius:  16px;
    --wiz-glow:    0 0 30px rgba(139,1,253,.25);
    --wiz-transition: .3s ease;
    --wiz-white:   #ffffff;
    --wiz-white-dim: rgba(255,255,255,.55);
    --font-body:   'Poppins', sans-serif;
    --font-heading:'Montserrat', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

/* ==========================================================
   2. Reset / Base
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background: var(--wiz-navy);
    color: #e8e8f0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; }

/* ==========================================================
   3. Particles Canvas
   ========================================================== */
#particles-canvas {
    position: fixed; inset: 0;
    z-index: 0; pointer-events: none;
}

/* ==========================================================
   4. Layout (wrapper, main, sidebar)
   ========================================================== */
.wiz-wrapper {
    position: relative; z-index: 1;
    min-height: 100vh;
    padding-bottom: 100px;
}
.wiz-main    { padding-top: 0; max-width: 800px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wiz-sidebar { display: none; }
.wiz-inline-princess { display: none; }
.wiz-inline-bubble { display: none; }

/* ==========================================================
   5. Progress Bar
   ========================================================== */
.wiz-progress {
    display: flex; justify-content: center; gap: 8px;
    padding: 24px 0 20px;
}
.wiz-progress__pill {
    width: 48px; height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.12);
    transition: background .4s, box-shadow .4s;
    cursor: pointer;
}
.wiz-progress__pill.is-active {
    background: var(--wiz-gold);
    box-shadow: 0 0 12px rgba(234,161,33,.5);
}
.wiz-progress__pill.is-done {
    background: var(--wiz-purple);
}

/* ==========================================================
   6. Steps (generic)
   ========================================================== */
.wiz-step {
    display: none;
    animation: fadeUp .5s ease both;
}
.wiz-step.is-visible { display: block; }

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

.wiz-step h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--wiz-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wiz-step .wiz-subtitle {
    color: rgba(255,255,255,.55);
    margin-bottom: 28px;
    font-size: .95rem;
}

/* Steps 2-5: centered layout */
.wiz-step:not([data-step="1"]) {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 60px 0;
}

/* ==========================================================
   7. Step 1: Hero (Sintra-style)
   ========================================================== */
.wiz-step[data-step="1"] {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0 !important;
    animation: none !important;
    background: var(--wiz-navy);
}
.wiz-step[data-step="1"]:not(.is-visible) {
    display: none;
    position: static;
}
.wiz-step[data-step="1"] .wiz-hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%; max-width: 1300px;
    margin: 0 auto; padding: 60px 60px 30px;
    min-height: 100vh;
}

/* LEFT: Brand + headline + form */
.wiz-hero-left {
    padding-right: 40px;
}
.wiz-hero-brand {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: rgba(234,161,33,.25);
    line-height: 1;
    margin-bottom: 8px;
}
.wiz-hero-left h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem) !important;
    line-height: 1.2 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    margin-bottom: 6px !important;
    font-weight: 700 !important;
}
.wiz-hero-left .wiz-subtitle {
    font-size: .82rem !important;
    color: rgba(255,255,255,.45) !important;
    margin-bottom: 10px !important;
    max-width: 420px;
}
.wiz-hero-left .wiz-field { margin-bottom: 8px; }
.wiz-hero-left .wiz-field label {
    font-size: .72rem;
    color: var(--wiz-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 3px;
}
.wiz-hero-left .wiz-pills { gap: 5px; }
.wiz-hero-left .wiz-pill { padding: 6px 12px; font-size: .75rem; }
.wiz-hero-left .wiz-btn--primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}
.wiz-hero-left .wiz-actions { margin-top: 10px; }
.wiz-hero-left .wiz-input { padding: 9px 12px; font-size: .9rem; }
.wiz-hero-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wiz-hero-trust {
    margin-top: 16px;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}

/* RIGHT: Hada character */
.wiz-hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    min-height: 500px;
    overflow: visible;
    padding-top: 60px;
}
.wiz-hero-hada {
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(139,1,253,.4)) drop-shadow(0 0 120px rgba(234,161,33,.15));
    animation: princessFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.wiz-hero-hada-glow {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 6px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(139,1,253,.4), transparent 70%);
}

/* ==========================================================
   8. Step 2: Theme Carousel
   ========================================================== */
.wiz-step[data-step="2"] {
    padding: 4px 0 0 !important;
    max-width: 100% !important;
}
.wiz-step[data-step="2"] > h2 {
    padding-left: 24px;
}

/* Carousel breaks out of wiz-main */
.wiz-carousel-wrap {
    position: relative;
    width: 860px;
    max-width: 100vw;
    margin-left: calc(-430px + 50%);
    margin-bottom: 12px;
    padding: 0 16px;
    box-sizing: border-box;
}
.wiz-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px;
    width: 100%;
}
.wiz-carousel::-webkit-scrollbar { display: none; }
.wiz-carousel-arrow {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(53,48,51,.85);
    border: none;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.wiz-carousel-prev { left: 28px; }
.wiz-carousel-next { right: 28px; }
.wiz-carousel-arrow:hover {
    background: rgba(234,161,33,.35);
    color: #fff;
}

/* Theme slides */
.wiz-theme-slide {
    flex: 0 0 calc(33.333% - 12px);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color .3s, transform .25s, box-shadow .3s;
    background: #000;
    position: relative;
    align-self: flex-start;
}
.wiz-theme-slide:hover {
    transform: translateY(-4px);
    border-color: rgba(234,161,33,.3);
}
.wiz-theme-slide.is-selected {
    border-color: var(--wiz-gold);
    box-shadow: 0 0 30px rgba(234,161,33,.4), 0 0 60px rgba(234,161,33,.15);
    transform: scale(1.02);
}
.wiz-theme-slide.is-selected::after {
    content: 'Seleccionada'; position: absolute; top: 12px; right: 12px; z-index: 5;
    background: var(--wiz-gold); color: var(--wiz-navy);
    font-size: .65rem; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: .04em;
}
.wiz-theme-slide img, .wiz-theme-slide video {
    width: 100%;
    display: block;
    max-height: calc(100vh - 260px);
    object-fit: cover;
}
.wiz-theme-slide__name {
    padding: 6px 10px;
    font-size: .85rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
.wiz-theme-slide__price {
    font-size: .8rem;
    color: var(--wiz-gold);
    font-weight: 600;
}

/* Personalizada card - special style */
.wiz-theme-slide--custom {
    background: linear-gradient(135deg, rgba(139,1,253,.15), rgba(234,161,33,.08));
    border-color: rgba(139,1,253,.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 20px;
}
.wiz-theme-slide--custom .wiz-custom-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wiz-purple), var(--wiz-gold));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 1.8rem;
}
.wiz-theme-slide--custom h3 {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--wiz-gold);
    margin-bottom: 8px;
}
.wiz-theme-slide--custom p {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin-bottom: 12px;
}
.wiz-theme-slide--custom:hover {
    border-color: var(--wiz-purple);
}

.wiz-step[data-step="2"] .wiz-actions {
    margin-top: 24px;
    padding: 20px 20px 80px;
    text-align: center;
}

/* Theme grid (legacy/alt for step 2) */
.wiz-theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.wiz-theme-card {
    position: relative;
    border: 2px solid transparent;
    border-radius: var(--wiz-radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color .3s, transform .25s;
    background: var(--wiz-card);
}
.wiz-theme-card:hover { transform: translateY(-4px); border-color: var(--wiz-border); }
.wiz-theme-card.is-selected {
    border-color: var(--wiz-gold); border-width: 3px;
    box-shadow: 0 0 25px rgba(234,161,33,.5), 0 0 50px rgba(234,161,33,.2);
    transform: scale(1.03);
}
.wiz-theme-card.is-selected::after {
    content: '\2713 Seleccionada';
    position: absolute; top: 12px; right: 12px; z-index: 5;
    background: var(--wiz-gold); color: var(--wiz-navy);
    font-size: .7rem; font-weight: 700; padding: 4px 12px;
    border-radius: 20px; letter-spacing: .03em;
}
.wiz-theme-card img {
    width: 100%; aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}
.wiz-theme-card__name {
    padding: 8px 10px;
    font-size: .82rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Demo iframe */
.wiz-demo-frame {
    width: 100%; height: 580px;
    border: 2px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    background: #000;
    margin-bottom: 20px;
    display: none;
}
.wiz-demo-frame.is-visible { display: block; }

/* Tabs */
.wiz-tabs { display: flex; gap: 4px; margin-bottom: 24px; }
.wiz-tab {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--wiz-border);
    border-radius: 10px 10px 0 0;
    background: transparent;
    color: rgba(255,255,255,.5);
    font-family: var(--font-body);
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s;
}
.wiz-tab.is-active {
    background: rgba(255,255,255,.06);
    color: var(--wiz-gold);
    border-bottom-color: transparent;
    font-weight: 600;
}
.wiz-tab-panel { display: none; }
.wiz-tab-panel.is-active { display: block; }

/* Custom explanation (tab 2 of step 2) */
.wiz-custom-explain {
    background: var(--wiz-card);
    border: 1px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    padding: 32px;
    text-align: center;
}
.wiz-custom-explain h3 {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--wiz-gold);
    margin-bottom: 12px;
}
.wiz-custom-explain p {
    color: rgba(255,255,255,.6);
    max-width: 480px;
    margin: 0 auto 20px;
    font-size: .95rem;
}

/* ==========================================================
   9. Steps 3-7: Fullscreen service pages
   ========================================================== */
.wiz-step[data-step="3"] { position: fixed; inset: 0; z-index: 80; overflow-y: auto; overflow-x: clip; background: var(--wiz-navy); padding: 0 !important; max-width: 100% !important; }
.wiz-step[data-step="3"]:not(.is-visible) { display: none; position: static; }
.wiz-std-breakout { max-width: 1300px; width: 100%; margin: 0 auto; padding: 56px 50px 20px; }
.wiz-std-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.wiz-std-grid video { max-height: 340px; }
.wiz-std-thumb { flex: 1 1 0; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; position: relative; transition: border-color .3s; }
.wiz-std-thumb.is-active { border-color: #EAA121; }
.wiz-std-thumb:hover { border-color: rgba(234,161,33,.5); }
.wiz-std-thumb video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; pointer-events: none; }
.wiz-video-grid { display: grid; grid-template-columns: 180px 1fr; gap: 20px; margin-bottom: 12px; }

/* Steps 4-8: same fullscreen layout */
.wiz-step[data-step="4"],
.wiz-step[data-step="5"],
.wiz-step[data-step="6"],
.wiz-step[data-step="7"],
.wiz-step[data-step="8"] { position: fixed; inset: 0; z-index: 80; overflow-y: auto; overflow-x: clip; background: var(--wiz-navy); padding: 0 !important; max-width: 100% !important; }
.wiz-step[data-step="4"]:not(.is-visible),
.wiz-step[data-step="5"]:not(.is-visible),
.wiz-step[data-step="6"]:not(.is-visible),
.wiz-step[data-step="7"]:not(.is-visible),
.wiz-step[data-step="8"]:not(.is-visible) { display: none; position: static; }

/* ==========================================================
   10. Form Controls
   ========================================================== */
.wiz-field { margin-bottom: 20px; }
.wiz-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
}
.wiz-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--wiz-border);
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}
.wiz-input:focus {
    border-color: var(--wiz-gold);
    box-shadow: 0 0 0 3px rgba(234,161,33,.15);
}

/* Pills (event type) */
.wiz-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.wiz-pill {
    padding: 10px 24px;
    border: 1px solid var(--wiz-border);
    border-radius: 999px;
    background: transparent;
    color: #ccc;
    font-family: var(--font-body);
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s;
}
.wiz-pill:hover { border-color: var(--wiz-gold); color: #fff; }
.wiz-pill.is-selected {
    background: linear-gradient(135deg, var(--wiz-gold), var(--wiz-purple));
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

/* ==========================================================
   11. Buttons
   ========================================================== */
.wiz-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    border: none; border-radius: 999px;
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 600;
    cursor: pointer;
    transition: transform .2s, box-shadow .3s;
}
.wiz-btn:hover { transform: translateY(-2px); }
.wiz-btn:active { transform: translateY(0); }

.wiz-btn--primary {
    background: linear-gradient(135deg, var(--wiz-gold), #d4911c);
    color: var(--wiz-navy);
    box-shadow: 0 4px 20px rgba(234,161,33,.35);
}
.wiz-btn--primary:hover { box-shadow: 0 6px 28px rgba(234,161,33,.5); }

.wiz-btn--secondary {
    background: rgba(255,255,255,.08);
    color: #ccc;
    border: 1px solid var(--wiz-border);
}

.wiz-btn--ghost {
    background: transparent;
    color: var(--wiz-gold);
    padding: 14px 20px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wiz-btn--add {
    background: linear-gradient(135deg, var(--wiz-purple), #6b01c5);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139,1,253,.3);
}

.wiz-actions {
    display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap;
}

/* ==========================================================
   12. Service Cards (steps 3-7)
   ========================================================== */
.wiz-service-card {
    background: var(--wiz-card);
    border: 1px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: border-color .3s;
}
.wiz-service-card:hover { border-color: var(--wiz-gold); }
.wiz-service-card__head {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 12px;
}
.wiz-service-card__icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(139,1,253,.2), rgba(234,161,33,.15));
    border-radius: 14px;
    color: var(--wiz-gold);
    flex-shrink: 0;
}
.wiz-service-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}
.wiz-service-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wiz-gold);
    margin-top: 2px;
}
.wiz-service-card__desc {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    margin-bottom: 16px;
}
.wiz-service-card__actions {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.wiz-service-card.is-added {
    border-color: var(--wiz-purple);
    box-shadow: 0 0 20px rgba(139,1,253,.15);
}
.wiz-service-card.is-added .wiz-btn--add {
    background: rgba(255,255,255,.1);
    box-shadow: none;
}

/* ==========================================================
   13. Summary (step 5 / checkout)
   ========================================================== */
.wiz-summary-list { list-style: none; margin-bottom: 24px; }
.wiz-summary-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.wiz-summary-item__name { font-weight: 500; }
.wiz-summary-item__price { font-weight: 700; color: var(--wiz-gold); }
.wiz-summary-item__remove {
    background: none; border: none;
    color: rgba(255,255,255,.3); cursor: pointer;
    font-size: .85rem; margin-left: 12px;
    transition: color .2s;
}
.wiz-summary-item__remove:hover { color: #ff5c5c; }

/* Combo suggestion */
.wiz-combo-banner {
    background: linear-gradient(135deg, rgba(139,1,253,.15), rgba(234,161,33,.1));
    border: 1px solid rgba(139,1,253,.3);
    border-radius: var(--wiz-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
    display: none;
}
.wiz-combo-banner.is-visible { display: block; }
.wiz-combo-banner__badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--wiz-purple);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.wiz-combo-banner__title { font-weight: 700; font-size: 1.05rem; }
.wiz-combo-banner__savings { color: var(--wiz-gold); font-weight: 600; }

/* Discount progress bar */
.wiz-discount-bar {
    margin-bottom: 24px;
}
.wiz-discount-bar__label {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 6px;
}
.wiz-discount-bar__track {
    height: 8px;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    overflow: hidden;
}
.wiz-discount-bar__fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--wiz-purple), var(--wiz-gold));
    transition: width .5s ease;
    width: 0%;
}

/* Totals */
.wiz-totals {
    background: var(--wiz-card);
    border: 1px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}
.wiz-totals__row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    font-size: .95rem;
}
.wiz-totals__row--total {
    border-top: 1px solid var(--wiz-border);
    margin-top: 8px; padding-top: 12px;
    font-size: 1.2rem; font-weight: 700;
}
.wiz-totals__row--total .wiz-totals__val { color: var(--wiz-gold); }
.wiz-totals__row--discount .wiz-totals__val { color: #4cdf8b; }

/* Preview iframe (step 5) */
.wiz-preview-frame {
    width: 100%; height: 500px;
    border: 2px solid var(--wiz-border);
    border-radius: var(--wiz-radius);
    background: #000;
    margin-bottom: 24px;
    display: none;
}

/* ==========================================================
   14. Princess Sidebar
   ========================================================== */
.wiz-princess {
    text-align: center;
    padding-top: 0;
}
.wiz-princess__img {
    width: 140px; height: auto; max-height: 200px;
    filter: drop-shadow(0 0 30px rgba(139,1,253,.5)) drop-shadow(0 0 60px rgba(234,161,33,.2));
    animation: princessFloat 4s ease-in-out infinite;
}
@keyframes princessFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.wiz-princess__glow {
    width: 80px; height: 4px;
    margin: 2px auto 4px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(139,1,253,.35), transparent 70%);
}
.wiz-princess__bubble {
    background: var(--wiz-card);
    border: 1px solid var(--wiz-border);
    border-radius: 14px;
    padding: 14px;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    position: relative;
    line-height: 1.5;
    cursor: pointer;
    transition: border-color .2s;
}
.wiz-princess__bubble:hover { border-color: rgba(234,161,33,.4); color: #EAA121; }
.wiz-princess__bubble::before {
    content: '';
    position: absolute; top: -8px; left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: var(--wiz-border);
}

/* ==========================================================
   15. Hada Sidebar Chat
   ========================================================== */
.hada-sidebar-chat {
    display: none;
    flex-direction: column;
    background: rgba(0,9,39,.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(139,1,253,.2);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-height: 450px;
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.hada-sidebar-chat.is-open { display: flex; }
.hada-sc__messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
    max-height: 260px; min-height: 120px;
}
.hada-msg { font-size: .85rem; line-height: 1.5; padding: 10px 14px; border-radius: 14px; max-width: 90%; white-space: pre-line; }
.hada-msg--bot { align-self: flex-start; background: rgba(139,1,253,.1); border: 1px solid rgba(139,1,253,.15); color: rgba(255,255,255,.85); }
.hada-msg--user { align-self: flex-end; background: rgba(234,161,33,.12); border: 1px solid rgba(234,161,33,.2); color: #EAA121; }
.hada-msg--typing { font-style: italic; color: rgba(255,255,255,.4); font-size: .8rem; }
.hada-sc__chips {
    display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 14px;
    border-top: 1px solid rgba(139,1,253,.08);
}
.hada-chip {
    padding: 6px 14px; border-radius: 20px; font-size: .75rem;
    background: rgba(139,1,253,.08); border: 1px solid rgba(139,1,253,.15);
    color: rgba(255,255,255,.6); cursor: pointer; font-family: 'Poppins',sans-serif;
    transition: all .2s;
}
.hada-chip:hover { background: rgba(139,1,253,.2); color: #fff; }
.hada-sc__input {
    display: flex; gap: 8px; padding: 12px 14px;
    border-top: 1px solid rgba(139,1,253,.1);
}
.hada-sc__input input {
    flex: 1; padding: 10px 14px; border-radius: 12px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    color: #fff; font-family: 'Poppins',sans-serif; font-size: .85rem; outline: none;
}
.hada-sc__input input:focus { border-color: rgba(139,1,253,.3); }
.hada-sc__input input::placeholder { color: rgba(255,255,255,.2); }
.hada-sc__input button {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, #8B01FD, #a855f7);
    border: none; color: #fff; font-size: 1rem; cursor: pointer;
    transition: filter .2s;
}
.hada-sc__input button:hover { filter: brightness(1.2); }

/* ==========================================================
   16. Sticky Cart Bar
   ========================================================== */
.wiz-cart-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(0,9,39,.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--wiz-border);
    padding: 12px 24px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    transform: translateY(100%);
    transition: transform .4s ease;
}
.wiz-cart-bar.is-visible { transform: translateY(0); }
.wiz-cart-bar__pills {
    display: flex; gap: 8px; flex-wrap: nowrap;
    flex: 1; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.wiz-cart-bar__pill {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: .75rem;
    color: #ccc;
    white-space: nowrap; flex-shrink: 0;
}
.wiz-cart-bar__pill-remove {
    background: none; border: none;
    color: rgba(255,255,255,.3);
    cursor: pointer;
    font-size: .75rem;
}
.wiz-cart-bar__total {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--wiz-gold);
    white-space: nowrap;
}

/* ==========================================================
   17. Step 8: Checkout
   ========================================================== */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; }
.checkout-left h2 { font-size: 1.4rem; margin-bottom: 2px; }
.checkout-left .wiz-subtitle { color: rgba(255,255,255,.5); margin-bottom: 16px; font-size: .85rem; }
.checkout-section { margin-bottom: 18px; }
.checkout-section h3 { font-size: .92rem; font-weight: 600; color: #EAA121; margin-bottom: 8px; }
.checkout-field { margin-bottom: 8px; }
.checkout-field label { display: block; font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.checkout-field input, .checkout-field select { width: 100%; padding: 10px 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: #fff; font-size: .85rem; font-family: 'Poppins',sans-serif; }
.checkout-field input:focus, .checkout-field select:focus { outline: none; border-color: #EAA121; }
.checkout-payment-opts { display: flex; gap: 8px; margin-bottom: 8px; }
.checkout-pay-btn { flex: 1; padding: 10px; background: rgba(255,255,255,.06); border: 2px solid rgba(255,255,255,.12); border-radius: 8px; color: rgba(255,255,255,.7); font-size: .8rem; font-family: 'Poppins',sans-serif; cursor: pointer; text-align: center; transition: all .3s; }
.checkout-pay-btn.is-selected { border-color: #EAA121; color: #EAA121; background: rgba(234,161,33,.08); }
.checkout-pay-btn:hover { border-color: rgba(234,161,33,.5); }
.order-summary { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 20px; position: sticky; top: 70px; }
.order-summary h3 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; color: #fff; }
.order-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.order-item:last-child { border-bottom: none; }
.order-item__name { font-size: .82rem; color: rgba(255,255,255,.8); }
.order-item__price { font-size: .82rem; color: #EAA121; font-weight: 600; }
.order-item__remove { background: none; border: none; color: rgba(255,255,255,.3); font-size: .65rem; cursor: pointer; margin-left: 6px; }
.order-item__remove:hover { color: #ff4444; }
.order-totals { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.order-totals__row { display: flex; justify-content: space-between; padding: 3px 0; font-size: .85rem; color: rgba(255,255,255,.6); }
.order-totals__row--discount { color: #4ade80; }
.order-totals__row--total { font-size: 1.1rem; font-weight: 700; color: #fff; padding-top: 10px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,.15); }
.order-totals__row--total .order-totals__val { color: #EAA121; font-size: 1.2rem; }
.checkout-submit { width: 100%; padding: 14px; background: #EAA121; color: #000; font-size: 1rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; margin-top: 14px; font-family: 'Poppins',sans-serif; transition: all .3s; }
.checkout-submit:hover { background: #d4911a; transform: translateY(-1px); }
.checkout-secure { text-align: center; margin-top: 8px; font-size: .7rem; color: rgba(255,255,255,.3); }
.checkout-back { text-align: center; margin-top: 8px; }

/* ==========================================================
   18. H.A.D.A. Floating Chatbot
   ========================================================== */
.hada-chat {
    position: fixed; bottom: 24px; right: 20px; z-index: 300;
}
.hada-chat__toggle {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #8B01FD, #6a00c4);
    border: 2px solid rgba(234,161,33,.3);
    cursor: pointer; position: relative;
    box-shadow: 0 4px 20px rgba(139,1,253,.4);
    transition: transform .2s, box-shadow .2s;
    display: flex; align-items: center; justify-content: center;
    padding: 0; overflow: hidden;
}
.hada-chat__toggle:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(139,1,253,.6); }
.hada-chat__avatar {
    width: 48px; height: 48px;
    object-fit: contain;
}
.hada-chat__badge {
    position: absolute; top: -2px; right: -2px;
    width: 18px; height: 18px; border-radius: 50%;
    background: #EAA121; color: #000927;
    font-size: .65rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.hada-chat__window {
    display: none; position: absolute; bottom: 70px; right: 0;
    width: 360px; height: 480px;
    background: rgba(0,9,39,.97); backdrop-filter: blur(16px);
    border: 1px solid rgba(139,1,253,.2); border-radius: 16px;
    flex-direction: column; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.hada-chat__window.is-open { display: flex; }

.hada-chat__header {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px; border-bottom: 1px solid rgba(139,1,253,.1);
    font-weight: 600; font-size: .85rem; color: #EAA121;
}
.hada-chat__close {
    margin-left: auto; background: none; border: none;
    color: rgba(255,255,255,.4); font-size: 1.2rem; cursor: pointer;
}

.hada-chat__messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.hada-chat__messages .hada-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: .82rem; line-height: 1.5; white-space: pre-line; }
.hada-chat__messages .hada-msg--bot {
    align-self: flex-start; background: rgba(139,1,253,.1);
    border: 1px solid rgba(139,1,253,.15); color: rgba(255,255,255,.85);
}
.hada-chat__messages .hada-msg--user {
    align-self: flex-end; background: rgba(234,161,33,.12);
    border: 1px solid rgba(234,161,33,.2); color: #EAA121;
}
.hada-chat__messages .hada-msg--typing { font-style: italic; color: rgba(255,255,255,.4); }

.hada-chat__chips {
    display: flex; gap: 6px; padding: 8px 12px; overflow-x: auto;
    border-top: 1px solid rgba(139,1,253,.08);
}
.hada-chat__chips .hada-chip {
    white-space: nowrap; padding: 5px 12px; border-radius: 20px;
    background: rgba(139,1,253,.08); border: 1px solid rgba(139,1,253,.15);
    color: rgba(255,255,255,.6); font-size: .7rem; cursor: pointer;
    font-family: 'Poppins', sans-serif; transition: all .2s;
}
.hada-chat__chips .hada-chip:hover { background: rgba(139,1,253,.2); color: #fff; }

.hada-chat__input {
    display: flex; gap: 8px; padding: 10px 12px;
    border-top: 1px solid rgba(139,1,253,.1);
}
.hada-chat__input input {
    flex: 1; padding: 10px 14px; border-radius: 12px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    color: #fff; font-family: 'Poppins', sans-serif; font-size: .82rem; outline: none;
}
.hada-chat__input input:focus { border-color: rgba(139,1,253,.3); }
.hada-chat__input input::placeholder { color: rgba(255,255,255,.2); }
.hada-chat__input button {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #8B01FD, #a855f7);
    border: none; color: #fff; font-size: 1.1rem; cursor: pointer;
    transition: filter .2s;
}
.hada-chat__input button:hover { filter: brightness(1.2); }

/* ==========================================================
   19. Responsive Breakpoints
   ========================================================== */

/* --- 900px: Step 1 hero stacks --- */
@media (max-width: 900px) {
    .wiz-step[data-step="1"] .wiz-hero-content {
        grid-template-columns: 1fr;
        padding: 80px 24px 40px;
        text-align: center;
    }
    .wiz-hero-left { padding-right: 0; }
    .wiz-hero-left .wiz-subtitle { margin-left: auto; margin-right: auto; }
    .wiz-hero-left .wiz-pills { justify-content: center; }
    .wiz-hero-right { min-height: auto; order: -1; }
    .wiz-hero-hada { width: 200px; max-height: calc(100vh - 140px); }
    .wiz-hero-brand { font-size: 2.5rem; }

    .wiz-theme-slide { flex: 0 0 calc(50% - 8px); }
}

/* --- 768px: Tablet --- */
@media (max-width: 768px) {
    .wiz-wrapper { padding: 0 16px 140px; }
    .wiz-inline-princess img { width: 90px; }

    .wiz-std-breakout { padding: 70px 20px 80px; }
    .wiz-std-grid { gap: 20px; }

    .checkout-grid { grid-template-columns: 1fr; }
    .order-summary { position: static; }
}

/* --- 600px: Small mobile --- */
@media (max-width: 600px) {
    .wiz-std-grid { grid-template-columns: 1fr; }
    .wiz-step h2 { font-size: 1.35rem; }
    .wiz-theme-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
    .wiz-service-card { padding: 18px; }
    .wiz-btn { padding: 12px 24px; font-size: .9rem; }
    .wiz-cart-bar { padding: 10px 14px; gap: 10px; }
    .wiz-video-grid { grid-template-columns: 1fr; }
    .wiz-video-grid > div:first-child { max-width: 160px; margin: 0 auto; }
    .wiz-std-breakout { width: 100%; margin-left: 0; padding: 70px 16px 80px; }

    .hada-chat__window {
        position: fixed; bottom: 0; right: 0; left: 0; top: 0;
        width: 100vw; height: 100vh; border-radius: 0;
    }
    .hada-chat { bottom: 70px; right: 12px; }
}

/* --- 500px: Extra small --- */
@media (max-width: 500px) {
    .wiz-theme-slide { flex: 0 0 85%; }
    .wiz-carousel-arrow { width: 40px; height: 40px; }
    .wiz-carousel-prev { left: 8px; }
    .wiz-carousel-next { right: 8px; }
}

/* ==========================================================
   20. Utility Classes
   ========================================================== */
.wiz-hidden { display: none !important; }
.wiz-text-gold { color: var(--wiz-gold); }
.wiz-text-dim { color: var(--wiz-white-dim); }
.wiz-mt-sm { margin-top: 12px; }
.wiz-mt-md { margin-top: 24px; }
.wiz-mb-md { margin-bottom: 24px; }
