/* =========================================
   SOTO Events — Modal Registration
   ========================================= */

/* Buy Ticket button */
.soto-buy-wrap { margin: 28px 0; }
.soto-buy-btn {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
    letter-spacing: .3px;
}
.soto-buy-btn:hover { background: #229954; }
.soto-reg-closed-msg { color: #e74c3c; font-weight: 700; font-size: 16px; }

/* ---- Modal overlay ---- */
.soto-ev-modal-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,.55);
    z-index: 9999999 !important;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    overflow-y: auto;
}
.soto-ev-modal-overlay.soto-ev-modal-open {
    display: flex !important;
}

/* Modal box */
.soto-ev-modal {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 660px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    position: relative;
    overflow: hidden;
    margin: auto;
}

/* Modal header */
.soto-ev-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 24px 14px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
}
.soto-ev-modal-title { flex: 1; }
.soto-ev-modal-title span:first-child {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}
.soto-ev-modal-subtitle {
    font-size: 13px !important;
    color: #888 !important;
    font-weight: 400 !important;
    margin-top: 3px;
}
.soto-ev-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    padding: 0 0 0 12px;
    line-height: 1;
    flex-shrink: 0;
}
.soto-ev-modal-close:hover { color: #333; }

/* Step indicator */
.soto-steps {
    display: flex;
    align-items: center;
    padding: 14px 24px 10px;
    flex-shrink: 0;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}
.soto-step { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.soto-step-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #dee2e6;
    color: #888;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.soto-step.active    .soto-step-num { background: #27ae60; color: #fff; }
.soto-step.completed .soto-step-num { background: #27ae60; color: #fff; }
.soto-step-label { font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.soto-step.active    .soto-step-label { color: #27ae60; }
.soto-step.completed .soto-step-label { color: #27ae60; }
.soto-step-line { flex: 1; height: 2px; background: #dee2e6; margin: 0 6px 16px; }
.soto-step-line.active { background: #27ae60; }

/* Modal body */
.soto-ev-modal-body { overflow-y: auto; flex: 1; padding: 20px 24px; }
.soto-ev-modal-step { }
.soto-hidden { display: none !important; }

/* ---- STEP 1 ---- */
.soto-login-notice {
    background: #eafaf1;
    border-left: 4px solid #27ae60;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: 3px;
    font-size: 13px;
}
.soto-login-notice a { color: #27ae60; font-weight: 600; }

.soto-ticket-section {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 16px;
    background: #fff;
}
.soto-ticket-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.soto-ticket-type { font-weight: 700; font-size: 15px; color: #2c3e50; margin: 0 0 3px; }
.soto-ticket-desc { font-size: 13px; color: #888; margin: 0; }
.soto-ticket-qty-price { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.soto-qty-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.soto-qty-wrap label { font-size: 10px; color: #bbb; text-transform: uppercase; letter-spacing: .5px; }
.soto-qty-input {
    width: 46px; text-align: center;
    padding: 5px; border: 1px solid #ddd; border-radius: 4px;
    font-size: 15px; font-weight: 700; background: #f8f8f8; color: #888;
}
.soto-ticket-price-wrap { text-align: right; }
.soto-ticket-price { display: block; font-size: 20px; font-weight: 800; color: #2c3e50; }
.soto-ticket-gst { display: block; font-size: 11px; color: #aaa; margin-top: 1px; }

/* Add-ons */
.soto-addons-section {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 16px;
    background: #fff;
}
.soto-addons-section h4 { margin: 0 0 12px; font-size: 14px; font-weight: 700; color: #2c3e50; }
.soto-optional { font-weight: 400; color: #bbb; font-size: 12px; }
.soto-addon-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; border-top: 1px solid #f5f5f5; gap: 10px;
}
.soto-addon-name { font-weight: 600; font-size: 14px; color: #2c3e50; margin: 0 0 2px; }
.soto-addon-desc { font-size: 12px; color: #bbb; margin: 0; }
.soto-addon-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.soto-addon-price-wrap { text-align: right; }
.soto-addon-price { display: block; font-weight: 700; font-size: 14px; color: #2c3e50; }
.soto-addon-gst { display: block; font-size: 11px; color: #bbb; }
.soto-addon-check {
    display: flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600; color: #27ae60; cursor: pointer;
}
.soto-addon-checkbox { width: 17px; height: 17px; cursor: pointer; accent-color: #27ae60; }

/* Waitlist form (shown on closed/full events) */
.soto-waitlist-form { margin-top: 10px; }
.soto-waitlist-intro { font-size: 13px; color: #e74c3c; margin: 0 0 8px; }
.soto-waitlist-row { display: flex; gap: 8px; flex-wrap: wrap; }
.soto-waitlist-email {
    flex: 1; min-width: 180px; padding: 9px 12px; font-size: 14px;
    border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box;
}
.soto-waitlist-submit {
    background: #27ae60; color: #fff; border: none; padding: 9px 18px;
    border-radius: 5px; font-size: 14px; font-weight: 600; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.soto-waitlist-submit:hover { background: #229954; }
.soto-waitlist-submit:disabled { opacity: 0.7; cursor: default; }
.soto-waitlist-feedback { font-size: 13px; margin: 8px 0 0; }

/* Guest add-on quantity stepper */
.soto-addon-qty {
    display: flex; align-items: center; gap: 6px; margin-top: 6px;
}
.soto-addon-qty-btn {
    width: 24px; height: 24px; border: 1px solid #ccc; background: #fff;
    border-radius: 4px; cursor: pointer; font-size: 14px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    color: #2c3e50; -webkit-tap-highlight-color: transparent;
}
.soto-addon-qty-btn:hover { background: #f2f2f2; }
.soto-addon-qty-input {
    width: 42px; text-align: center; border: 1px solid #ccc; border-radius: 4px;
    padding: 3px 2px; font-size: 13px;
}

/* Session choice checkboxes */
.soto-sessions-section { margin: 4px 0 18px; }
.soto-sessions-section h4 { font-size: 14px; color: #2c3e50; margin: 0 0 10px; }
.soto-session-check {
    display: flex; align-items: baseline; gap: 8px;
    padding: 8px 0; cursor: pointer; font-size: 14px;
}
.soto-session-checkbox { width: 17px; height: 17px; cursor: pointer; accent-color: #27ae60; flex-shrink: 0; }
.soto-session-name { font-weight: 600; color: #2c3e50; }
.soto-session-desc { font-size: 12px; color: #999; }

/* Step 1 footer */
.soto-step1-footer {
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: 4px;
}
.soto-step1-total {
    display: flex; justify-content: space-between;
    font-weight: 800; font-size: 17px; color: #2c3e50; margin-bottom: 4px;
}
.soto-step1-gst-note { font-size: 12px; color: #aaa; margin: 0 0 14px; text-align: right; }

.soto-btn-next {
    width: 100%;
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    outline: none;
}
.soto-btn-next:hover,
.soto-btn-next:focus,
.soto-btn-next:active { background: #229954; }

/* Login for member price link */
.soto-member-login-hint {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}
.soto-member-login-hint a {
    color: #27ae60;
    font-weight: 600;
    text-decoration: underline;
}

/* ---- STEP 2 ---- */
.soto-step2-body { display: flex; gap: 20px; align-items: flex-start; }
.soto-step2-form-col { flex: 1; min-width: 0; }
.soto-step2-summary-col { width: 210px; flex-shrink: 0; }

/* Form sections */
.soto-form-section {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 14px;
}
.soto-form-section h3 {
    margin: 0 0 12px; font-size: 14px; font-weight: 700; color: #2c3e50;
    padding-bottom: 8px; border-bottom: 1px solid #eee;
}
.soto-field-row { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.soto-field-row.two .soto-field { flex: 1 1 calc(50% - 6px); min-width: 140px; }
.soto-field { flex: 1 1 100%; }
.soto-field label { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 4px; }
.soto-field .required { color: #e74c3c; }
.soto-field input[type="text"],
.soto-field input[type="email"],
.soto-field input[type="tel"],
.soto-field select,
.soto-field textarea {
    width: 100%; padding: 8px 10px; border: 1px solid #ddd; border-radius: 4px;
    font-size: 13px; box-sizing: border-box; background: #fff; transition: border-color .2s;
}
.soto-field input:focus, .soto-field select:focus, .soto-field textarea:focus {
    border-color: #27ae60; outline: none; box-shadow: 0 0 0 2px rgba(39,174,96,.1);
}
.soto-field textarea { min-height: 60px; resize: vertical; }
.soto-radio-group { display: flex; gap: 16px; margin-top: 5px; }
.soto-radio-group label { display: flex; align-items: center; gap: 5px; font-weight: normal; font-size: 13px; cursor: pointer; }
.soto-radio-group input[type="radio"] { accent-color: #27ae60; }
.soto-declaration { padding: 12px 16px; }
.soto-checkbox-label { display: flex !important; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; }
.soto-checkbox-label input[type="checkbox"] { accent-color: #27ae60; }
.soto-checkbox-label a { color: #27ae60; }

/* Order summary sidebar */
.soto-order-summary {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 8px;
    padding: 14px; position: sticky; top: 0;
}
.soto-order-summary h4 {
    margin: 0 0 10px; font-size: 13px; font-weight: 700; color: #2c3e50;
    padding-bottom: 8px; border-bottom: 1px solid #eee;
}
.soto-summary-event { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #f0f0f0; }
.soto-summary-event-name { font-weight: 700; font-size: 13px; margin: 0 0 3px; color: #2c3e50; }
.soto-summary-meta { font-size: 11px; color: #aaa; margin: 1px 0; }
.soto-summary-lines { margin-bottom: 8px; }
.soto-summary-line {
    display: flex; justify-content: space-between;
    font-size: 12px; color: #666; padding: 4px 0; border-bottom: 1px solid #f5f5f5;
}
.soto-summary-total {
    display: flex; justify-content: space-between;
    font-weight: 800; font-size: 14px; color: #2c3e50;
    padding-top: 8px; border-top: 2px solid #27ae60; margin-top: 2px;
}
.soto-summary-gst-note { font-size: 11px; color: #bbb; margin: 4px 0 0; text-align: right; }

/* Modal footer */
.soto-ev-modal-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0 4px; margin-top: 8px; border-top: 1px solid #eee;
}
.soto-btn-back {
    background: none; border: none; color: #888; font-size: 14px;
    cursor: pointer; padding: 8px 0;
}
.soto-btn-back:hover { color: #333; }
.soto-btn-submit {
    background: #27ae60; color: #fff; border: none;
    padding: 12px 24px; font-size: 14px; font-weight: 700;
    border-radius: 6px; cursor: pointer; transition: background .2s;
}
.soto-btn-submit:hover { background: #229954; }
.soto-btn-submit:disabled { background: #aaa; cursor: not-allowed; }

/* Error box */
.soto-form-errors {
    background: #fdf2f2; border-left: 4px solid #e74c3c;
    padding: 10px 14px; margin-bottom: 14px; border-radius: 3px;
}
.soto-form-errors ul { margin: 0; padding-left: 18px; }
.soto-form-errors li { color: #c0392b; font-size: 13px; }
.soto-form-errors p { margin: 0; color: #c0392b; font-size: 13px; }

/* ---- STEP 3 ---- */
.soto-loading { text-align: center; padding: 40px; color: #888; font-size: 15px; }
.soto-step3-wrap { text-align: center; padding: 10px 0; }
.soto-step3-icon {
    width: 56px; height: 56px; background: #27ae60; color: #fff;
    font-size: 26px; font-weight: 700; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.soto-step3-wrap h3 { font-size: 20px; color: #2c3e50; margin: 0 0 8px; }
.soto-step3-wrap > p { font-size: 14px; color: #666; margin-bottom: 18px; }
.soto-payment-summary {
    background: #f8f9fa; border-radius: 8px; padding: 14px 18px;
    margin: 0 auto 20px; max-width: 360px; text-align: left;
}
.soto-gst-note { color: #aaa; font-size: 11px; font-weight: 400; }
.soto-btn-pay {
    display: inline-block; background: #27ae60; color: #fff;
    padding: 14px 32px; font-size: 17px; font-weight: 700; border-radius: 6px;
    text-decoration: none; transition: background .2s; margin-bottom: 14px;
}
.soto-btn-pay:hover { background: #229954; color: #fff; }
.soto-payment-note { font-size: 12px; color: #aaa; margin-top: 10px; }

/* ---- Events list ---- */
.soto-events-list { display: flex; flex-direction: column; gap: 20px; max-width: 860px; margin: 0 auto; }
.soto-no-events { color: #777; font-style: italic; padding: 20px 0; }
.soto-event-card {
    display: flex; gap: 20px; background: #fff; border: 1px solid #e0e0e0;
    border-radius: 8px; overflow: hidden; transition: box-shadow .2s;
}
.soto-event-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.soto-event-card.soto-event-past { opacity: .65; }
.soto-event-card__image { flex-shrink: 0; width: 200px; }
.soto-event-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soto-event-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.soto-event-card__title { margin: 0; font-size: 18px; font-weight: 700; }
.soto-event-card__title a { color: #2c3e50; text-decoration: none; }
.soto-event-card__title a:hover { color: #27ae60; }
.soto-event-card__meta { display: flex; flex-wrap: wrap; gap: 12px; }
.soto-event-meta-item { font-size: 13px; color: #666; display: flex; align-items: center; gap: 5px; }
.soto-tier-badge { background: #eafaf1; color: #27ae60; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.soto-event-card__excerpt { margin: 0; font-size: 14px; color: #666; }
.soto-event-card__actions { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.soto-btn { display: inline-block; padding: 8px 18px; border-radius: 5px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .2s; }
.soto-btn-details { background: #f0f0f0; color: #333; border: 1px solid #ddd; }
.soto-btn-details:hover { background: #e0e0e0; color: #333; }
.soto-btn-register { background: #27ae60; color: #fff; }
.soto-btn-register:hover { background: #229954; color: #fff; }
.soto-badge { display: inline-block; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.soto-badge-past { background: #ecf0f1; color: #7f8c8d; }
.soto-badge-full { background: #fdf2f2; color: #c0392b; }
.soto-badge-closed { background: #fef9e7; color: #e67e22; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .soto-ev-modal { max-height: 100vh; border-radius: 0; }
    .soto-step2-body { flex-direction: column; }
    .soto-step2-summary-col { width: 100%; }
    .soto-field-row.two .soto-field { flex: 1 1 100%; }
    .soto-ticket-row { flex-direction: column; align-items: flex-start; }
    .soto-ticket-qty-price { width: 100%; justify-content: space-between; }
    .soto-event-card { flex-direction: column; }
    .soto-event-card__image { width: 100%; height: 160px; }
}

/* =========================================
   SOTO Single Event Template
   ========================================= */

.soto-single-event { max-width: 100%; }

/* Banner — contained with rounded corners, not full width */
.soto-event-banner {
    max-width: 1100px;
    margin: 0 auto 0;
    padding: 20px 24px 0;
    box-sizing: border-box;
}
.soto-event-banner img,
.soto-event-banner-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
/* Used when banner is background-image div */
.soto-event-banner-bg {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.soto-event-banner-overlay { display: none; }

/* Header bar (no image fallback) */
.soto-event-header-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 0;
}
.soto-event-header-inner { }
.soto-event-header-title { color: #2c3e50; font-size: 32px; font-weight: 800; margin: 0 0 10px; }
.soto-event-header-meta { color: #666; font-size: 15px; margin: 4px 0; }

/* Body two-column */
.soto-event-body {
    display: flex;
    gap: 32px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
    align-items: flex-start;
}
.soto-event-content {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}
.soto-event-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Details card — green style matching site theme */
.soto-event-details-card {
    background: #27ae60;
    border-radius: 10px;
    padding: 22px;
    position: sticky;
    top: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.soto-details-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
}
.soto-details-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.9);
    line-height: 1.5;
}
.soto-details-icon { flex-shrink: 0; font-size: 15px; }
.soto-details-item small { display: block; color: rgba(255,255,255,.7); font-size: 12px; margin-top: 2px; }

/* Price in card */
.soto-details-prices {
    background: rgba(0,0,0,.1);
    border-radius: 6px;
    padding: 10px 14px;
    margin: 14px 0;
}
.soto-details-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.9);
}
.soto-details-price-amt { font-weight: 700; color: #fff; font-size: 15px; }

/* Buy button in card */
.soto-details-buy-btn {
    width: 100%;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.soto-details-buy-btn:hover {
    background: rgba(255,255,255,.25);
    border-color: #fff;
}
.soto-details-closed { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; margin: 8px 0; }
.soto-member-login-hint { font-size: 12px; color: rgba(255,255,255,.75); margin: 0 0 12px; text-align: center; }
.soto-member-login-hint a { color: #fff; text-decoration: underline; }

/* Share links */
.soto-details-share {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,.8);
}
.soto-share-links { display: flex; gap: 8px; }
.soto-share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    transition: background .2s;
    text-decoration: none;
}
.soto-share-links a:hover { background: rgba(255,255,255,.3); }

/* Map section */
.soto-event-map-wrap {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
.soto-event-map { margin-top: 8px; }
.soto-event-map-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 14px;
}
.soto-event-map-address {
    font-size: 13px;
    color: #888;
    margin: 8px 0 0;
}
.soto-venue-map-block { margin-bottom: 28px; }
.soto-venue-map-block:last-child { margin-bottom: 0; }
.soto-venue-map-name {
    font-size: 20px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 10px;
}
.soto-venue-map-name-sub {
    font-weight: 600;
    font-size: 15px;
    color: #555;
}
.soto-event-more-venues {
    font-size: 11px; color: #999; margin-left: 4px;
}

/* Reusable event page footer (tagline + contact details) */
.soto-event-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}
.soto-event-footer-tagline {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin: 0 0 6px;
}
.soto-event-footer-contact {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* Image field previews (admin) */
.soto-image-preview { margin-bottom: 8px; }
.soto-image-preview img { max-width: 260px; max-height: 150px; border-radius: 6px; border: 1px solid #ddd; display: block; }

/* Responsive */
@media (max-width: 768px) {
    .soto-event-body { flex-direction: column; padding: 0 16px; }
    .soto-event-sidebar { width: 100%; }
    .soto-event-details-card { position: static; }
    .soto-event-banner { min-height: 260px; }
    .soto-event-banner-title { font-size: 26px; }
    .soto-event-banner-overlay { padding: 24px; }
    .soto-event-map-wrap { padding: 0 16px; }
}

/* =========================================
   SOTO Single Event — Clean Template
   ========================================= */

.soto-single-event {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    box-sizing: border-box;
}

/* Banner */
.soto-ev-banner-wrap {
    margin-bottom: 28px;
}
.soto-ev-banner-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Two-column body */
.soto-ev-body {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.soto-ev-content {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}
.soto-ev-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* Details card — green */
.soto-ev-details-card {
    background: #27ae60;
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 24px;
    color: #fff;
}
.soto-ev-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
}
.soto-ev-detail-item {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.9);
    margin-bottom: 10px;
    line-height: 1.5;
}
.soto-ev-detail-item small {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: 12px;
}
.soto-ev-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,.12);
    border-radius: 6px;
    padding: 10px 12px;
    margin: 12px 0;
    font-size: 13px;
    color: rgba(255,255,255,.9);
}
.soto-ev-price-amt {
    font-weight: 800;
    font-size: 15px;
    color: #fff;
}
.soto-ev-buy-btn {
    width: 100%;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .5px;
    transition: background .2s;
    margin-bottom: 8px;
}
.soto-ev-buy-btn:hover {
    background: rgba(255,255,255,.25);
    border-color: #fff;
}
.soto-ev-login-hint {
    text-align: center;
    font-size: 12px;
    margin: 0 0 12px;
}
.soto-ev-login-hint a { color: #fff; text-decoration: underline; }
.soto-ev-closed-msg { color: rgba(255,255,255,.85); font-size: 13px; margin: 10px 0; }

/* Share */
.soto-ev-share {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 12px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,.8);
}
.soto-ev-share-links { display: flex; gap: 8px; }
.soto-ev-share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: #fff;
    transition: background .2s;
    text-decoration: none;
}
.soto-ev-share-links a:hover { background: rgba(255,255,255,.3); }

/* Map */
.soto-ev-map-wrap {
    margin-top: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .soto-single-event { padding: 16px; }
    .soto-ev-body { flex-direction: column; }
    .soto-ev-sidebar { width: 100%; }
    .soto-ev-details-card { position: static; }
    .soto-ev-banner-img { height: 220px; }
}

/* ---- Ticket type selection (Step 1) ---- */
.soto-ticket-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px;
}
.soto-ticket-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: #fff;
}
.soto-ticket-option:hover { border-color: #27ae60; background: #f9fffe; }
.soto-ticket-option.selected {
    border-color: #27ae60;
    background: #f0fdf4;
    box-shadow: 0 0 0 2px rgba(39,174,96,.15);
}
.soto-ticket-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.soto-ticket-radio { width: 18px; height: 18px; accent-color: #27ae60; flex-shrink: 0; }
.soto-ticket-option-info { flex: 1; }
.soto-ticket-option-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
