/* Event Page 2026 - Modern Redesign */

/* ==========================================
   RESET & BASE
   ========================================== */

/* Hide stray Bootstrap modal backdrop */
.modal-backdrop {
    display: none !important;
}

.event-detail-2026 {
    background: #f8fafc;
    min-height: 100vh;
}

.event-detail-2026 * {
    box-sizing: border-box;
}

/* ==========================================
   UNPUBLISHED BANNER
   ========================================== */
.event-detail-2026 .unpublished-banner {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
}

.event-detail-2026 .unpublished-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.event-detail-2026 .hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding: 60px 20px 50px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .event-detail-2026 .hero-section {
        min-height: 380px;
        padding: 40px 16px 30px;
    }
}

/* Blurred Background Image */
.event-detail-2026 .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.15);
    z-index: 1;
}

/* Gradient Overlay */
.event-detail-2026 .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(28, 50, 58, 0.4) 0%,
        rgba(28, 50, 58, 0.75) 60%,
        rgba(28, 50, 58, 0.92) 100%);
    z-index: 2;
}

/* Hero Content */
.event-detail-2026 .hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
}

/* Breadcrumbs */
.event-detail-2026 .breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.event-detail-2026 .breadcrumb-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.event-detail-2026 .breadcrumb-nav a:hover {
    color: #fff;
}

.event-detail-2026 .breadcrumb-nav .sep {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

.event-detail-2026 .breadcrumb-nav .current {
    color: rgba(255,255,255,0.9);
}

/* Event Title */
.event-detail-2026 .event-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .event-detail-2026 .event-title {
        font-size: 1.75rem;
    }
}

/* Venue Pill */
.event-detail-2026 .venue-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.event-detail-2026 .venue-pill svg {
    color: #e3ba2d;
}

/* Price Pills */
.event-detail-2026 .price-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-detail-2026 .price-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: transform 0.2s, background 0.2s;
}

.event-detail-2026 .price-pill:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.event-detail-2026 .price-pill .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.event-detail-2026 .price-pill .price {
    font-size: 18px;
    font-weight: 700;
    color: #e3ba2d;
}

/* ==========================================
   CONTENT SECTION
   ========================================== */
.event-detail-2026 .content-section {
    padding: 40px 20px 60px;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .event-detail-2026 .content-section {
        padding: 24px 16px 40px;
    }
}

/* Grid Layout */
.event-detail-2026 .content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

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

/* Main Column */
.event-detail-2026 .main-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ==========================================
   CONTENT CARDS
   ========================================== */
.event-detail-2026 .content-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(28, 50, 58, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.event-detail-2026 .content-card:hover {
    box-shadow: 0 8px 30px rgba(28, 50, 58, 0.12);
    transform: translateY(-2px);
}

.event-detail-2026 .card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.event-detail-2026 .card-head svg {
    color: #319eca;
    flex-shrink: 0;
}

.event-detail-2026 .card-head h2 {
    font-size: 18px !important;
    font-weight: 700;
    color: #1c323a;
    margin: 0;
}

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

/* Description Text */
.event-detail-2026 .description-text {
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
}

.event-detail-2026 .description-text p {
    margin: 0 0 16px;
}

.event-detail-2026 .description-text p:last-child {
    margin-bottom: 0;
}

.event-detail-2026 .description-text strong {
    color: #1c323a;
}

/* Info Blocks */
.event-detail-2026 .info-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.event-detail-2026 .info-block h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1c323a;
    margin: 0 0 8px;
}

.event-detail-2026 .info-block p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.event-detail-2026 .bundle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.event-detail-2026 .bundle-tags .tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
}

/* ==========================================
   DATES LIST
   ========================================== */
.event-detail-2026 .dates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-detail-2026 .date-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.2s;
}

.event-detail-2026 .date-row:hover {
    background: #f1f5f9;
}

.event-detail-2026 .date-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #319eca;
    border-radius: 8px;
    flex-shrink: 0;
}

.event-detail-2026 .date-icon-box svg {
    color: #fff;
}

.event-detail-2026 .date-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-detail-2026 .date-text strong {
    font-size: 14px;
    color: #1c323a;
}

.event-detail-2026 .date-text span {
    font-size: 13px;
    color: #64748b;
}

/* See All Button */
.event-detail-2026 .see-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.event-detail-2026 .see-all-btn:hover {
    border-color: #319eca;
    color: #319eca;
    background: rgba(49, 158, 202, 0.04);
}

/* ==========================================
   ORGANISER
   ========================================== */
.event-detail-2026 .organiser-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 480px) {
    .event-detail-2026 .organiser-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.event-detail-2026 .organiser-logo {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(28, 50, 58, 0.08);
}

.event-detail-2026 .organiser-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-2026 .organiser-info {
    flex: 1;
}

.event-detail-2026 .organiser-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 16px;
}

