﻿/* ===== Hushva - Premium Cinema Seating Map ===== */

/* --- Base & Page --- */
body {
    background-color: #f4f6ff;
    min-height: 100vh;
    font-family: 'Heebo', 'Open Sans', sans-serif;
}

#hushvaContent {
    padding-bottom: 90px;
}

.app-content.container.center-layout {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

/* Fixed Footer Responsive Styles */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 100;
}

@media (max-width: 767.98px) {
    .fixed-footer {
        font-size: 10px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .fixed-footer .container,
    .fixed-footer .row {
        margin: 0;
        padding: 0 5px;
    }

    .fixed-footer .col-12 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .fixed-footer a[href*="expo.co.il"] {
        font-size: 10px;
    }
}

@media (max-width: 575.98px) {
    .fixed-footer {
        font-size: 9px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .fixed-footer a[href*="expo.co.il"] {
        font-size: 9px;
    }
}

/* --- Logo Styles (matching site-wide) --- */
#LogoRightUp,
#LogoRight,
#Logo2Left,
[id$="LogoRight_"],
[id$="Logo2Left_"] {
    max-width: none;
    height: auto;
    display: block;
    margin: 0 auto;
}

#LogoMiddle,
[id$="LogoMiddle_"] {
    width: 100vw;
    max-width: none;
    height: auto;
    display: block;
    margin: 0 auto;
}

[id$="LogoMiddleContainer"] {
    width: 100%;
}

.LogoRightContainer {
    text-align: right;
}

.Logo2LeftContainer {
    text-align: left;
}

@media (max-width: 576px) {
    .logoCouple-sm {
        max-height: 82px;
    }
}

@media (min-width: 575.9px) {
    .logoCouple-md {
        max-height: 142px;
    }
}

/* ===== Step Progress Indicator ===== */
.hushva-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 16px auto;
    max-width: 400px;
    gap: 0;
}

.hushva-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.hushva-step.active {
    opacity: 1;
}

.hushva-step.completed {
    opacity: 0.7;
}

.hushva-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e4f0;
    border: 2px solid #c0c6d8;
    color: #8899bb;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hushva-step.active .hushva-step-number {
    background: linear-gradient(135deg, #5c63e0 0%, #7c83ff 100%);
    border-color: #7c83ff;
    color: #fff;
    box-shadow: 0 0 16px rgba(92,99,224,0.4);
}

.hushva-step.completed .hushva-step-number {
    background: linear-gradient(135deg, #2a8a5a 0%, #3ab06a 100%);
    border-color: #3ab06a;
    color: #fff;
}

.hushva-step-label {
    color: #556;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.hushva-step.active .hushva-step-label {
    color: #1a1a2e;
}

.hushva-step.completed .hushva-step-label {
    color: #6adb8a;
}

.hushva-step-line {
    flex: 1;
    height: 2px;
    background: #c0c6d8;
    margin: 0 16px;
    margin-bottom: 22px;
    position: relative;
    min-width: 60px;
}

.hushva-step-line.filled {
    background: linear-gradient(90deg, #3ab06a 0%, #5c63e0 100%);
}

/* --- Event Section --- */
.hushva-event-section {
    margin-top: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hushva-event-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    border: 1px solid #e3e6f0;
}

.hushva-event-header {
    background: linear-gradient(135deg, #5c63e0 0%, #7c83ff 100%);
    padding: 24px 32px;
    text-align: center;
}

.hushva-title {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    letter-spacing: 0.5px;
}

.hushva-event-body {
    padding: 8px;
}

.hushva-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hushva-event-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hushva-pratim {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 8px 0 16px 0;
    white-space: pre-line;
    text-align: center;
}

/* --- Date/Time Selection Panel --- */
.hushva-selection-panel {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
    border: 1px solid #e3e6ec;
}

.hushva-selection-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    text-align: center;
}

.hushva-event-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
}

.hushva-event-row {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e3e6ec;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 16px;
}

.hushva-event-row:hover {
    border-color: #7c83ff;
    background: #f0f1ff;
}

.hushva-event-row.selected {
    border-color: #5c63e0;
    background: linear-gradient(135deg, #eef0ff 0%, #e8eaff 100%);
    box-shadow: 0 2px 12px rgba(92,99,224,0.15);
}

.hushva-event-row .hushva-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #bbb;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hushva-event-row.selected .hushva-radio {
    border-color: #5c63e0;
}

.hushva-event-row.selected .hushva-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #5c63e0;
    border-radius: 50%;
}

.hushva-event-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    flex: 1;
}

