/* Booking Flow 2026 - Modern Redesign */


/* Matches event-2026.css design language */


/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */

.booking-2026 {
    --ybo-dark: #1c323a;
    --ybo-dark-light: #264653;
    --ybo-blue: #319eca;
    --ybo-blue-light: #4db3d9;
    --ybo-blue-dark: #2a8bb8;
    --ybo-yellow: #e3ba2d;
    --ybo-yellow-light: #edc94d;
    --ybo-yellow-dark: #c9a526;
    --background: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #f1f5f9;
    --border-color-dark: #e2e8f0;
    --text-primary: #1c323a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --success: #22c55e;
    --success-light: #dcfce7;
    --error: #ef4444;
    --error-light: #fef2f2;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --card-shadow: 0 4px 20px rgba(28, 50, 58, 0.08);
    --card-shadow-hover: 0 8px 30px rgba(28, 50, 58, 0.12);
    --input-shadow: 0 1px 3px rgba(28, 50, 58, 0.08);
    --input-focus-shadow: 0 0 0 3px rgba(49, 158, 202, 0.15);
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    background: var(--background);
    min-height: 100vh;
}

.booking-2026 * {
    box-sizing: border-box;
}


/* ==========================================
   MODERN PROGRESS STEPPER
   ========================================== */

.booking-2026 .booking-stages {
    background: linear-gradient(135deg, var(--ybo-dark) 0%, var(--ybo-dark-light) 100%);
    padding: 30px 20px;
}

.booking-2026 .booking-stages .container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-2026 .booking-stages .steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}


/* Connecting line */

.booking-2026 .booking-stages .steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.booking-2026 .booking-stages .steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 160px;
}


/* Step circle */

.booking-2026 .booking-stages .steps li span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: all var(--transition-base);
}


/* Step text */

.booking-2026 .booking-stages .steps li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: 500;
    transition: color var(--transition-base);
}

.booking-2026 .booking-stages .steps li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.booking-2026 .booking-stages .steps li a:hover span {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}


/* Active step */

.booking-2026 .booking-stages .steps li.active span {
    background: var(--ybo-blue);
    border-color: var(--ybo-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(49, 158, 202, 0.4);
}

.booking-2026 .booking-stages .steps li.active {
    color: #fff;
}


/* Completed step */

.booking-2026 .booking-stages .steps li.completed span {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.booking-2026 .booking-stages .steps li.completed span::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 16px;
}

.booking-2026 .booking-stages .steps li.completed {
    color: rgba(255, 255, 255, 0.8);
}


/* Hide original number in completed state */

.booking-2026 .booking-stages .steps li.completed span {
    font-size: 0;
}

.booking-2026 .booking-stages .steps li.completed span::before {
    font-size: 16px;
}


/* Mobile responsive stepper */

@media (max-width: 600px) {
    .booking-2026 .booking-stages {
        padding: 20px 16px;
    }
    .booking-2026 .booking-stages .steps::before {
        left: 30px;
        right: 30px;
        top: 16px;
    }
    .booking-2026 .booking-stages .steps li span {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-bottom: 8px;
    }
    .booking-2026 .booking-stages .steps li {
        font-size: 11px;
    }
}


/* ==========================================
   CONTENT LAYOUT
   ========================================== */

.booking-2026 .content {
    padding: 40px 20px 60px;
}

.booking-2026 .content>.container {
    max-width: 1140px;
    margin: 0 auto;
}

.booking-2026 .content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1024px) {
    .booking-2026 .content-grid {
        grid-template-columns: 1fr;
    }
}

.booking-2026 .main-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* ==========================================
   CONTENT CARDS
   ========================================== */

.booking-2026 .content-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.booking-2026 .content-card:hover {
    box-shadow: var(--card-shadow-hover);
}