.event-detail-2026 .contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.event-detail-2026 .contact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
}

.event-detail-2026 .contact-link.clickable:hover {
    color: #319eca;
    background: #f1f5f9;
}

.event-detail-2026 .contact-link svg {
    color: #319eca;
    flex-shrink: 0;
    margin-top: 2px;
}

.event-detail-2026 .contact-link address {
    font-style: normal;
    line-height: 1.6;
}

.event-detail-2026 .contact-link .link {
    color: #319eca;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
}

.event-detail-2026 .contact-link .link:hover {
    text-decoration: underline;
}

/* ==========================================
   BOOKING WIDGET (Sidebar)
   ========================================== */
.event-detail-2026 .sidebar-column {
    position: sticky;
    top: 24px;
}

@media (max-width: 1024px) {
    .event-detail-2026 .sidebar-column {
        position: static;
    }
}

.event-detail-2026 .booking-widget {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(28, 50, 58, 0.12);
    overflow: hidden;
}

.event-detail-2026 .widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #1c323a 0%, #264653 100%);
    color: #fff;
}

.event-detail-2026 .widget-header svg {
    color: #e3ba2d;
}

.event-detail-2026 .widget-header h2 {
    font-size: 18px !important;
    font-weight: 700;
    margin: 0;
}

.event-detail-2026 .widget-body {
    padding: 24px;
}

/* Notice Box */
.event-detail-2026 .notice-box {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: #fef3c7;
    border-radius: 10px;
    margin-bottom: 20px;
}

.event-detail-2026 .notice-box svg {
    color: #d97706;
    flex-shrink: 0;
}

.event-detail-2026 .notice-box strong {
    display: block;
    font-size: 14px;
    color: #92400e;
    margin-bottom: 4px;
}

.event-detail-2026 .notice-box p {
    font-size: 13px;
    color: #a16207;
    margin: 0;
}

/* ==========================================
   BOOKING FORM
   ========================================== */
.event-detail-2026 .booking-form-2026 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Field */
.event-detail-2026 .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-detail-2026 .field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1c323a;
}

.event-detail-2026 .field-label svg {
    color: #319eca;
    flex-shrink: 0;
}

/* Select Field */
.event-detail-2026 .select-field {
    position: relative;
}

.event-detail-2026 .select-field select {
    width: 100%;
    padding: 14px 44px 14px 16px;
    font-size: 15px;
    color: #1c323a;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.event-detail-2026 .select-field select:focus {
    border-color: #319eca;
    box-shadow: 0 0 0 4px rgba(49, 158, 202, 0.1);
    background: #fff;
}

.event-detail-2026 .select-field select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.event-detail-2026 .select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-detail-2026 .select-icon svg {
    width: 16px;
    height: 16px;
}

/* Tickets Divider */
.event-detail-2026 .tickets-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.event-detail-2026 .tickets-divider::before,
.event-detail-2026 .tickets-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.event-detail-2026 .tickets-divider span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ticket Row */
.event-detail-2026 .ticket-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
}

.event-detail-2026 .ticket-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-detail-2026 .ticket-name {
    font-size: 14px;
    font-weight: 600;
    color: #1c323a;
}

.event-detail-2026 .ticket-price {
    font-size: 18px;
    font-weight: 700;
    color: #319eca;
    letter-spacing: -0.3px;
}

.event-detail-2026 .ticket-price.free {
    color: #10b981;
    font-weight: 700;
}

.event-detail-2026 .ticket-qty {
    display: flex;
    align-items: stretch;
    margin-left: auto;
    height: 44px;
}

.event-detail-2026 .ticket-qty .qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
}

.event-detail-2026 .ticket-qty .qty-minus {
    background: #1c323a;
    color: #fff;
    border-radius: 8px 0 0 8px;
}

.event-detail-2026 .ticket-qty .qty-minus:hover:not(:disabled) {
    background: #264653;
}

.event-detail-2026 .ticket-qty .qty-plus {
    background: #e3ba2d;
    color: #1c323a;
    border-radius: 0 8px 8px 0;
}

.event-detail-2026 .ticket-qty .qty-plus:hover:not(:disabled) {
    background: #d4a82a;
}

.event-detail-2026 .ticket-qty .qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.event-detail-2026 .ticket-qty input {
    width: 50px;
    height: 44px;
    padding: 0 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #1c323a;
    background: #fff;
    border-top: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
    border-left: none;
    border-right: none;
    border-radius: 0;
    outline: none;
    -moz-appearance: textfield;
    margin: 0;
    box-sizing: border-box;
}

.event-detail-2026 .ticket-qty input::-webkit-outer-spin-button,
.event-detail-2026 .ticket-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Impersonate Box / Ticket Holder Information */
.event-detail-2026 .impersonate-box {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    margin-top: 12px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(28, 50, 58, 0.06);
}