.hushva-event-day,
.hushva-event-date,
.hushva-event-time {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    direction: ltr;
}

/* --- Action Button --- */
.hushva-action-container {
    padding: 20px 0 8px 0;
    text-align: center;
}

.hushva-btn-primary {
    background: linear-gradient(135deg, #5c63e0 0%, #7c83ff 100%);
    color: #fff;
    border: none;
    padding: 14px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(92,99,224,0.25);
    letter-spacing: 0.5px;
}

.hushva-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(92,99,224,0.35);
}

.hushva-btn-primary:disabled {
    background: #bbb;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

/* --- Back Button & Header Row --- */
.hushva-header-top-row {
    display: flex;
    justify-content: flex-start;
    direction: rtl;
    margin-bottom: 6px;
}

.hushva-header-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
}

.hushva-btn-back {
    background: none;
    border: 1px solid #d0d4e0;
    color: #666;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Heebo', sans-serif;
    white-space: nowrap;
}

.hushva-btn-back:hover {
    border-color: #7c83ff;
    color: #5c63e0;
    background: rgba(92,99,224,0.05);
}

/* ===== Seating Map Section ===== */
.hushva-map-section {
    margin-top: 4px;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hushva-map-card {
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px 24px 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    overflow: visible;
    border: 1px solid #e3e6f0;
}

.hushva-map-header {
    margin-bottom: 8px;
}

.hushva-hall-title {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.hushva-separator {
    margin: 0 4px;
    color: #ccc;
}

/* --- Stage --- */
.hushva-stage-container {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.hushva-stage {
    width: 50%;
    max-width: 400px;
    padding: 6px 0;
    background: linear-gradient(180deg, rgba(92,99,224,0.12) 0%, rgba(92,99,224,0.03) 100%);
    border: 1px solid rgba(92,99,224,0.25);
    border-radius: 0 0 50% 50%;
    text-align: center;
    color: #5c63e0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* --- Seating Map Wrapper --- */
.hushva-map-scroll {
    overflow-x: auto;
    direction: ltr;
    text-align: center;
    padding-top: 40px;
}

/* --- Seating Map Layout --- */
.hushva-seating-map {
    display: inline-flex;
    align-items: flex-start;
    direction: ltr;
    min-height: 100px;
}

.hushva-map-side {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-shrink: 0;
}

.hushva-map-side.right-side {
    justify-content: flex-start;
}

.hushva-map-side.left-side {
    justify-content: flex-end;
}

.hushva-map-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.hushva-zone-spacer {
    flex-shrink: 0;
}

/* --- Zone --- */
.hushva-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 6px;
    flex-shrink: 0;
}

.hushva-zone-label {
    color: #5c63e0;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
    white-space: nowrap;
    padding: 3px 10px;
    background: rgba(92,99,224,0.08);
    border-radius: 12px;
    border: 1px solid rgba(92,99,224,0.15);
}

/* --- Row --- */
.hushva-row {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
    gap: 3px;
}

.hushva-row-number {
    color: #999;
    font-size: 10px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
    font-weight: 600;
}

/* --- Seats --- */
.hushva-seat {
    width: 32px;
    height: 32px;
    border-radius: 6px 6px 3px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
    user-select: none;
}

.hushva-seat-available {
    background: linear-gradient(180deg, #e8eaf6 0%, #d5d8ee 100%);
    border: 1px solid #c0c4e0;
    color: #555;
}

.hushva-seat-available:hover {
    background: linear-gradient(180deg, #c5caef 0%, #b0b6e8 100%);
    border-color: #7c83ff;
    transform: scale(1.12);
    z-index: 2;
    color: #333;
}

.hushva-seat-selected {
    background: linear-gradient(180deg, #5c63e0 0%, #4a50c8 100%) !important;
    border: 1px solid #7c83ff !important;
    color: #fff !important;
    box-shadow: 0 0 10px rgba(92,99,224,0.5);
}

.hushva-seat-accessible {
    background: transparent;
    border: none;
    color: #1565C0;
    font-size: 28px;
    line-height: 1;
}

.hushva-seat-accessible:hover {
    background: transparent;
    color: #0D47A1;
    transform: scale(1.12);
    z-index: 2;
}

.hushva-seat-accessible.hushva-seat-selected {
    background: linear-gradient(180deg, #5c63e0 0%, #4a50c8 100%) !important;
    border: 1px solid #7c83ff !important;
    color: #fff !important;
    box-shadow: 0 0 10px rgba(92,99,224,0.5);
}

.hushva-seat-reserved {
    background: linear-gradient(180deg, #4dd0e1 0%, #26c6da 100%);
    border: 1px solid #00acc1;
    color: #fff;
    cursor: not-allowed;
}

.hushva-seat-blocked {
    width: 32px;
    height: 32px;
    visibility: hidden;
}

.hushva-seat-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    z-index: 10;
}

.hushva-seat:hover .hushva-seat-tooltip {
    opacity: 1;
}

/* --- Legend --- */
.hushva-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e3e6f0;
}

.hushva-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.hushva-legend .hushva-seat-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px 5px 3px 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.hushva-legend .hushva-seat-available {
    background: linear-gradient(180deg, #e8eaf6 0%, #d5d8ee 100%);
    border: 1px solid #c0c4e0;
}

.hushva-legend .hushva-seat-selected {
    background: linear-gradient(180deg, #5c63e0 0%, #4a50c8 100%);
    border: 1px solid #7c83ff;
}

.hushva-legend .hushva-seat-accessible {
    background: transparent;
    border: none;
    color: #1565C0;
    font-size: 22px;
    line-height: 1;
}

.hushva-legend .hushva-seat-reserved {
    background: linear-gradient(180deg, #4dd0e1 0%, #26c6da 100%);
    border: 1px solid #00acc1;
}

/* --- Selection Summary --- */
.hushva-selection-summary {
    margin-top: 20px;
    padding: 16px 24px;
    background: rgba(92,99,224,0.06);
    border: 1px solid rgba(92,99,224,0.2);
    border-radius: 12px;
    text-align: center;
}

.hushva-summary-content {
    color: #333;
    font-size: 15px;
}

.hushva-summary-content strong {
    color: #5c63e0;
    font-size: 18px;
}

.hushva-seats-list {
    display: inline;
    margin-right: 12px;
    color: #666;
    font-size: 13px;
}

.hushva-summary-total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(92,99,224,0.15);
    font-size: 16px;
    color: #1a1a2e;
}

.hushva-summary-total strong {
    color: #5c63e0;
    font-size: 20px;
}

/* --- Continue to Purchase Button --- */
.hushva-continue-container {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(92,99,224,0.15);
    text-align: center;
}

.hushva-btn-continue {
    background: linear-gradient(135deg, #2a8a5a 0%, #3ab06a 100%);
    color: #fff;
    border: none;
    padding: 14px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(42,138,90,0.3);
    letter-spacing: 0.5px;
    font-family: 'Heebo', sans-serif;
}

.hushva-btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(42,138,90,0.4);
}

.hushva-btn-continue:disabled {
    background: #bbb;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

/* --- Ticket Info on FR page --- */
.hushva-ticket-info {
    margin-bottom: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
    border: 1px solid rgba(92,99,224,0.2);
    border-radius: 14px;
    direction: rtl;
}

.hushva-ticket-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(92,99,224,0.15);
}

.hushva-ticket-header h3 {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.hushva-back-to-map-row {
    text-align: right;
    margin-bottom: 10px;
}

.hushva-back-to-map-btn {
    background: none;
    border: 1px solid #5c63e0;
    color: #5c63e0;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.hushva-back-to-map-btn:hover {
    background: #5c63e0;
    color: #fff;
}

@media (max-width: 767px) {
    .hushva-back-to-map-row {
        text-align: center;
        margin-bottom: 8px;
    }
}

.hushva-ticket-event-details {
    color: #555;
    font-size: 22px;
    font-weight: bold;
}

.hushva-ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
    font-size: 14px;
}

.hushva-ticket-table th {
    background: rgba(92,99,224,0.08);
    color: #333;
    font-weight: 700;
    padding: 10px 12px;
    text-align: center;
    border-bottom: 2px solid rgba(92,99,224,0.15);
}

.hushva-ticket-table td {
    padding: 8px 12px;
    text-align: center;
    color: #444;
    border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
    .hushva-ticket-table {
        width: 50%;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .hushva-ticket-table th {
        padding: 5px 6px;
    }

    .hushva-ticket-table td {
        padding: 4px 6px;
    }
}

@media (max-width: 767px) {
    .hushva-ticket-table {
        margin-bottom: 24px;
    }

    .hushva-map-scroll::-webkit-scrollbar {
        display: none;
    }

    .hushva-map-scroll {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.hushva-ticket-table tr:last-child td {
    border-bottom: none;
}

.hushva-ticket-total {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    padding-top: 12px;
    border-top: 2px solid rgba(92,99,224,0.2);
}

.hushva-ticket-total span {
    color: #5c63e0;
    font-size: 22px;
}

/* --- Single Event (no selection needed) --- */
.hushva-single-event {
    padding: 12px 16px;
    background: linear-gradient(135deg, #eef0ff 0%, #e8eaff 100%);
    border: 2px solid #5c63e0;
    border-radius: 10px;
    text-align: center;
}

.hushva-single-event .hushva-event-name {
    font-size: 16px;
    color: #1a1a2e;
}

.hushva-single-event .hushva-event-day,
.hushva-single-event .hushva-event-date,
.hushva-single-event .hushva-event-time {
    color: #555;
}

/* --- Error --- */
.hushva-error {
    text-align: center;
    padding: 48px 24px;
    color: #e74c3c;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    border-radius: 16px;
    margin-top: 24px;
    border: 1px solid #e3e6f0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hushva-title {
        font-size: 22px;
    }

    .hushva-map-card {
        padding: 20px 12px;
    }

    .hushva-seat {
        width: 26px;
        height: 26px;
        font-size: 8px;
    }

    .hushva-seat-blocked {
        width: 26px;
        height: 26px;
    }

    .hushva-row-number {
        width: 18px;
        font-size: 9px;
    }

    .hushva-stage {
        width: 80%;
    }

    .hushva-stage-container {
        margin-bottom: 2px;
    }

    .hushva-map-scroll {
        padding-top: 28px;
    }

    .hushva-event-row {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 10px;
    }

    .hushva-event-row .hushva-event-name {
        flex: 0 1 auto;
        white-space: nowrap;
    }

    .hushva-event-day,
    .hushva-event-date,
    .hushva-event-time {
        margin-right: 2px;
    }

    .hushva-selection-panel {
        padding: 14px 10px;
    }

    .hushva-legend {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hushva-btn-primary {
        padding: 12px 32px;
        font-size: 16px;
    }

    .hushva-steps {
        max-width: 300px;
    }

    .hushva-hall-title {
        font-size: 16px;
    }

    .hushva-header-top-row {
        justify-content: center;
    }

    .hushva-header-info {
        font-size: 12px;
    }

    .hushva-zone {
        margin: 0 3px;
    }

    .hushva-row {
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .app-content.container.center-layout {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hushva-map-card {
        padding: 16px 8px;
        border-radius: 12px;
    }

    .hushva-seat {
        width: 22px;
        height: 22px;
        font-size: 7px;
        border-radius: 4px 4px 2px 2px;
    }

    .hushva-seat-blocked {
        width: 22px;
        height: 22px;
    }

    .hushva-row {
        gap: 1px;
        margin-bottom: 2px;
    }

    .hushva-row-number {
        width: 16px;
        font-size: 8px;
    }

    .hushva-zone {
        margin: 0 2px;
    }

    .hushva-step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .hushva-step-label {
        font-size: 11px;
    }

    .hushva-hall-title {
        font-size: 15px;
    }

    .hushva-btn-back {
        font-size: 11px;
        padding: 5px 12px;
    }

    .hushva-header-info {
        font-size: 11px;
    }

    .hushva-event-header {
        padding: 16px 16px;
    }

    .hushva-title {
        font-size: 20px;
    }

    .hushva-legend {
        gap: 10px;
        font-size: 11px;
    }

    .hushva-legend .hushva-seat-icon {
        width: 20px;
        height: 20px;
    }
}

/* --- Scrollbar for map area (fallback if zoom fails) --- */
.hushva-map-scroll::-webkit-scrollbar {
    height: 6px;
}

.hushva-map-scroll::-webkit-scrollbar-track {
    background: #f0f0f4;
    border-radius: 3px;
}

.hushva-map-scroll::-webkit-scrollbar-thumb {
    background: #c0c4d0;
    border-radius: 3px;
}

.hushva-event-list::-webkit-scrollbar {
    width: 6px;
}

.hushva-event-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.hushva-event-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* --- Toast Popup --- */
.hushva-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: linear-gradient(135deg, #5c63e0 0%, #4a50c8 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(92,99,224,0.35);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    text-align: center;
    direction: rtl;
}

.hushva-toast-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* --- Timer Bar (FR page) --- */
.hushva-timer-bar {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.hushva-timer-bar strong {
    font-size: 22px;
    color: #5c63e0;
    margin-right: 6px;
}

/* --- Overlay Popup --- */
.hushva-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
}

.hushva-overlay-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.hushva-overlay-box h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #1a1a2e;
}

.hushva-overlay-box p {
    margin: 0 0 24px 0;
    font-size: 15px;
    color: #555;
    white-space: pre-line;
}

.hushva-overlay-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hushva-overlay-btn {
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hushva-overlay-btn-primary {
    background: linear-gradient(135deg, #5c63e0 0%, #4a50c8 100%);
    color: #fff;
}

.hushva-overlay-btn-primary:hover {
    box-shadow: 0 4px 16px rgba(92,99,224,0.4);
}

.hushva-overlay-btn-secondary {
    background: #e8eaf6;
    color: #333;
}

.hushva-overlay-btn-secondary:hover {
    background: #d5d8ee;
}

/* --- Global Reservation Floating Popup --- */
.hushva-reservation-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99998;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    padding: 16px 20px;
    direction: rtl;
    min-width: 220px;
    max-width: 320px;
    border: 2px solid rgba(92,99,224,0.3);
    font-family: 'Heebo', 'Open Sans', sans-serif;
    animation: hushvaPopupSlideIn 0.35s ease;
}

@keyframes hushvaPopupSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hushva-rpopup-timer {
    text-align: center;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.hushva-rpopup-timer-label {
    font-weight: 500;
}

.hushva-rpopup-timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #5c63e0;
    margin-right: 4px;
}

.hushva-rpopup-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(92,99,224,0.15);
}

.hushva-rpopup-event {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
    text-align: center;
}

.hushva-rpopup-seats {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.hushva-rpopup-seat {
    font-size: 12px;
    color: #555;
    text-align: center;
}

.hushva-rpopup-total {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #5c63e0;
    margin-bottom: 10px;
}

.hushva-rpopup-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #5c63e0 0%, #7c83ff 100%);
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Heebo', sans-serif;
    text-align: center;
}

.hushva-rpopup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(92,99,224,0.35);
}

@media (max-width: 480px) {
    .hushva-reservation-popup {
        right: 10px;
        bottom: 10px;
        left: 10px;
        max-width: none;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    body.hushva-popup-active {
        padding-bottom: 280px;
    }
}