.booking-2026 .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.booking-2026 .card-header svg,
.booking-2026 .card-header i {
    color: var(--ybo-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.booking-2026 .card-header h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.booking-2026 .card-body {
    padding: 24px;
}


/* ==========================================
   RESERVATION EXPIRY BAR
   ========================================== */

.booking-2026 .reservation-expiry {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-2026 .reservation-expiry::before {
    content: '\f017';
    font-family: 'FontAwesome';
    font-size: 20px;
}

.booking-2026 .reservation-expiry p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.booking-2026 .reservation-expiry strong {
    font-weight: 700;
}


/* ==========================================
   TICKET CARDS (Cart Items)
   ========================================== */

.booking-2026 .ticket-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.booking-2026 .ticket-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.booking-2026 .ticket-card-header {
    background: linear-gradient(135deg, var(--ybo-dark) 0%, var(--ybo-dark-light) 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-2026 .ticket-card-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.booking-2026 .ticket-card-header h3 a {
    color: #fff;
    text-decoration: none;
}

.booking-2026 .ticket-card-header h3 a:hover {
    color: var(--ybo-yellow);
}

.booking-2026 .ticket-card-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-2026 .ticket-card-date i {
    color: var(--ybo-yellow);
}

.booking-2026 .ticket-card-body {
    padding: 0;
}

.booking-2026 .ticket-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.booking-2026 .ticket-item:last-child {
    border-bottom: none;
}

.booking-2026 .ticket-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-2026 .ticket-band {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

.booking-2026 .ticket-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-2026 .ticket-price {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    min-width: 70px;
}

.booking-2026 .ticket-quantity {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    min-width: 40px;
    background: var(--background);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.booking-2026 .ticket-subtotal {
    font-size: 16px;
    font-weight: 700;
    color: var(--ybo-blue);
    text-align: right;
    min-width: 80px;
}

.booking-2026 .ticket-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-2026 .ticket-actions a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast);
}

.booking-2026 .ticket-actions a:hover {
    color: var(--error);
}

.booking-2026 .ticket-actions a i {
    font-size: 10px;
}


/* Mobile ticket item */

@media (max-width: 600px) {
    .booking-2026 .ticket-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .booking-2026 .ticket-item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .booking-2026 .ticket-price,
    .booking-2026 .ticket-quantity,
    .booking-2026 .ticket-subtotal {
        text-align: left;
        min-width: auto;
    }
}


/* ==========================================
   EMPTY CART STATE
   ========================================== */

.booking-2026 .empty-cart {
    text-align: center;
    padding: 60px 24px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
}

.booking-2026 .empty-cart-icon {
    width: 80px;
    height: 80px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.booking-2026 .empty-cart-icon i {
    font-size: 32px;
    color: var(--text-light);
}

.booking-2026 .empty-cart h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.booking-2026 .empty-cart p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.booking-2026 .empty-cart p a {
    color: var(--ybo-blue);
    text-decoration: none;
    font-weight: 500;
}

.booking-2026 .empty-cart p a:hover {
    text-decoration: underline;
}


/* ==========================================
   CART FOOTER / TOTALS
   ========================================== */

.booking-2026 .cart-summary {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    padding: 24px;
}

.booking-2026 .coupon-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.booking-2026 .coupon-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.booking-2026 .coupon-form {
    display: flex;
    gap: 8px;
}

.booking-2026 .coupon-form input[type="text"] {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-md);
    background: var(--background);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.booking-2026 .coupon-form input[type="text"]:focus {
    outline: none;
    border-color: var(--ybo-blue);
    background: #fff;
    box-shadow: var(--input-focus-shadow);
}

.booking-2026 .coupon-form input[type="text"]::placeholder {
    color: var(--text-light);
}

.booking-2026 .coupon-form .btn-apply {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    background: var(--ybo-blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.booking-2026 .coupon-form .btn-apply:hover {
    background: var(--ybo-blue-dark);
}

.booking-2026 .terms-checkbox {
    margin-bottom: 20px;
}

.booking-2026 .terms-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.booking-2026 .terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--ybo-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.booking-2026 .terms-checkbox a {
    color: var(--ybo-blue);
    text-decoration: none;
}

.booking-2026 .terms-checkbox a:hover {
    text-decoration: underline;
}

.booking-2026 .grand-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.booking-2026 .grand-total-section .label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-2026 .grand-total-section .amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--ybo-dark);
}

.booking-2026 .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-2026 .cart-actions .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.booking-2026 .cart-actions .btn-secondary:hover {
    border-color: var(--error);
    color: var(--error);
}


/* ==========================================
   STICKY SIDEBAR
   ========================================== */

.booking-2026 .sidebar-sticky {
    position: sticky;
    top: 24px;
}

@media (max-width: 1024px) {
    .booking-2026 .sidebar-sticky {
        position: static;
    }
}

.booking-2026 .sidebar-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.booking-2026 .sidebar-header {
    background: linear-gradient(135deg, var(--ybo-dark) 0%, var(--ybo-dark-light) 100%);
    padding: 20px 24px;
}

.booking-2026 .sidebar-header h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-2026 .sidebar-header h3 i {
    color: var(--ybo-yellow);
}

.booking-2026 .sidebar-body {
    padding: 0;
}

.booking-2026 .sidebar-item {
    border-bottom: 1px solid var(--border-color);
}

.booking-2026 .sidebar-item:last-child {
    border-bottom: none;
}

.booking-2026 .sidebar-item-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.booking-2026 .sidebar-item-header:hover {
    background: var(--background);
}

.booking-2026 .sidebar-item-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.booking-2026 .sidebar-item-header i {
    color: var(--text-light);
    transition: transform var(--transition-fast);
}

.booking-2026 .sidebar-item.expanded .sidebar-item-header i {
    transform: rotate(180deg);
}

.booking-2026 .sidebar-item-content {
    padding: 0 24px 16px;
    display: none;
}

.booking-2026 .sidebar-item.expanded .sidebar-item-content {
    display: block;
}

.booking-2026 .sidebar-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.booking-2026 .sidebar-detail .label {
    color: var(--text-muted);
}

.booking-2026 .sidebar-detail .value {
    color: var(--text-primary);
    font-weight: 500;
}

.booking-2026 .sidebar-total {
    padding: 20px 24px;
    background: var(--background);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-2026 .sidebar-total .label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.booking-2026 .sidebar-total .amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--ybo-dark);
}


/* ==========================================
   FORM STYLING
   ========================================== */

.booking-2026 .form-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-bottom: 24px;
}

.booking-2026 .form-card h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.booking-2026 .form-card.login-card {
    background: linear-gradient(135deg, var(--ybo-dark) 0%, var(--ybo-dark-light) 100%);
}

.booking-2026 .form-card.login-card h2 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.booking-2026 .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.booking-2026 .form-row.single {
    grid-template-columns: 1fr;
}

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

.booking-2026 .form-group {
    margin-bottom: 16px;
}

.booking-2026 .form-group:last-child {
    margin-bottom: 0;
}

.booking-2026 .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.booking-2026 .form-card.login-card .form-label {
    color: rgba(255, 255, 255, 0.9);
}

.booking-2026 .form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-primary);
    background: var(--background);
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.booking-2026 .form-control:focus {
    outline: none;
    border-color: var(--ybo-blue);
    background: #fff;
    box-shadow: var(--input-focus-shadow);
}

.booking-2026 .form-control::placeholder {
    color: var(--text-light);
}

.booking-2026 .form-card.login-card .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.booking-2026 .form-card.login-card .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ybo-blue);
}

.booking-2026 .form-card.login-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.booking-2026 .has-error .form-control {
    border-color: var(--error);
    background: var(--error-light);
}

.booking-2026 .error-message {
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
}


/* Custom Checkbox */

.booking-2026 .custom-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.booking-2026 .custom-checkbox-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--ybo-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.booking-2026 .custom-checkbox-wrap .checkbox-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.booking-2026 .custom-checkbox-wrap .checkbox-text a {
    color: var(--ybo-blue);
    text-decoration: none;
}

.booking-2026 .custom-checkbox-wrap .checkbox-text a:hover {
    text-decoration: underline;
}


/* Forgot password link */

.booking-2026 .form-link {
    font-size: 13px;
    color: var(--ybo-blue);
    text-decoration: none;
}

.booking-2026 .form-link:hover {
    text-decoration: underline;
}

.booking-2026 .form-card.login-card .form-link {
    color: var(--ybo-yellow);
}


/* ==========================================
   BUTTONS
   ========================================== */

.booking-2026 .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.booking-2026 .btn-primary {
    background: linear-gradient(135deg, var(--ybo-yellow), var(--ybo-yellow-dark));
    color: var(--ybo-dark);
    box-shadow: 0 4px 15px rgba(227, 186, 45, 0.35);
}

.booking-2026 .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 186, 45, 0.45);
}