.event-detail-2026 .impersonate-box .form-block {
    margin: 0;
}

.event-detail-2026 .impersonate-box .form-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1c323a;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.event-detail-2026 .impersonate-box .form-block .row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-detail-2026 .impersonate-box .input-block,
.event-detail-2026 .impersonate-box .form-group {
    margin-bottom: 0;
}

.event-detail-2026 .impersonate-box .form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    color: #1c323a;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
    min-height: 52px;
}

.event-detail-2026 .impersonate-box .form-control:focus {
    border-color: #319eca;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(49, 158, 202, 0.1);
}

.event-detail-2026 .impersonate-box .form-control::placeholder {
    color: #94a3b8;
}

/* Submit Button */
.event-detail-2026 .submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #319eca 0%, #2889b4 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(49, 158, 202, 0.35);
    margin-top: 8px;
}

.event-detail-2026 .submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 158, 202, 0.45);
}

.event-detail-2026 .submit-button:disabled,
.event-detail-2026 .submit-button.disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.event-detail-2026 .submit-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.event-detail-2026 .submit-button .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==========================================
   GENERAL BUTTONS
   ========================================== */
.event-detail-2026 .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #319eca 0%, #2889b4 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(49, 158, 202, 0.35);
}

.event-detail-2026 .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 158, 202, 0.45);
}

.event-detail-2026 .full-width {
    width: 100%;
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal-2026 .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(28, 50, 58, 0.25);
}

.modal-2026 .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, #1c323a 0%, #264653 100%);
    color: #fff;
    border: none;
}

.modal-2026 .modal-title-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.modal-2026 .modal-title-wrapper p {
    font-size: 14px;
    opacity: 0.75;
    margin: 0;
}

.modal-2026 .modal-close {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
}

.modal-2026 .modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.modal-2026 .modal-close svg {
    color: #fff;
}

.modal-2026 .modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-2026 .dates-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.modal-2026 .date-modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 10px;
    transition: background 0.2s;
}

.modal-2026 .date-modal-item:hover {
    background: #f1f5f9;
}

.modal-2026 .date-modal-item .date-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #319eca;
    border-radius: 8px;
}

.modal-2026 .date-modal-item .date-icon svg {
    color: #fff;
    width: 18px;
    height: 18px;
}

.modal-2026 .date-modal-item .date-details {
    display: flex;
    flex-direction: column;
}

.modal-2026 .date-modal-item .date {
    font-weight: 600;
    color: #1c323a;
    font-size: 14px;
}

.modal-2026 .date-modal-item .time {
    font-size: 13px;
    color: #64748b;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .event-detail-2026 .ticket-quantity {
        flex-direction: column;
        align-items: stretch;
    }

    .event-detail-2026 .quantity-input {
        width: 100%;
    }

    .event-detail-2026 .card-head {
        padding: 16px 20px;
    }

    .event-detail-2026 .card-body {
        padding: 20px;
    }

    .event-detail-2026 .widget-body {
        padding: 20px;
    }
}

/* ==========================================
   SEAT PICKER MODAL - 2026 Complete Rebuild
   Modern, vibrant, fully functional
   ========================================== */

/* Base Modal Styles */
.seat-modal-2026 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.seat-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
}

.seat-modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.seat-modal-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

/* Modal Header */
.seat-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.seat-modal-header .header-info h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}

.seat-modal-header .header-info h3 svg {
    color: #fbbf24;
}

.seat-modal-header .header-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding-left: 36px;
}

.seat-modal-header .close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
}

.seat-modal-header .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Progress Bar */
.seat-modal-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #e2e8f0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.progress-step .step-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cbd5e1;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
}

.progress-step.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

.progress-step.active .step-number {
    background: rgba(255, 255, 255, 0.3);
}

.progress-step.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.progress-step.completed .step-number {
    background: rgba(255, 255, 255, 0.3);
}

.progress-line {
    width: 40px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: background 0.3s;
}

.progress-line.active {
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
}

/* Status Bar */
.seat-modal-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.success {
    background: #d1fae5;
    color: #065f46;
}

.confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

/* Modal Body */
.seat-modal-body {
    flex: 1;
    overflow: auto;
    background: #f1f5f9;
    padding: 24px;
}

.seat-stages {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.seat-stage {
    min-height: 300px;
}

/* Legend */
.seat-modal-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 28px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 5px;
}

