
[x-cloak] {
    display: none !important;
}

.registration-app {
    height: 80vh;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;

    --accent: #d73366;
    --accent-hover: #bc2957;
    --text-dark: #111827;
    --light-bg: #fff6f9;
    --seminar:#312168;
}

@media (max-width:900px) {
    .registration-app {
    padding: 10px;
    max-height: 100%;
}
}

.registration-app .registration-header {
    padding: 0 20px 12px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

@media (max-width:900px) {
    .registration-app .registration-header{
        padding: 0;
    }
}

.registration-app .registration-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.registration-app .registration-footer {
    border-top: 1px solid #eee;
    padding: 10px;
    flex-shrink: 0;
    background: #fff;
}

.registration-app.registration-wizard .wizard-nav {
    margin-top: 30px;
}

.registration-app .wizard-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f3f3;
    border-color: #ddd;
    color: #999;
}

.registration-app .wizard-nav button:disabled:hover {
    background: #f3f3f3;
    border-color: #ddd;
}

.registration-app .wizard-nav .wizard-next-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.registration-app .wizard-nav .wizard-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    background: #111;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 50;
}

.registration-app .wizard-nav .wizard-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

.registration-app.registration-wizard .btn {
    appearance: none;
    border: 2px solid #e5e5e5;
    background: #ad1515; /* DEBUG change to white*/
    color: #222;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

/* Disable text selection on clickable cards */
.registration-app .venue-card,
.registration-app .workshop-card,
.registration-app .extra-card,
.registration-app .package-card,
.registration-app .role-card,
.registration-app .wizard-settings {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.registration-app.registration-wizard .price-base-label {
    font-weight: 400;
    font-size: 0.8rem;
    color: gray;
}

/* ========================= WIZARD HEADER ========================= */
/* Stepper*/
.registration-app .wizard-stepper {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.registration-app .wizard-stepper-line {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e5e5;
    z-index: 1;
}

.registration-app .wizard-stepper-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--accent);
    transition: width 0.25s ease;
}

.registration-app .wizard-stepper-item {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.registration-app .wizard-stepper-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin: 0 auto 6px;
}

.registration-app .wizard-stepper-item.is-active .wizard-stepper-circle,
.registration-app .wizard-stepper-item.is-completed .wizard-stepper-circle {
    background: var(--bde-palette-color-1-720ed3ed-c2f4-4077-a756-bbea66d2e9d6);
    color: #fff;
}

.registration-app .wizard-step-label {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.registration-app .wizard-stepper-item.is-active .wizard-step-label {
    color: var(--bde-palette-color-1-720ed3ed-c2f4-4077-a756-bbea66d2e9d6);
    font-weight: 600;
}

@media (max-width: 900px) {

    .registration-app .wizard-stepper {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        height: auto;
        margin: 0;
    }

    .registration-app .wizard-stepper-line {
        display: none;
    }

    .registration-app .wizard-stepper-item {
        position: static;
        transform: none;
        display: none;
    }

    .registration-app .wizard-stepper-item.is-active {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .registration-app .wizard-stepper-item.is-active {
        order: 1;
    }

    .registration-app .wizard-stepper-circle {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .registration-app .wizard-step-label {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
    }

}

.registration-app .wizard-step-counter {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 6px;
}

@media (min-width: 901px) {
    .registration-app .wizard-step-counter {
        display: none;
    }
}


/* Wizard settings */
.registration-app .wizard-settings {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
}

.registration-app .wizard-settings .settings-first,
.registration-app .wizard-settings .settings-second{
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-app .wizard-skip-btn {
    background: transparent;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.registration-app .wizard-skip-btn:hover {
    color: var(--accent);
}

/* Divider */
.registration-app .wizard-divider {
    width: 1px;
    height: 28px;
    background: #e5e5e5;
    opacity: 0.8;
}

.registration-app .wizard-mini-summary {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.registration-app.registration-wizard .wizard-current-package-label {
    font-weight: 500;
    opacity: 0.8;
}

/* Totals */
.registration-app .wizard-total {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
    font-size: 0.95rem;
}

.registration-app .wizard-price-old {
    color: #999;
    text-decoration: line-through;
}

.registration-app .wizard-price-final {
    font-weight: 700;
    color: #111;
}

.registration-app .wizard-promo-pill {
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 999px;
    font-weight: 600;
}

.registration-app .wizard-promo-remove {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #999;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.registration-app .wizard-promo-remove:hover {
    color: var(--accent);
}

/* Currency switch*/
.registration-app .wizard-currency-switch {
    display: flex;
    gap: 6px;
}

.registration-app .currency-btn {
    border: 2px solid #d6d6d6;
    background: #fff;
    padding: 10px 20px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 6px;
}

.registration-app .currency-btn.is-active {
    border-color: var(--accent);
    background: #fff6f9;
    font-weight: 600;
}

/* Reset */
.registration-app.registration-wizard .wizard-reset {
    display: flex;
    justify-content: flex-end;
}

.registration-app.registration-wizard .wizard-reset-btn {
    border: 2px solid #d6d6d6;
    background: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    color: #000; 
}

.registration-app.registration-wizard .wizard-reset-btn:hover {
    background-color: #d6d6d6;
    transition: 0.2s;
}

/* ========================= WIZARD BODY ========================= */

/* ======================================
ENTRY STEP ----------------------------
======================================= */
.registration-app.is-entry {
    padding: 0!important;
    overflow: hidden;
}
.registration-app .wizard-entry-layout {
    display: grid!important;
    grid-template-columns: 1fr 1fr!important;
    min-height: 100%;
    width: 100%;
}
@media (max-width:900px) {
    .registration-app .wizard-entry-layout,
    .registration-app .participants-layout {
    grid-template-columns: 1fr!important;
}

.registration-app .wizard-entry-image {
    min-height: 400px;
}

.registration-app .entry-card {
    align-content: center;
}

}

.wizard-entry-message p {
    white-space: pre-line;
}

.registration-app.is-entry .registration-header,
.registration-app.is-entry .registration-footer {
    display: none!important;
}

.registration-app .wizard-entry-closed {
    text-align: center;
}

.registration-app .wizard-entry-closed h3 {
    font-size: 1.5rem;
}

.registration-app .wizard-entry-message {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

.registration-app .wizard-entry-paused {
    opacity: 0.85;
}

.registration-app.is-entry .registration-body {
    padding: 0!important;
}

.registration-app .wizard-entry-image {
    background-image: url('https://www.maytangofestival.eu/wp-content/uploads/2026/02/main-1-1.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.registration-app .wizard-entry-open {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.registration-app .wizard-entry-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.registration-app .entry-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.registration-app .entry-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.registration-app .entry-card p{
    color: #555!important;
}

.registration-app .entry-title-festival {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.registration-app .entry-card h4{
    margin: 0;
}

.registration-app .entry-card:hover {
    background: #f9f9f9;
}

.registration-app.registration-wizard .entry-card.is-selected {
    border-color: var(--accent);
    background: #fff6f9;
}

.registration-app .entry-next-btn {
    margin-top: 10px;
    padding: 18px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
}

.registration-app .entry-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 900px) {
    .registration-app.registration-wizard .wizard-panel.wizard-entry-layout{
        grid-template-columns: 1fr!important;
    }
    
    .registration-app .wizard-entry-image {
        background-image: url('https://www.maytangofestival.eu/wp-content/uploads/2026/02/page-cover.jpg')!important;
        min-height: 200px;
        height: 100%;
    }

    .registration-app .wizard-entry-content {
        padding: 40px;
    }
}

@media (max-width: 497px) {
    .registration-app .wizard-entry-content {
        padding: 20px;
    }
}


/*  Panel layout */
.registration-app.registration-wizard .wizard-panel {
    width: 100%;
    display: block;
    outline: 1px!important;
}

/* All steps except ENTRY */
.registration-app.is-flow .wizard-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.registration-app.registration-wizard .wizard-panel.summary-layout {
    display: flex;
    gap: 20px;
}

@media (max-width:700px){
    .registration-app.registration-wizard .wizard-panel.summary-layout {
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}
}



.registration-app.registration-wizard .wizard-panel.is-compact {
    gap: 12px;
}


/* Common elements */
.registration-app.registration-wizard .wizard-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.registration-app.registration-wizard h3 {
    font-size: 1.35rem !important;
    margin: 0 !important;
}


/* ROLE CARDS */
/* Info box */
.registration-app .wizard-info-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    font-size: 14px;
    color: #555;
}

.registration-app .wizard-info-icon {
    font-size: 16px;
    line-height: 1.2;
    opacity: 0.6;
}

.registration-app .wizard-info-text {
    margin: 0;
}

.registration-app.registration-wizard .role-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.registration-app.registration-wizard .role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    color: #555!important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    
}

.registration-app.registration-wizard .role-card:hover {
    background: #f3f3f3;
}

.registration-app.registration-wizard .role-card.is-selected {
    border-color: var(--accent);
    background: #fff6f9;
    color:#000000;
}

.registration-app.registration-wizard .role-card.is-disabled{
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.registration-app.registration-wizard .role-card.is-disabled:hover {
    background: inherit;
    box-shadow: none;
    transform: none;
}

.registration-app .role-card-icon {
    width: 40px;
    height: 40px;
    opacity: 0.8;
}

.registration-app.registration-wizard .role-card.is-selected .role-card-icon {
    opacity: 1;
}

.registration-app .role-card.role-card--follower .role-card-icon{
    transform: rotate(180deg)!important;
}

@media (max-width: 1230) {
    .registration-app.registration-wizard .role-cards {
        grid-template-columns: 2fr;
    }
}

@media (max-width: 700px) {
    .registration-app.registration-wizard .role-cards {
        grid-template-columns: 1fr;
    }
}


/* ======================================
PARTICIPANTS STEP ----------------------
======================================= */
.registration-app .participants-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: flex-start;
}

.registration-app.registration-wizard .terms-checkbox {
    cursor: pointer;
    color: #555;
}

.registration-app.registration-wizard .terms-box {
    margin-top: 10px;
    padding: 10px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.95rem;
}

.registration-app.registration-wizard .terms-box.is-checked {
    border-color: var(--accent);
}

.registration-app.registration-wizard .terms-help{
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 5px 0;
}

.registration-app .participants-intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.registration-app .participants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width:900px) {
    .registration-app .participants-grid {
    grid-template-columns: 1fr!important;
}
}

.registration-app .participants-subtitle,
.registration-app .participants-required-hint {
    font-size: 0.95rem;
    color: #555;
}


.registration-app .participant-box {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registration-app .participant-box h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.registration-app .participant-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.registration-app .participant-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.registration-app .participant-form .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
}

.registration-app .required {
    color: var(--accent);
}

.registration-app .participant-form input,
.registration-app .participant-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid #e5e5e5;
    font-size: 14px;
}

.form-field--checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
}

.form-field--checkbox input[type="checkbox"] {
    width: 12px;
    height: 12px;
    cursor: pointer;
    accent-color: var(--accent);
}

.form-field--checkbox .form-checkbox-label {
    line-height: 1;
    cursor: pointer;
}

.registration-app .participant-form input:focus,
.registration-app .participant-form select:focus {
    border-color: var(--accent);
    outline: none;
}

.registration-app .participants-feedback {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    color: #664d03;
}

@media (max-width: 640px) {
   
    .participant-form .form-row {
        grid-template-columns: 1fr;
    }
    
}


/* ======================================
PACKAGE STEP ----------------------------
======================================= */
.registration-app .package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width:900px) {
    .registration-app .package-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

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

.registration-app .package-card {
    border: 2px solid #e5e5e5;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.registration-app .package-card:hover {
    background: #f3f3f3;
}

.registration-app.registration-wizard .package-card.is-selected {
    border-color: var(--accent);
    background-color: #fff6f9;
}

.registration-app.registration-wizard .package-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.registration-app.registration-wizard .package-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    flex-grow: 1;
}

.registration-app.registration-wizard .package-footer {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
}

.registration-app.registration-wizard .package-footer .package-price-label {
    display: block;
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 2px;
}

.registration-app.registration-wizard .package-footer .package-price {
    font-size: 16px;
    color: #000;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
}

.registration-app.registration-wizard .package-footer .prices-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: baseline;
}

.registration-app.registration-wizard .package-footer .prices-wrapper .package-price-base {
    text-decoration: line-through; 
    opacity: .6;
    font-size: 0.95rem;
}
.registration-app.registration-wizard .package-footer .prices-wrapper .package-price-current {
    font-size: 1.2rem;
    font-weight: 600; 
}

.registration-app.registration-wizard .package-footer .price-badge {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Promo box */
.registration-app.registration-wizard .promo-box {
    width: 100%;
    border: 2px dashed #e5e5e5;
    border-radius: 10px;
    padding: 14px;
    background: #fafafa;
}

.registration-app.registration-wizard .promo-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.registration-app.registration-wizard .promo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.registration-app.registration-wizard .promo-remove-inline {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.registration-app.registration-wizard .promo-remove-inline:hover {
    text-decoration: underline;
}

.registration-app.registration-wizard .promo-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

@media (max-width:900px) {

    .registration-app.registration-wizard .promo-row {
    display: flex;
    flex-direction: column;
    }
    .registration-app.registration-wizard .promo-btn {

    width: 100%;
    }
}

.registration-app.registration-wizard .promo-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid #e5e5e5;
    font-size: 14px;
}

.registration-app.registration-wizard .promo-input:focus {
    background: #FFFFFF;
    border-color: var(--accent);
}

.registration-app.registration-wizard .promo-btn {
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.registration-app.registration-wizard .promo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.registration-app.registration-wizard .promo-loading {
    font-size: 12px;
    margin-top: 6px;
    color: #666;
}

.registration-app.registration-wizard .promo-error {
    font-size: 12px;
    margin-top: 6px;
    color: #c0392b;
}

.registration-app.registration-wizard .promo-success {
    font-size: 13px;
    margin-top: 6px;
    color: #2c7a3f;
    font-weight: 600;
}


/* ======================================
VENUES STEP ----------------------------
======================================= */
.registration-app.registration-wizard .venue-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.registration-app.registration-wizard .venue-custom-hint {
    display: flex;
    padding: 15px 20px;
    background: #fafafa;
    border: 2px solid #e5e5e5;
    width: fit-content;
    border-radius: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.registration-app.registration-wizard .venue-custom-hint p {
    font-size: 14px;
}

.registration-app.registration-wizard .button-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--accent);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.registration-app.registration-wizard .button-link:hover {
    text-decoration: underline;
    color:var(--accent-hover);
}

.registration-app.registration-wizard .venue-grid--day {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1230px) {
    .registration-app.registration-wizard .venue-grid--day {
        grid-template-columns: repeat(2, 1fr);
    }
    .registration-app.registration-wizard .venue-custom-hint {
    width: 100%;
    }
}

@media (max-width: 600px) {
    .registration-app.registration-wizard .venue-grid--day {
        grid-template-columns: 1fr;
    }
}

.registration-app.registration-wizard .venue-card {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    display: flex;
    flex-direction: row;
    min-height: 150px!important;
}

.registration-app.registration-wizard 
.venue-card.is-locked:not(.is-included) {
    cursor: not-allowed;
    opacity: 0.6;
}

.registration-app.registration-wizard 
.venue-card.is-locked:not(.is-included):hover {
    transform: none;
    box-shadow: none;
}

.registration-app.registration-wizard 
.venue-card.is-included {
    opacity: 1;
    cursor: not-allowed;
}

.registration-app.registration-wizard .venue-card:not(.is-selected):hover .venue-card-body {
    background: #f3f3f3;
}

.registration-app.registration-wizard .venue-card.is-selected {
    border-color: var(--accent);
    background: var(--light-bg);
}

.registration-app.registration-wizard .venue-card.is-included {
    border: 2px solid var(--accent);
    background: var(--light-bg);
}

.registration-app.registration-wizard .venue-card.is-locked {
    cursor: default;
}

.registration-app.registration-wizard .venue-included-badge {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.registration-app.registration-wizard .venue-card-image {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f3f3;
}

.registration-app.registration-wizard .venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.registration-app.registration-wizard .venue-card-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.registration-app.registration-wizard .venue-card-title {
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.registration-app.registration-wizard .venue-card-meta {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 600;
}

.registration-app.registration-wizard .venue-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.registration-app.registration-wizard .venue-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: flex-end;
}

.registration-app.registration-wizard .venue-card-footer .venue-price {
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent);
}

.registration-app.registration-wizard .venue-card-footer .venue-card-hint{
    font-size: 0.85rem;
}

.registration-app.registration-wizard .venue-day-title {
    margin: 12px 0;
    font-size: 1.2rem;
    text-transform: capitalize;
}

/* ======================================
WORKSHOP STEP ----------------------------
======================================= */
.registration-app.registration-wizard .workshop-header {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.registration-app.registration-wizard .workshop-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.registration-app.registration-wizard .workshop-pricing-tiers,
.registration-app.registration-wizard .seminar-info-box{
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    background: #fafafa;
}

.registration-app.registration-wizard .workshop-pricing-tiers h4,
.registration-app.registration-wizard .seminar-info-box h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.registration-app.registration-wizard .workshop-pricing-tiers ul{
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}


.registration-app.registration-wizard .pricing-period-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
}

.registration-app.registration-wizard .period-valentine {
    background: #ffe6ec;
    color: #b8325c;
}

.registration-app.registration-wizard .period-early {
    background: #e6f4ff;
    color: #1e5fa3;
}
/* Couple matching */
.registration-app.registration-wizard .couple-matching-box {
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px;
    background: #fafafa;
    width: fit-content;
}

.registration-app.registration-wizard .couple-matching-box h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
}

.registration-app.registration-wizard .couple-matching-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.95rem;
    cursor: pointer;
}

.registration-app.registration-wizard .couple-matching-option input {
    margin-top: 3px;
}


.registration-app.registration-wizard .workshop-grid {
    display: grid;
    gap: 30px;
}

.registration-app.registration-wizard .workshop-day-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.registration-app .workshop-day-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding-left: 4px;
    margin: 0!important;
    text-transform: capitalize;
}

.registration-app .workshop-grid--day {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.registration-app .workshop-card {
    border: 2px solid #e5e5e5;
    height: 100%;  
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    display: flex;
    min-height: 150px!important;
    overflow: hidden;
    position: relative;
}

.registration-app .workshop-card.is-special .workshop-instructors{
    color: var(--seminar)!important; 
}

.registration-app .workshop-card.is-special .workshop-code-pill{
    background: var(--seminar)!important; 
}

.registration-app .workshop-card.is-special .workshop-card-price{
    color: var(--seminar)!important; 
}

.registration-app .workshop-card.is-selected {
    border-color: var(--accent);
    background: #fff6f9;
}

.registration-app .workshop-card.is-disabled {
    opacity: 0.55;
}

.registration-app .workshop-card.is-disabled:hover {
    cursor: default;
}

.registration-app .workshop-card.is-special.is-selected {
    border-color: #312168!important;
    background: #f6f3ff!important;
}

.registration-app .workshop-badge-special {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 11px;
    font-weight: 600;
    background: #312168;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.registration-app .workshop-badge-full {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    background: #c0392b;
    color: #fff;
    width: fit-content;
}

.registration-app .workshop-code-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    line-height: 1;
}

.registration-app .workshop-card:not(.is-selected):hover .workshop-card-body {
    background: #f3f3f3;
}

.registration-app .workshop-card-image {
    width: 130px;
    min-width: 130px;
    height: 100%;
    background: #f3f3f3;
    overflow: hidden;
    align-self: flex-start; 
}

.registration-app .workshop-card .workshop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.registration-app .workshop-card .workshop-card-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.registration-app .workshop-card .workshop-card-title {
    font-size: 1rem;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.registration-app .workshop-card .workshop-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.registration-app .workshop-card .workshop-card-meta .workshop-instructors {
    font-weight: 500;
    color: var(--accent);
}


.registration-app .workshop-card .workshop-card-meta .workshop-level {
    font-style: italic;
    color: #666;
}

.registration-app .workshop-card .workshop-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.registration-app .workshop-card .workshop-card-footer {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.registration-app .workshop-card .workshop-card-price {
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent);
}

@media (max-width: 1200px) {
    .registration-app .workshop-grid--day {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .registration-app .workshop-grid--day {
        grid-template-columns: 1fr;
    }

    .registration-app .workshop-card-image {
        width: 100%;
        min-width: 120px;
        height: 100%;
    }
}

/* ======================================
THEATRE STEP ----------------------------
======================================= */
/* layout */
.registration-app .wizard-panel--theatre {
    width: 100%;
}

.registration-app .wizard-panel--theatre .theatre-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
}

@media (max-width:1200px) {
.registration-app .wizard-panel--theatre .theatre-layout {
    grid-template-columns: 1fr;
}
}

/* Theatre left */
.registration-app .theatre-rows {
    display: flex;
    flex-direction: column;
    padding-top: 82px;
    gap: 16px;
}

.registration-app .theatre-row-label {
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

/* Main */
.registration-app .theatre-seatmap-wrapper {
    width: 100%;
    overflow: auto;           
    display: block;          
    max-height: 75vh;
    border-radius: 12px;
}

.registration-app .theatre-center {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registration-app .theatre-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.registration-app .theatre-legend .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.registration-app .theatre-legend .legend-seat {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #bdbdbd;
    display: inline-block;
}

.registration-app .theatre-legend .legend-seat.free {
    background: #80cf9b;
    border-color: #58b478;
}

.registration-app .theatre-legend .legend-seat.taken {
    background: #505050;
    border-color: #323232;
}

.registration-app .theatre-legend .legend-seat.blocked {
    background: #9e9e9e;
    border-color: #9e9e9e;
}

.registration-app .theatre-legend .legend-seat.selected {
    background: var(--accent);
    border-color: var(--accent);
}

/* Stage label */
.registration-app .theatre-stage-label {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    background: #ededed;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 6px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #555;
}

/* Seat map */
.registration-app .theatre-row-label {
    position: absolute;
    left: 8px;
    transform: translateY(4px);
    font-size: 12px;
    font-weight: 600;
    color: #666;
    width: 40px;
    text-align: right;
    pointer-events: none;
    transform: translateY(5px);
}

.registration-app .theatre-seatmap {
    position: relative;
    width: 780px;             
    height: 520px;          
    margin: 0 auto;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: visible;
}

.registration-app .theatre-seat {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.registration-app .theatre-seat.is-free {
    background: #8bc9a3;
    border: 1px solid #78b892;
    cursor: pointer;
}

.registration-app .theatre-seat.is-free:hover {
    background: #6bbb88;
}

.registration-app .theatre-seat.is-taken {
    background: #505050;
    border: 1px solid #323232;
    cursor: not-allowed;
    color: #fff;
}

.registration-app .theatre-seat.is-blocked {
    background: #9e9e9e;
    border: 1px solid #9e9e9e;
    cursor: not-allowed;
    opacity: 0.6;
}

.registration-app .theatre-seat.is-selected {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}


/* Sidebar*/
.registration-app .theatre-sidebar {
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    min-width: 400px!important;
}

@media (min-width:900px) {
    .registration-app .theatre-sidebar {
    position: sticky;
    top: 0;
    }
}

.registration-app .theatre-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.registration-app .theatre-sidebar-header h4{
    margin: 0;
}

.registration-app .theatre-clear-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
}

.registration-app .theatre-clear-btn:hover {
    text-decoration: underline;
}

.registration-app .theatre-seat-counter {
    font-size: 0.95rem;
    color: #666;
    margin: 6px 0 12px;
}

.registration-app .theatre-seat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-app .theatre-seat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.registration-app .theatre-seat-label {
    display: flex;
    gap: 4px;
    color: #333;
}

.registration-app .theatre-seat-price {
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

.registration-app .theatre-seat-list li {
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px dashed #ddd;
}

.registration-app .theatre-empty {
    font-size: 13px;
    color: #777;
}

@media (max-width: 900px) {
    .registration-app .theatre-layout {
        grid-template-columns: 1fr;
    }

    .registration-app .theatre-rows {
        display: none;
    }

    .registration-app .theatre-sidebar {
        order: 3;
    }
}



/* ======================================
EXTRAS STEP ----------------------------
======================================= */
.registration-app  .extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.registration-app .extras-group {
    padding-bottom: 40px;
}

.registration-app .extras-group-title {
    margin: 0 0 10px 0;
    text-transform: capitalize;
}

@media (max-width: 1200px) {
    .registration-app .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .registration-app  .extras-grid {
        grid-template-columns: 1fr;
    }
}

.registration-app .extra-card {
    display: flex;
    min-height: 150px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.registration-app  .extra-card.is-selected {
    border-color: var(--accent);
    background: #fff6f9;
}

.registration-app .extra-card.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.registration-app .extra-card.is-disabled * {
    pointer-events: none;
}

.registration-app .extra-card-image {
    width: 110px;
    min-width: 110px;
    aspect-ratio: 1 / 1;
    background: #f3f3f3;
    overflow: hidden;
}

.registration-app .extra-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.registration-app .extra-card-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.registration-app .extra-card:not(.is-selected):hover .extra-card-body {
    background: #f3f3f3;
}

.registration-app .extra-card-body .extra-card-body-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.registration-app .extra-card-body .extra-card-header{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.registration-app .extra-card-header .extra-card-title {
    margin: 0;
    font-size: 1rem;
}

.registration-app .extra-card-header .extra-card-price {
    font-weight: 600;
    white-space: nowrap;
}

.registration-app .extra-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.registration-app  .extra-card-footer {
    display: flex;
    justify-content: flex-end;
    font-weight: 600;
}

.registration-app .extra-card .extra-venues{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
    gap: 5px;
    margin-top: 10px;
}

.registration-app .extra-card .extra-venue-row{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 0.4rem;
}

.registration-app .extra-card .extra-venue-row .extra-venue-name{
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.registration-app .extra-qty {
  display: flex;
  align-items: center;
}

.registration-app .qty-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
  transition: all 0.2s ease;
}

.registration-app .qty-btn:hover {
  background: var(--accent);
  color: #fff;
}

.registration-app .qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}



/* ======================================
SUMMARY STEP ----------------------------
======================================= */
.registration-app .sumamry-main-wrapper {
    height: auto;
}
.registration-app .summary-layout {
    display: flex;
    flex-direction: row!important;
    align-items: flex-start;
    gap: 32px;
    height: 100%;
}

.registration-app .summary-block--package .summary-price {
    color: var(--accent);
}

.registration-app .summary-package-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
}

.registration-app .summary-block--contact {
    margin: 10px 0 20px 0;
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.registration-app .summary-block--contact h4 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.registration-app .summary-block--contact .form-row {
    display: flex;
    gap: 16px;
}

.registration-app .summary-block--contact .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.registration-app .summary-block--contact .form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.registration-app .summary-block--contact input {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.registration-app .summary-block--contact input:focus {
    outline: none;
    border-color: #d73366;
    box-shadow: 0 0 0 2px rgba(215, 51, 102, 0.15);
}

.registration-app .summary-details .terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-app .summary-details .terms-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: unset!important;
}

/* Workshop summary */
.registration-app .summary-mini-heading {
    font-size: 1rem;
    font-weight: 600;
    margin: 5px 0;
    color: #000000;
    background: none!important;
}

.registration-app .summary-workshops-list li {
    padding: 8px 10px;
    border-radius: 6px;
}

.registration-app .summary-workshops-list li:nth-child(odd) {
    background: #f7f7f7;
}

.registration-app .summary-workshop-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.registration-app .summary-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.registration-app .summary-price {
    font-weight: 600;
}

.registration-app .summary-workshops-divider {
    border-top: 1px solid #ddd;
    margin: 12px 0;
}

.registration-app .summary-tier-line,
.registration-app .summary-total-line {
    display: flex;
    justify-content: space-between;
    margin: 4px 0;
}

.registration-app .summary-total-line {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 700px) {
    .registration-app .summary-block--contact .form-row {
        flex-direction: column;
    }
}


.registration-app .summary-details {
    flex: 2;
    width: 100%;
}

.registration-app .summary-details .summary-block{
    max-width: 600px;
}


.registration-app .summary-details .summary-block h4 {
    margin: 10px 0 5px 0;
}

.registration-app .summary-block .summary-workshop-code {
    font-weight: 600;
    margin-right: 6px;
    opacity: 0.75;
    background: var(--light-bg);
    padding: 2px 7px;
    border-radius: 99px;
    font-size: 0.9rem;
    color: var(--accent);
}

.registration-app .summary-block .summary-workshop-code.is-special {
    background: #f6f3ff;
    color:  #312168;
}


.registration-app .summary-block.summary-block--workshops-pricing h4 ,
.registration-app .summary-block.summary-block--venues h4{
    font-size: 1.1rem;
}

.registration-app .summary-details h3 {
    margin: 0 0 10px 0!important;
}

.registration-app .summary-details ul {
    padding-left: 0;
    margin: 5px 0 0 0;
}

.registration-app .summary-block ul li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.registration-app  .summary-subtotal-line{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

.registration-app .summary-tier-line-price {
    color: var(--accent);
}

.registration-app .summary-block.summary-block--payment h4 {
    margin: 0 0 10px 0;
}

.registration-app .summary-block.summary-block--payment .payment-methods {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.registration-app .total-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.registration-app .summary-total {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    gap: 10px;
}

.registration-app .summary-total-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #000000;
    font-weight: 600;
}

.registration-app .summary-total .wizard-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
}

.registration-app .summary-total .wizard-price-final {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.registration-app .summary-total-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
}

.registration-app .wizard-actions--final{
    width: 100%!important;
}

.registration-app .wizard-actions--final .button-primary{
    width: 100%;
    background: var(--accent);
    color: #FFF;
    padding: 20px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.05s ease;
}

.registration-app .wizard-actions--final .button-primary:hover{
    background: var(--accent-hover);
    transition: 0.2s;
}

/* Disabled state */
.registration-app .wizard-actions--final .button-primary:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.85;
    box-shadow: none;
}

.registration-app .wizard-actions--final .button-primary:disabled:hover {
    background: #d1d5db;
}

@media (max-width: 768px) {
    .registration-app  .summary-layout {
        flex-direction: column;
    }

    .registration-app  .summary-total {
        margin-top: 20px;
    }
}

/*Summary STICKY TOTAL*/
@media (min-width: 1024px) {

    .registration-app .summary-layout {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    /* LEFT COLUMN - scrollable */
    .registration-app .summary-details {
        flex: 2;
    }

    /* RIGHT COLUMN - sticky */
    .registration-app .summary-total {
        width: auto;
        position: sticky;
        top: 0;
        align-self: flex-start;
    }
}




/* ===============================
Registration feedback -----------
=============================== */
.registration-success,
.registration-error {
    margin: 10px 0;
    padding: 20px 22px;
    border-radius: 12px;
    text-align: center;
    animation: fadeInUp 0.35s ease;
}

.registration-success {
    background: #f0f8f4;
    border: 1px solid #cfe8db;
}

.registration-success h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e6b4f;
}

.registration-success p {
    margin: 0;
    font-size: 0.95rem;
    color: #2f6f55;
    line-height: 1.5;
}

.registration-error {
    background: #fdecea;
    border: 1px solid #f5c2c7;
}

.registration-error p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #b32d2e;
}

/* subtle entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================= WIZARD FOOTER ========================= */

.registration-app.registration-wizard .wizard-nav {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.registration-app.registration-wizard .wizard-nav button {
    min-width: 50%;
    padding: 20px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.registration-app.registration-wizard .wizard-btn-back {
    background: #f3f3f3;
    color: #333;
}

.registration-app.registration-wizard .wizard-btn-back:hover {
    background: #e5e5e5;
}


.registration-app.registration-wizard .wizard-btn-next {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    width: 100%;
}

.registration-app.registration-wizard .wizard-btn-next:hover {
    background: var(--accent-hover);
}

.registration-app.registration-wizard .wizard-btn-next:disabled {
    width: 100%;
    opacity: 0.5;
    color: #FFF;
    background: var(--accent);
    cursor: not-allowed;
}

.registration-app.registration-wizard .wizard-btn-next:disabled:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .registration-app .registration-body {
        padding-bottom: 90px; /* compensate */
    }

    .registration-app .registration-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        padding: 12px 16px;
        z-index: 1000;
    }

    .registration-app .wizard-nav {
        display: flex;
        gap: 12px;
    }

    .registration-app .wizard-nav button {
        flex: 1;
    }
}

/* General fixes*/
.registration-app .workshop-card-body,
.registration-app .venue-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.registration-app .workshop-card-footer,
.registration-app .venue-card-footer {
    margin-top: auto;
}

/* Success Page*/
.may-tango-payment h1 {
    margin: 0;
    font-size: 2rem;
}

.may-tango-payment p {
    color: #555;
}

@media (max-width:700px) {
  .may-tango-payment h1 {
    font-size: 1.5rem!important;
}  
}