.booking-2026 .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.booking-2026 .btn-blue {
    background: linear-gradient(135deg, var(--ybo-blue), var(--ybo-blue-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(49, 158, 202, 0.35);
}

.booking-2026 .btn-blue:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 158, 202, 0.45);
}

.booking-2026 .btn-dark {
    background: var(--ybo-dark);
    color: #fff;
}

.booking-2026 .btn-dark:hover {
    background: var(--ybo-dark-light);
}

.booking-2026 .btn-outline {
    background: transparent;
    color: var(--ybo-blue);
    border: 2px solid var(--ybo-blue);
}

.booking-2026 .btn-outline:hover {
    background: var(--ybo-blue);
    color: #fff;
}

.booking-2026 .btn-block {
    width: 100%;
}

.booking-2026 .btn i {
    font-size: 14px;
}


/* ==========================================
   PAYMENT OPTIONS
   ========================================== */

.booking-2026 .payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-2026 .payment-option {
    position: relative;
}

.booking-2026 .payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.booking-2026 .payment-option label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--background);
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.booking-2026 .payment-option input[type="radio"]:checked+label {
    border-color: var(--ybo-blue);
    background: rgba(49, 158, 202, 0.05);
}

.booking-2026 .payment-option label:hover {
    border-color: var(--ybo-blue);
}