.legend-dot.available {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.legend-dot.selected {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.legend-dot.disabled {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.legend-dot.unavailable {
    background: #cbd5e1;
}

/* ==========================================
   SEATING OVERVIEW (Section Selection)
   ========================================== */
.seating-overview {
    padding: 20px;
}

.overview-header {
    text-align: center;
    margin-bottom: 24px;
}

.overview-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px;
}

.overview-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.seating-map {
    position: relative;
    min-height: 280px;
    padding: 70px 30px 30px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: opacity 0.3s;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
}

/* Stage Element */
.stage-element {
    position: absolute !important;
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    padding: 10px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
    z-index: 5;
}

.stage-element .stage-label {
    display: block;
    text-align: center;
}

/* Section Blocks */
.section-block {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-block:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
    transform: translateY(-3px);
}

.section-block .section-seats {
    display: flex;
    justify-content: center;
}

.section-block .section-seats table {
    border-collapse: separate;
    border-spacing: 3px;
}

/* Hide empty rows and cells in section overview */
.section-block .section-seats tr:empty {
    display: none;
}

.section-block .section-seats td {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: #94a3b8;
}

/* Hide cells that have no seat class */
.section-block .section-seats td:not(.seat-available):not(.seat-disabled):not(.seat-selected):not(.seat-unavailable) {
    display: none;
}

.section-block .section-seats td.seat-available {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 1px 3px rgba(34, 197, 94, 0.3);
}

.section-block .section-seats td.seat-disabled {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.section-block .section-seats td.seat-selected {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.section-block .section-seats td.seat-unavailable {
    background: #94a3b8;
}

.section-block .section-label {
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.section-block .section-label span {
    display: inline-block;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.section-block .section-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.95);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s;
}

.section-block:hover .section-hover {
    opacity: 1;
}

/* Empty State */
.seating-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    color: #94a3b8;
    width: 100%;
}

.seating-empty-state svg {
    opacity: 0.5;
}

.seating-empty-state p {
    font-size: 14px;
    margin: 0;
}

/* ==========================================
   SEAT SELECTION (Individual Seats)
   ========================================== */
.seat-selection {
    padding: 10px;
}

.selection-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.section-title h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
}

.section-title .seat-count {
    font-size: 14px;
    color: #64748b;
}

/* Seats Grid */
.seats-grid-container {
    overflow: auto;
    max-height: 350px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.seats-grid table {
    border-collapse: separate;
    border-spacing: 6px;
    margin: 0 auto;
}

.seats-grid .row-label {
    width: 35px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    background: transparent !important;
}

.seats-grid td.seat {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.seats-grid td.seat-empty {
    background: transparent;
    cursor: default;
}

.seats-grid td.seat-available {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.35);
}

.seats-grid td.seat-available:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.5);
}

.seats-grid td.seat-disabled {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.35);
}

.seats-grid td.seat-disabled:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.5);
}

.seats-grid td.seat-selected {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
    animation: seatPulse 2s infinite;
}

@keyframes seatPulse {
    0%, 100% { box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 5px 20px rgba(245, 158, 11, 0.6); }
}

.seats-grid td.seat-selected:hover {
    transform: scale(1.15);
}

.seats-grid td.seat-unavailable {
    background: #cbd5e1;
    cursor: not-allowed;
}

.seats-grid .seat-number {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    line-height: 36px;
}

.seats-grid td.seat-unavailable .seat-number {
    color: #94a3b8;
}

/* Selection Summary */
.selection-summary {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 16px;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 12px;
}

.selected-seats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selected-seat-tag {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* ==========================================
   OWL CAROUSEL OVERRIDES
   ========================================== */
.seat-modal-2026 .owl-carousel,
.seat-modal-2026 #seatingPlanStages {
    display: block;
}

.seat-modal-2026 .owl-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.3s;
}

.seat-modal-2026 .owl-carousel .owl-item.active {
    opacity: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .seat-modal-2026 {
        padding: 10px;
    }

    .seat-modal-content {
        border-radius: 16px;
    }

    .seat-modal-header {
        padding: 16px 20px;
    }

    .seat-modal-header .header-info h3 {
        font-size: 1.15rem;
    }

    .seat-modal-header .header-subtitle {
        display: none;
    }

    .seat-modal-progress {
        padding: 12px 16px;
        gap: 4px;
    }

    .progress-step {
        padding: 6px 12px;
        font-size: 11px;
    }

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

    .progress-line {
        width: 24px;
    }

    .seat-modal-status {
        flex-direction: column;
        gap: 12px;
        padding: 12px 20px;
    }

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

    .seat-modal-body {
        padding: 16px;
    }

    .seat-modal-legend {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .legend-item {
        font-size: 11px;
    }

    .seats-grid td.seat {
        width: 30px;
        height: 30px;
    }

    .seats-grid .seat-number {
        font-size: 9px;
        line-height: 30px;
    }

    .selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

#seatPickerModal .modal-header .modal-title-wrapper h4 {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    margin: 0 0 4px !important;
    color: #fff !important;
}

#seatPickerModal .modal-header .modal-title-wrapper h4 svg {
    color: #e3ba2d !important;
    flex-shrink: 0 !important;
}

#seatPickerModal .modal-header .modal-title-wrapper p {
    font-size: 13px !important;
    opacity: 0.75 !important;
    margin: 0 !important;
    padding-left: 36px !important;
}

#seatPickerModal .modal-header .modal-close {
    background: rgba(255,255,255,0.15) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    opacity: 1 !important;
}

#seatPickerModal .modal-header .modal-close:hover {
    background: rgba(255,255,255,0.25) !important;
}

#seatPickerModal .modal-header .modal-close svg {
    color: #fff !important;
    width: 20px !important;
    height: 20px !important;
}

#seatPickerModal .modal-header .close {
    display: none !important;
}

/* Modal Content - Flexbox layout to keep footer always visible */
#seatPickerModal .modal-content {
    display: flex !important;
    flex-direction: column !important;
    max-height: 90vh !important;
}

/* Modal Body */
#seatPickerModal .modal-body {
    padding: 0 !important;
    background: #f1f5f9 !important;
    flex: 1 1 auto !important;
    overflow: auto !important;
    pointer-events: auto !important;
}

/* Seat Allocation Bar */
#seatPickerModal .seat-allocation-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 24px !important;
    background: #fff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
}

#seatPickerModal .allocation-info {
    display: flex !important;
    align-items: center !important;
}

#seatPickerModal .status-complete,
#seatPickerModal .status-pending {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
}

#seatPickerModal .status-complete {
    color: #10b981 !important;
    font-weight: 600 !important;
}

#seatPickerModal .status-pending {
    color: #64748b !important;
}

#seatPickerModal .status-pending strong {
    color: #1c323a !important;
}

#seatPickerModal .confirm-seats-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

#seatPickerModal .confirm-seats-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}

/* Old Actions Bar (fallback) */
#seatPickerModal .actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 24px !important;
    background: #fff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    position: relative !important;
    z-index: 100 !important;
}

#seatPickerModal .actions p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #64748b !important;
}

#seatPickerModal .actions button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

/* Carousel Container */
#seatPickerModal .owl-carousel,
#seatPickerModal #seatingPlanStages {
    padding: 20px !important;
    background: #f1f5f9 !important;
}

#seatPickerModal .owl-carousel .slide,
#seatPickerModal #seatingPlanStages .slide {
    padding: 20px !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(28, 50, 58, 0.08) !important;
    pointer-events: auto !important;
}

/* Heading in slides */
#seatPickerModal h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    margin: 0 0 16px !important;
    padding: 0 0 12px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Area Overflow - CRITICAL OVERRIDE */
#seatPickerModal .area-overflow {
    overflow: auto !important;
    max-height: 400px !important;
    padding: 16px !important;
    background: #f8fafc !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
    border: 1px solid #e2e8f0 !important;
}

/* ==========================================
   SEATING PLAN AREA - Minimal Override (preserve original layout)
   ========================================== */

#seatPickerModal .seating-plan {
    min-height: 250px !important;
    text-align: center !important;
    border: none !important;
    padding: 6px !important;
    background: transparent !important;
}

/* DO NOT override seating-plan-area positioning/sizing - original CSS handles layout */
/* Original uses width: auto for modal, position: relative for sections */

/* Stage */
#seatPickerModal .seating-plan-area .stage,
#seatPickerModal .seating-plan .stage {
    background: linear-gradient(135deg, #1c323a 0%, #264653 100%) !important;
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    box-shadow: 0 3px 10px rgba(28, 50, 58, 0.25) !important;
    border: none !important;
}

/* Section styling - Only override colors, not positioning */
#seatPickerModal .seating-plan-area .section,
#seatPickerModal .seating-plan .section {
    border: 2px solid #94a3b8 !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0 !important;
    /* DO NOT override position, display, margin - original CSS handles layout */
}

#seatPickerModal .seating-plan-area .section:hover,
#seatPickerModal .seating-plan .section:hover {
    border-color: #319eca !important;
    box-shadow: 0 0 0 3px rgba(49, 158, 202, 0.2) !important;
}

/* Select tier overlay */
#seatPickerModal .seating-plan-area .section .select-tier,
#seatPickerModal .seating-plan .section .select-tier,
#seatPickerModal .select-tier {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 10 !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    background: transparent !important;
    transition: background 0.2s !important;
    pointer-events: auto !important;
}

#seatPickerModal .select-tier:hover {
    background: rgba(49, 158, 202, 0.1) !important;
}

/* Seat table in seating plan overview - only style colors */
#seatPickerModal .seating-plan-area table,
#seatPickerModal .seating-plan .section table {
    border-collapse: separate !important;
    border-spacing: 3px !important;
}

/* CRITICAL: Override seat colors from old yellow CSS */
/* Base td - show seat grid cells with proper size */
#seatPickerModal .seating-plan .section td,
#seatPickerModal .seating-plan-area .section td {
    background: transparent !important;
    border-radius: 50% !important;
    padding: 0 !important;
    width: 10px !important;
    height: 10px !important;
}