.booking-2026 .payment-option .radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.booking-2026 .payment-option input[type="radio"]:checked+label .radio-circle {
    border-color: var(--ybo-blue);
}

.booking-2026 .payment-option input[type="radio"]:checked+label .radio-circle::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--ybo-blue);
    border-radius: 50%;
}

.booking-2026 .payment-option .payment-logo {
    height: 28px;
    width: auto;
}

.booking-2026 .payment-option .payment-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}


/* Card element container */

.booking-2026 .card-element-container {
    padding: 16px;
    background: var(--background);
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.booking-2026 .card-element-container.focused {
    border-color: var(--ybo-blue);
    box-shadow: var(--input-focus-shadow);
}

.booking-2026 .card-errors {
    color: var(--error);
    font-size: 13px;
    margin-top: 8px;
}


/* Express checkout divider */

.booking-2026 .express-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.booking-2026 .express-divider::before,
.booking-2026 .express-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color-dark);
}

.booking-2026 .express-divider span {
    padding: 0 16px;
    font-size: 13px;
    color: var(--text-muted);
}


/* ==========================================
   CONFIRMATION PAGE
   ========================================== */

.booking-2026 .success-header {
    text-align: center;
    padding: 40px 24px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    margin-bottom: 24px;
}

.booking-2026 .success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.booking-2026 .success-icon i {
    font-size: 40px;
    color: var(--success);
}

.booking-2026 .success-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.booking-2026 .success-header p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.booking-2026 .action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.booking-2026 .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--card-bg);
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.booking-2026 .action-btn:hover {
    border-color: var(--ybo-blue);
    color: var(--ybo-blue);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.booking-2026 .action-btn i {
    font-size: 18px;
}

.booking-2026 .action-btn.btn-apple {
    background: #000;
    border-color: #000;
    color: #fff;
}

.booking-2026 .action-btn.btn-apple:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}


/* Donation section */

.booking-2026 .donation-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-top: 24px;
}

.booking-2026 .donation-card h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.booking-2026 .donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.booking-2026 .donation-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    background: var(--background);
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.booking-2026 .donation-btn:hover,
.booking-2026 .donation-btn.active {
    border-color: var(--ybo-blue);
    background: rgba(49, 158, 202, 0.05);
    color: var(--ybo-blue);
}

.booking-2026 .donation-custom {
    margin-top: 16px;
}

.booking-2026 .donation-custom input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid var(--border-color-dark);
    border-radius: var(--radius-md);
    background: var(--background);
}

.booking-2026 .donation-custom input:focus {
    outline: none;
    border-color: var(--ybo-blue);
    box-shadow: var(--input-focus-shadow);
}


/* ==========================================
   MODAL STYLING
   ========================================== */

.booking-2026 .modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: 0 25px 50px rgba(28, 50, 58, 0.25);
}

.booking-2026 .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.booking-2026 .modal-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.booking-2026 .modal-header .close {
    font-size: 24px;
    color: var(--text-light);
    opacity: 1;
}

.booking-2026 .modal-header .close:hover {
    color: var(--text-primary);
}

.booking-2026 .modal-body {
    padding: 24px;
}

.booking-2026 .modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}


/* ==========================================
   ALERTS
   ========================================== */

.booking-2026 .alert {
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-2026 .alert-success {
    background: var(--success-light);
    color: #166534;
    border: 1px solid var(--success);
}

.booking-2026 .alert-danger {
    background: var(--error-light);
    color: #991b1b;
    border: 1px solid var(--error);
}

.booking-2026 .alert-warning {
    background: var(--warning-light);
    color: #92400e;
    border: 1px solid var(--warning);
}


/* ==========================================
   PAGE TITLES
   ========================================== */

.booking-2026 .page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 24px;
}


/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
    .booking-2026 .content {
        padding: 24px 16px 40px;
    }
    .booking-2026 .content-card,
    .booking-2026 .form-card,
    .booking-2026 .cart-summary,
    .booking-2026 .sidebar-card {
        border-radius: var(--radius-lg);
    }
    .booking-2026 .card-body,
    .booking-2026 .form-card {
        padding: 20px;
    }
    .booking-2026 .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    .booking-2026 .page-title {
        font-size: 1.25rem;
    }
    .booking-2026 .success-header {
        padding: 30px 20px;
    }
    .booking-2026 .success-header h1 {
        font-size: 1.5rem;
    }
    .booking-2026 .action-buttons {
        grid-template-columns: 1fr;
    }
}