/* Seats that exist - show them with proper size and gray background (unavailable default) */
#seatPickerModal .seating-plan .section td.individual_seat,
#seatPickerModal .seating-plan-area .section td.individual_seat {
    width: 4px !important;
    height: 4px !important;
    background: #94a3b8 !important;
}

/* Available seats - YBO yellow */
#seatPickerModal .seating-plan .section td.seat_available,
#seatPickerModal .seating-plan-area .section td.seat_available {
    background: #e3ba2d !important;
}

/* Disabled/accessibility seats - YBO dark */
#seatPickerModal .seating-plan .section td.seat_disabled,
#seatPickerModal .seating-plan-area .section td.seat_disabled {
    background: #1c323a !important;
}

/* Selected seats - YBO blue */
#seatPickerModal .seating-plan .section td.seat_selected,
#seatPickerModal .seating-plan-area .section td.seat_selected {
    background: #319eca !important;
}

/* Unavailable seats - muted */
#seatPickerModal .seating-plan .section td.seat_unavailable,
#seatPickerModal .seating-plan-area .section td.seat_unavailable {
    background: #e6e9ee !important;
}

/* Empty seats in overview (aisle/walkway) - white */
#seatPickerModal .seating-plan .section td.seat_empty,
#seatPickerModal .seating-plan-area .section td.seat_empty {
    background: #fff !important;
}

/* Section labels - only style appearance, not positioning */
#seatPickerModal .section__label .label-text,
#seatPickerModal .section__label .o .i .label-text {
    background: #1c323a !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 3px 8px !important;
}

/* ==========================================
   SEAT PICKER SLIDE (Individual Seats)
   ========================================== */

#seatPickerModal #seatPicker {
    pointer-events: auto !important;
}

#seatPickerModal #seatPicker h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #475569 !important;
}

/* Back button - Prominent */
#seatPickerModal .back-button {
    margin-bottom: 24px !important;
    display: block !important;
}

#seatPickerModal .back-button a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #319eca 0%, #2a8bb8 100%) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    pointer-events: auto !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(49, 158, 202, 0.3) !important;
}

#seatPickerModal .back-button a:hover {
    background: linear-gradient(135deg, #2a8bb8 0%, #237a9f 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(49, 158, 202, 0.4) !important;
    color: #fff !important;
}

#seatPickerModal .back-button a i {
    font-size: 14px !important;
}

/* Section name */
#seatPickerModal .section-name,
#seatPickerModal #seatPicker .section-name {
    margin-bottom: 20px !important;
    display: block !important;
    margin-top: 35px !important;
    text-align: center !important;
    width: 100% !important;
    clear: both !important;
}

#seatPickerModal .section-name h5,
#seatPickerModal #seatPicker .section-name h5 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1c323a !important;
    margin: 0 !important;
    display: inline-block !important;
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%) !important;
    border-radius: 10px !important;
    border: 2px solid #0ea5e9 !important;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15) !important;
}

/* Seats Table (individual seats selection) */
#seatPickerModal .seats-table {
    overflow: auto !important;
    max-height: 320px !important;
    padding: 16px !important;
    background: #f8fafc !important;
    border-radius: 10px !important;
    margin-bottom: 16px !important;
    border: 1px solid #e2e8f0 !important;
}

#seatPickerModal .seats-table table {
    border-collapse: separate !important;
    border-spacing: 5px !important;
    margin: 0 auto !important;
}

#seatPickerModal .seats-table td {
    width: 32px !important;
    height: 32px !important;
    background: transparent !important;
    border-radius: 5px !important;
    text-align: center !important;
    vertical-align: middle !important;
    cursor: default !important;
    transition: all 0.2s !important;
    position: relative !important;
    border: none !important;
    padding: 0 !important;
}

/* Row labels (A, B, C, etc.) */
#seatPickerModal .seats-table td.seat-sizer,
#seatPickerModal .seats-table .seat-sizer {
    width: 40px !important;
    height: 32px !important;
    background: linear-gradient(135deg, #1c323a 0%, #2d4a54 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
    vertical-align: middle !important;
    border-radius: 6px !important;
    line-height: 32px !important;
    margin-right: 8px !important;
}

/* Seats that exist but are unavailable - gray */
#seatPickerModal .seats-table td.individual_seat:not(.seat_available):not(.seat_disabled):not(.seat_selected) {
    background: #e6e9ee !important;
    cursor: not-allowed !important;
    border-radius: 50% !important;
}


#seatPickerModal .seats-table td .seat-sizer {
    font-size: 8px !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 32px !important;
}

/* Individual Seat States - YBO Brand Colors */
#seatPickerModal .seats-table td.seat_available,
#seatPickerModal #seatPicker .seat_available,
#seatPickerModal #seatPicker td.seat_available {
    background: linear-gradient(135deg, #e3ba2d 0%, #c9a526 100%) !important;
    cursor: pointer !important;
    box-shadow: 0 2px 6px rgba(227, 186, 45, 0.3) !important;
    pointer-events: auto !important;
    border-radius: 50% !important;
}

#seatPickerModal .seats-table td.seat_available:hover,
#seatPickerModal #seatPicker .seat_available:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 4px 12px rgba(227, 186, 45, 0.4) !important;
}

#seatPickerModal .seats-table td.seat_disabled,
#seatPickerModal #seatPicker .seat_disabled {
    background: linear-gradient(135deg, #1c323a 0%, #264653 100%) !important;
    color: #fff !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    border-radius: 50% !important;
}

#seatPickerModal .seats-table td.seat_disabled:hover,
#seatPickerModal #seatPicker .seat_disabled:hover {
    transform: scale(1.12) !important;
}

#seatPickerModal .seats-table td.seat_selected,
#seatPickerModal #seatPicker .seat_selected {
    background: linear-gradient(135deg, #319eca 0%, #2a8bb8 100%) !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(49, 158, 202, 0.4) !important;
    animation: seatPulse2026 2s infinite !important;
    pointer-events: auto !important;
    border-radius: 50% !important;
}

@keyframes seatPulse2026 {
    0%, 100% { box-shadow: 0 2px 8px rgba(49, 158, 202, 0.4); }
    50% { box-shadow: 0 4px 16px rgba(49, 158, 202, 0.6); }
}

#seatPickerModal .seats-table td.seat_selected:hover,
#seatPickerModal #seatPicker .seat_selected:hover {
    transform: scale(1.12) !important;
}

/* Empty seats (aisle/walkway) - light gray for individual picker */
#seatPickerModal .seats-table td.individual_seat.seat_empty,
#seatPickerModal #seatPicker td.individual_seat.seat_empty,
#seatPickerModal #seatPicker .seat_empty {
    background: #f8fafc !important;
    cursor: default !important;
    pointer-events: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Seats Key/Legend */
#seatPickerModal .seats-key {
    padding: 14px 16px !important;
    background: #fff !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
}

#seatPickerModal .seats-key ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: center !important;
}

#seatPickerModal .seats-key li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 12px !important;
    color: #64748b !important;
}

#seatPickerModal .seats-key .individual_seat {
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
    display: block !important;
}

#seatPickerModal .seats-key .individual_seat:not(.seat_available):not(.seat_disabled):not(.seat_selected) {
    background: #e6e9ee !important;
    border-radius: 50% !important;
}

#seatPickerModal .seats-key .individual_seat.seat_available {
    background: linear-gradient(135deg, #e3ba2d 0%, #c9a526 100%) !important;
}

#seatPickerModal .seats-key .individual_seat.seat_disabled {
    background: linear-gradient(135deg, #1c323a 0%, #264653 100%) !important;
}

#seatPickerModal .seats-key .individual_seat.seat_selected {
    background: linear-gradient(135deg, #319eca 0%, #2a8bb8 100%) !important;
}

#seatPickerModal .seats-key strong {
    font-weight: 500 !important;
    color: #475569 !important;
}

/* Modal Footer - Always visible at bottom */
#seatPickerModal .modal-footer {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    padding: 16px 24px !important;
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    flex-shrink: 0 !important;
}

#seatPickerModal .modal-footer .pull-left {
    flex: 0 0 auto !important;
    margin-right: auto !important;
}

#seatPickerModal .modal-footer .pull-left p {
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #319eca 0%, #2a8bb8 100%) !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    display: inline-block !important;
    border: 2px solid #2a8bb8 !important;
    white-space: nowrap !important;
}

#seatPickerModal .modal-footer .pull-left p strong {
    color: #fff !important;
}

#seatPickerModal .modal-footer .actions {
    display: flex !important;
    gap: 12px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    flex-shrink: 0 !important;
}

#seatPickerModal .modal-footer .actions .btn-default,
#seatPickerModal .modal-footer .actions button[data-dismiss="modal"] {
    background: #1c323a !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

#seatPickerModal .modal-footer .actions .btn-default:hover,
#seatPickerModal .modal-footer .actions button[data-dismiss="modal"]:hover {
    background: #264653 !important;
}

#seatPickerModal .modal-footer .actions .btn-primary {
    background: linear-gradient(135deg, #e3ba2d 0%, #c9a526 100%) !important;
    color: #1c323a !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    box-shadow: 0 4px 12px rgba(227, 186, 45, 0.3) !important;
}

#seatPickerModal .modal-footer .actions .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(227, 186, 45, 0.4) !important;
}

#seatPickerModal .modal-footer .actions .btn-primary:disabled {
    background: #cbd5e1 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    #seatPickerModal .modal-dialog {
        max-width: 100% !important;
        margin: 10px !important;
    }

    #seatPickerModal .modal-header {
        padding: 16px 18px !important;
    }

    #seatPickerModal .modal-header .modal-title-wrapper h4 {
        font-size: 1.1rem !important;
    }

    #seatPickerModal .modal-header .modal-title-wrapper p {
        display: none !important;
    }

    #seatPickerModal .seat-allocation-bar,
    #seatPickerModal .actions {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px 16px !important;
    }

    #seatPickerModal .confirm-seats-btn,
    #seatPickerModal .actions button {
        width: 100% !important;
        justify-content: center !important;
    }

    #seatPickerModal .owl-carousel,
    #seatPickerModal #seatingPlanStages {
        padding: 12px !important;
    }

    #seatPickerModal .seats-key ul {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    #seatPickerModal .seats-table td {
        width: 26px !important;
        height: 26px !important;
    }

    #seatPickerModal .seats-table td .seat-sizer {
        font-size: 7px !important;
        line-height: 26px !important;
    }

    /* Fix: Ensure modal-footer is always visible on mobile */
    #seatPickerModal .modal-content {
        display: flex !important;
        flex-direction: column !important;
        max-height: 90vh !important;
    }

    #seatPickerModal .modal-body {
        flex: 1 1 auto !important;
        overflow-y: auto !important;
        max-height: none !important;
    }

    #seatPickerModal .modal-footer {
        flex-shrink: 0 !important;
        position: sticky !important;
        bottom: 0 !important;
        background: #fff !important;
        z-index: 200 !important;
    }

    /* Add space between back button and section name on mobile */
    #seatPickerModal .back-button {
        margin-bottom: 28px !important;
    }

    #seatPickerModal .section-name,
    #seatPickerModal #seatPicker .section-name {
        margin-top: 24px !important;
    }
}

/* ==========================================
   POINTER EVENTS FIX - CRITICAL
   ========================================== */

#seatPickerModal,
#seatPickerModal .modal-dialog,
#seatPickerModal .modal-content,
#seatPickerModal .modal-body,
#seatPickerModal .owl-carousel,
#seatPickerModal .owl-carousel .owl-item,
#seatPickerModal .owl-carousel .slide,
#seatPickerModal #seatingPlanStages,
#seatPickerModal #seatingPlanStages .slide,
#seatPickerModal .seating-plan,
#seatPickerModal .seating-plan-area,
#seatPickerModal .area-overflow,
#seatPickerModal #seatPicker,
#seatPickerModal .seats-table {
    pointer-events: auto !important;
}

/* All interactive elements */
#seatPickerModal .select-tier,
#seatPickerModal td,
#seatPickerModal button,
#seatPickerModal a {
    pointer-events: auto !important;
}

/* ==========================================
   MOBILE RESPONSIVE STYLES
   ========================================== */

/* Mobile horizontal and vertical scroll for section overview */
@media (max-width: 768px) {
    #seatPickerModal .area-overflow {
        overflow-x: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 10px !important;
        max-height: 60vh !important;
    }

    #seatPickerModal .seating-plan {
        min-width: max-content !important;
        overflow: visible !important;
    }

    #seatPickerModal .seating-plan-area {
        min-width: max-content !important;
        margin: 0 !important;
        margin-right: auto !important;
        overflow: visible !important;
    }

    /* Seat picker individual view scroll */
    #seatPickerModal #seatPicker .seats-table {
        overflow-x: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-height: 50vh !important;
    }

    #seatPickerModal #seatPicker .seats-table table {
        min-width: max-content !important;
    }

    /* Fix individual seats to be perfect circles on mobile */
    #seatPickerModal .seats-table td.individual_seat {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        border-radius: 50% !important;
        font-size: 9px !important;
        line-height: 28px !important;
        padding: 0 !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
    }

    #seatPickerModal .seats-table table {
        border-spacing: 3px !important;
    }

    /* Row labels on mobile */
    #seatPickerModal .seats-table td.seat-sizer,
    #seatPickerModal .seats-table .seat-sizer {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 11px !important;
        line-height: 28px !important;
    }

    /* Fix horizontal scroll for seats table on mobile */
    #seatPickerModal #seatPicker {
        overflow: visible !important;
        width: 100% !important;
    }

    #seatPickerModal .owl-carousel .owl-item,
    #seatPickerModal .owl-carousel .owl-stage-outer,
    #seatPickerModal .owl-carousel .owl-stage {
        overflow: visible !important;
    }

    #seatPickerModal #seatPicker .seats-table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: scroll !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        max-height: 55vh !important;
        padding: 10px !important;
    }

    #seatPickerModal #seatPicker .seats-table table {
        min-width: 100% !important;
        width: max-content !important;
        margin: 0 !important;
    }
}
