/* =============================================================================
   eventmie-custom.css — jazzslu project-specific layout & skin
   =============================================================================
   PURPOSE: Project-specific layout and skin that cannot live in the DaisyUI theme.

   COLOUR RULES:
     - Use DaisyUI tokens: var(--color-primary), var(--color-base-100/200/300),
       var(--color-base-content), var(--color-success), var(--color-error), etc.
     - Use alias tokens: var(--color-surface), var(--color-card-bg),
       var(--color-card-border), var(--color-text-base), var(--color-text-muted).
     - Use extended runtime tokens: var(--color-navbar-bg), var(--color-navbar-text),
       var(--color-footer-bg), var(--color-footer-text).
     - Do NOT hardcode hex colours — use CSS vars so the theme is a single source
       of truth.
     - Do NOT override DaisyUI component classes (.btn, .input, .toggle, etc.).

   Load order:
     1. app.css  (Vite → Tailwind + DaisyUI jazz-light theme)
     2. theme-custom.css  (eventmie-pro package, empty)
     3. theme_vars.blade.php  (runtime extended var overrides)
     4. THIS FILE  ← highest priority
   ============================================================================= */

/* =============================================================================
   Base typography
   ============================================================================= */

body {
    font-family: var(--font-body);
    color: var(--color-text-base);
    background-color: var(--color-surface);
}

h1, h2, h3, h4, h5, h6,
.brand-font {
    font-family: var(--font-heading);
    font-weight: 700;
   /*  color: var(--color-text-base); */
}
/*
 * WARNING: Do NOT add a global `a { color: ... }` rule here.
 *
 * DaisyUI .btn uses <a> tags with a background colour matching --color-primary.
 * A global link colour sets both background AND text to the same colour, making
 * button labels invisible (green text on green background, etc.).
 *
 * To style plain prose links, use a scoped selector instead:
 *   .rte-content a { color: var(--color-primary); }
 *
 * DaisyUI handles link colours inside its own components correctly.
 * Do not fight the framework with a global a {} rule.
 */
/* =============================================================================
   Navigation
   ============================================================================= */

.navbar,
.nav-header .navbar,
header.nav-header {
    background-color: var(--color-navbar-bg);
    box-shadow: 0 1px 0 var(--color-card-border);
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: var(--color-navbar-text);
}

.nav-header {
    background: var(--color-navbar-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--color-card-border);
    position: relative;
    z-index: 1030;
    padding-top: env(safe-area-inset-top, 0);
}

.nav-header .modern-navbar-shell {
    padding: 0.5rem 0;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 0;
}

.nav-header .site-name {
    color: var(--color-navbar-text);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-header .site-slogan {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.nav-header .navbar .nav-link {
    font-weight: 600;
    color: var(--color-navbar-text);
    padding-left: 1rem;
    padding-right: 1rem;
    transition: color 0.2s ease;
}

.nav-header .navbar .nav-link:hover,
.nav-header .navbar .nav-link:focus {
    color: var(--color-primary);
    background: transparent;
}

.navbar .nav-link { border-radius: 999px; }
.navbar .nav-link:hover { background: color-mix(in oklch, var(--color-primary) 10%, transparent); }
.navbar .dropdown-menu {
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    box-shadow: var(--shadow-elevated);
}

.brand-wrap { display: flex; align-items: center; gap: 10px; }
.brand-wrap .brand-logo { height: 42px; width: auto; }
.brand-copy .site-name { font-size: 1rem; font-weight: 700; line-height: 1.1; }
.brand-copy .site-slogan { font-size: 0.75rem; color: var(--color-text-muted); }

.nav-discover-btn {
    min-height: 48px;
    border-radius: 999px;
    padding: 0.55rem 1.15rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-actions { margin-top: 0.5rem; }

.nav-cart-wrap .shopping-cart .cart-trigger,
.nav-mobile-cart .cart-trigger {
    min-width: 48px;
    min-height: 48px;
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
}

.nav-header.header-position .navbar .site-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 3.4rem;
    margin-top: 0.2rem;
}

/* =============================================================================
   Footer
   — Base colours live in app.css (footer.site-footer).
   — Only project-specific layout classes here.
   ============================================================================= */

.modern-footer { border-top: 1px solid rgba(148, 163, 184, 0.2); }
.footer-brand-logo { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; }
.footer-brand-name { color: var(--color-base-100); font-size: 1.75rem; font-weight: 700; line-height: 1; }
.footer-copy { color: var(--color-footer-text); opacity: 0.7; max-width: 280px; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { color: var(--color-footer-text); text-decoration: none; }
.footer-links a:hover { color: var(--color-base-100); }

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
}
.footer-social-link svg {
    width: 17px;
    height: 17px;
    display: block;
    flex-shrink: 0;
}
.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--color-base-100);
}

.modern-footer-bottom { border-top: 1px solid rgba(148, 163, 184, 0.22); }
.footer-inline-link { color: var(--color-info); text-decoration: none; }
.footer-lang-link { color: var(--color-footer-text); font-size: 0.85rem; font-weight: 600; margin-left: 0.4rem; text-decoration: none; }
.footer-lang-link.active,
.footer-lang-link:hover { color: var(--color-base-100); }

/* =============================================================================
   Hero / Banner
   ============================================================================= */

.cover-img { display: none; }

.cover-img-bg {
    min-height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .cover-img-bg {
        min-height: 640px;
    }
}

.cover-img-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(0px) brightness(0.8);
    transform: scale(1.1);
    z-index: 0;
}

.cover-img-bg > .container { position: relative; z-index: 1; }

.event-portrait-poster {
    max-height: 420px;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(255, 255, 255, 0.15);
    object-fit: contain;
}

.banner-slider-form {
    max-width: 840px;
    padding: 122px 1.25rem 92px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    z-index: 2;
}

@media (min-width: 992px) {
    .banner-slider-form {
        padding: 140px 1.25rem 100px;
    }
}

.banner-slider-form p {
    color: var(--color-primary-content);
    font-weight: 500;
}

/* =============================================================================
   Home search shell
   ============================================================================= */

.home-search-shell {
    position: relative;
    z-index: 8;
}

/* =============================================================================
   Event listing
   ============================================================================= */

.events-listing-shell .events-filter-toolbar {
    border: 1px solid var(--color-card-border);
    border-radius: 14px;
    background: var(--color-card-bg);
    padding: 0.9rem 1rem;
}

.events-listing-shell .events-filter-panel {
    padding: 0.9rem;
    border: 1px solid var(--color-card-border);
    border-radius: 14px;
    background: var(--color-card-bg);
}

/* Remove giant empty hero space on listings page */
main > .lgx-page-wrapper { padding-top: 2rem; padding-bottom: 4rem; }

.event-modern-card {
    border-radius: 18px;
    border: 1px solid var(--color-card-border);
    padding: 10px;
    background: var(--color-card-bg);
    box-shadow: var(--shadow-card);
}

.event-modern-card .back-image { min-height: 195px; border-radius: 14px; }
.event-modern-body { padding: 6px 4px 4px; }
.event-title { font-weight: 700; margin-top: 4px; }

.event-status-pill {
    display: inline-flex; align-items: center; border-radius: 999px;
    border: 1px solid color-mix(in oklch, var(--color-primary) 30%, var(--color-base-300));
    background: color-mix(in oklch, var(--color-primary) 8%, var(--color-base-100));
    color: color-mix(in oklch, var(--color-primary) 80%, var(--color-neutral));
    font-size: 0.72rem; font-weight: 600; line-height: 1;
    margin-right: 0.35rem; margin-bottom: 0.35rem; padding: 0.28rem 0.52rem;
}

.event-price { color: var(--color-success-content); font-weight: 700; }

.event-buy-btn {
    border-radius: 12px;
    min-height: 44px;
    font-weight: 700;
}

.event-list-view { display: flex; flex-direction: row; align-items: stretch; }
.event-list-view .event-modern-media { width: 300px; flex-shrink: 0; }
.event-list-view .event-modern-media .back-image { height: 100%; border-radius: var(--radius-md) 0 0 var(--radius-md); }
.event-list-view .event-modern-body { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.event-list-view .event-modern-body .mt-3 { margin-top: auto; }

/* =============================================================================
   Event detail / schedule date cards
   ============================================================================= */

.lgx-single-schedule {
    cursor: pointer;
    border: 1.5px solid var(--color-card-border);
    border-radius: var(--radius-box);
    background-color: var(--color-card-bg);
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lgx-single-schedule:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-primary) 15%, transparent);
}

.lgx-single-schedule.expired-event,
.lgx-single-schedule.outofstock-event {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Month tab nav in repetitive events */
.nav-lb-tab { display: flex; gap: 0.25rem; list-style: none; padding: 0; margin: 0; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; }
.nav-lb-tab .nav-link {
    border-radius: 999px; padding: 0.3rem 0.85rem; font-size: 0.8rem; font-weight: 600;
    color: var(--color-text-muted); border: 1px solid var(--color-card-border);
    background: transparent; transition: all 0.15s; white-space: nowrap; cursor: pointer;
}
.nav-lb-tab .nav-link.active,
.nav-lb-tab .nav-link:hover { background: var(--color-primary); color: var(--color-primary-content); border-color: var(--color-primary); }

/* =============================================================================
   Organizer profile
   ============================================================================= */

.organizer-profile-shell { margin-bottom: 2rem; }
.organizer-cover { height: 190px; background: linear-gradient(120deg, color-mix(in oklch, var(--color-primary) 70%, var(--color-base-100)) 0%, var(--color-primary) 50%, color-mix(in oklch, var(--color-primary) 50%, var(--color-neutral)) 100%); }
.organizer-profile-card { margin-top: -66px; border-radius: 0 0 16px 16px; border: 1px solid var(--color-card-border); background: var(--color-card-bg); box-shadow: var(--shadow-elevated); }
.organizer-profile-body { max-width: 760px; margin: 0 auto; padding: 0 1.5rem 1rem; }
.organizer-avatar { width: 96px; height: 96px; margin-top: -48px; object-fit: cover; }
.organizer-verified { left: calc(50% + 24px); top: -38px; }
.organizer-name { font-size: 2rem; font-weight: 700; }
.organizer-joined, .organizer-description { color: var(--color-text-muted); }
.organizer-description { max-width: 620px; margin-left: auto; margin-right: auto; }
.organizer-stats { display: inline-flex; gap: 1rem; color: var(--color-text-muted); }
.organizer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--color-card-border); color: var(--color-primary); background: color-mix(in oklch, var(--color-primary) 8%, var(--color-base-100)); }
.organizer-tabs { border-top: 1px solid var(--color-card-border); padding: 0 1rem; }
.organizer-tabs .nav-link { color: var(--color-text-muted); font-weight: 600; border-bottom: 2px solid transparent; border-radius: 0; padding: 0.9rem 1rem; }
.organizer-tabs .nav-link.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

/* =============================================================================
   Customer profile / bookings
   ============================================================================= */

.customer-dashboard-title { font-weight: 700; color: var(--color-text-base); }
.customer-booking-card {
    border: 1px solid var(--color-card-border);
    border-radius: 14px;
    background: var(--color-card-bg);
    padding: 12px;
    margin-bottom: 12px;
    contain: layout style;
}
.customer-booking-card-image { width: 88px; height: 66px; object-fit: cover; }
.customer-booking-meta { display: grid; gap: 4px; font-size: 0.9rem; }
.customer-profile-shell .card { border-radius: 16px; }
.customer-profile-nav-wrap { overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.customer-profile-nav { flex-wrap: nowrap; gap: 0.5rem; min-width: max-content; padding: 0.5rem 0; }
.customer-profile-nav .nav-link {
    border-radius: 999px; padding: 0.55rem 0.9rem;
    background: var(--color-surface);
    border: 1px solid var(--color-card-border); white-space: nowrap; font-weight: 600; color: var(--color-text-base);
}
.customer-profile-nav .nav-link.active {
    background: var(--color-primary);
    color: var(--color-primary-content);
    border-color: var(--color-primary);
}

/* =============================================================================
   Mobile sticky checkout
   ============================================================================= */

.mobile-sticky-checkout {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
    background-color: var(--color-card-bg);
    border-top: 1px solid var(--color-card-border);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.checkout-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.checkout-actions .btn { flex: 1; min-height: 48px; border-radius: 999px; }

/* =============================================================================
   Cart summary
   ============================================================================= */

.cart-summary-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 7px 0; border-bottom: 1px solid var(--color-card-border);
    font-size: 14px; gap: 8px;
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-label { color: var(--color-text-muted); font-weight: 500; flex-shrink: 0; }
.cart-value { font-weight: 600; color: var(--color-text-base); text-align: right; }
.cart-discount-row .cart-label { color: var(--color-success-content); }

.cart-grand-total-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 12px 0 4px; border-top: 2px solid var(--color-primary);
    margin-top: 4px; gap: 8px;
}
.cart-grand-total-label { font-weight: 700; font-size: 15px; color: var(--color-text-base); flex-shrink: 0; }
.cart-grand-total-value { font-weight: 700; font-size: 18px; color: var(--color-primary); text-align: right; }

/* =============================================================================
   Rich text editor content
   ============================================================================= */

.rte-content { font-size: 15px; line-height: 1.75; color: var(--color-text-base); word-break: break-word; }
.rte-content > *:first-child { margin-top: 0; }
.rte-content > *:last-child  { margin-bottom: 0; }
.rte-content h1,.rte-content h2,.rte-content h3,.rte-content h4 { margin-top: 1.4em; margin-bottom: 0.5em; font-weight: 700; line-height: 1.3; }
.rte-content p { margin-bottom: 0.9em; }
.rte-content ul,.rte-content ol { padding-left: 1.5rem; margin-bottom: 1em; }
.rte-content li { margin-bottom: 0.3em; }
.rte-content blockquote { border-left: 3px solid var(--color-primary); margin: 1em 0; padding: 0.5em 1em; color: var(--color-text-muted); font-style: italic; }
.rte-content a { color: var(--color-primary); text-decoration: underline; }
.rte-content img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 0.5em 0; }

/* =============================================================================
   Typography utilities
   ============================================================================= */

.em-muted    { color: var(--color-text-muted); }
.em-success  { color: var(--color-success-content); }
.em-warning  { color: var(--color-warning-content); }
.em-danger   { color: var(--color-error-content); }
.label-500   { font-weight: 500; color: var(--color-text-muted); font-size: 0.875rem; }
.value-600   { font-weight: 600; color: var(--color-text-base); }
.total-700   { font-weight: 700; color: var(--color-text-base); }

/* Truncation */
.em-truncated { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.em-truncated.em-expanded { -webkit-line-clamp: unset; }
.em-show-more-btn {
    background: none; border: none; padding: 4px 0; font-size: 0.875rem; font-weight: 600;
    color: var(--color-primary); cursor: pointer; display: inline-flex; align-items: center; gap: 4px;
}
.em-show-more-btn:hover { opacity: 0.75; text-decoration: underline; }

/* Bootstrap utility shims — Blade templates from eventmie-pro use these class names */
.text-muted       { color: var(--color-text-muted); }
.fw-bold          { font-weight: 700; }
.small            { font-size: 0.875em; }
.invalid-feedback { display: block; color: var(--color-error); font-size: 0.875em; margin-top: 0.25rem; }

/* =============================================================================
   Email delivery timeline
   ============================================================================= */

.em-email-log-timeline { border-left: 2px solid var(--color-card-border); padding-left: 0.75rem; margin-left: 0.1rem; }
.em-email-log-entry { position: relative; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.25rem; padding: 0.22rem 0; font-size: 0.72rem; line-height: 1.4; }
.em-email-log-dot { position: absolute; left: -1.02rem; color: var(--color-primary); font-size: 0.45rem; top: 0.45rem; }
.em-email-log-label { font-weight: 600; color: var(--color-text-base); }
.em-email-log-meta { color: var(--color-text-muted); font-size: 0.68rem; }
.em-email-log-badge { background: var(--color-primary); color: var(--color-primary-content); border-radius: 999px; padding: 0.05rem 0.4rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.02em; }

/* =============================================================================
   Touch target utilities
   ============================================================================= */

.em-touch    { min-height: 48px; min-width: 48px; display: inline-flex; align-items: center; justify-content: center; }
.em-touch-sm { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* =============================================================================
   Ticket card layout
   ============================================================================= */

.d-flex-wrap { flex-wrap: wrap; }
.ticket-tax-hint { font-size: 0.72rem; color: var(--color-text-muted); margin-top: 3px; line-height: 1.4; }
.ticket-selected-text { color: var(--color-success-content); }

@media (max-width: 575px) {
    .ticket-title, .ticket-price { font-size: 0.9rem; }
}

@media (max-width: 767px) {
    .ticket-title, .ticket-price { font-size: 0.7rem; }
    .w-m-50 { width: 50%; }
}

/* =============================================================================
   Glassmorphism utility
   ============================================================================= */

.glass-panel {
    background: color-mix(in oklch, var(--color-base-100) 75%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in oklch, var(--color-base-100) 40%, transparent);
    box-shadow: var(--shadow-card);
}

/* =============================================================================
   Seating chart
   ============================================================================= */

.is-relative { position: relative; }
.seat-container { position: relative; overflow: auto; width: 800px; margin: 0 auto; padding: 0; display: block; transform-origin: 0 0; }
.seat-img { padding: 0; margin: 0; width: 100%; border-radius: 8px; border: 2px solid #777; }
.seat-mark { position: absolute; z-index: 999; height: 24px; width: 24px; border-radius: 8px; background-color: #1b89ef; color: #fff; line-height: 2; text-align: center; box-shadow: 1px 1px 5px -2px #000; font-size: 10px; font-weight: 600; cursor: pointer; }
.seat-disabled  { background-color: #999; cursor: not-allowed; }
.seat-reserved  { background-color: #bd3372; cursor: not-allowed; }
.seat-select    { background-color: #38c172; }
.seat-disabled-col  { color: #999; }
.seat-reserved-col  { color: #bd3372; }
.seat-select-col    { color: #38c172; }
.seat-available-col { color: #1b89ef; }
.api-seat-img { padding: 0; margin: 0; width: 100%; border-radius: 8px; border: 2px solid #777; }
.seat-checkbox { position: absolute; z-index: 999999; height: 24px; width: 24px; padding: 0; margin: 0; display: none; cursor: pointer; }

@media (max-width: 768px) { .api-seat-img { width: unset; } }

/* =============================================================================
   Authorize.net card widget
   (Design-specific — vendor widget, colours are intentional brand marks)
   ============================================================================= */

.wrapper-cc { display: flex; padding: 2rem; }
@media screen and (max-width: 700px), (max-height: 500px) { .wrapper-cc { flex-wrap: wrap; flex-direction: column; } }
.card-form { max-width: 570px; margin: auto; width: 100%; }
.card-form__inner { background: var(--color-card-bg); box-shadow: 0 30px 60px 0 rgba(90,116,148,0.4); border-radius: 10px; padding: 35px; padding-top: 180px; }
@media screen and (max-width: 480px) { .card-form__inner { padding: 25px; padding-top: 165px; } }
.card-form__row { display: flex; align-items: flex-start; }
@media screen and (max-width: 480px) { .card-form__row { flex-wrap: wrap; } }
.card-form__col { flex: auto; margin-right: 35px; }
.card-form__col:last-child { margin-right: 0; }
.card-form__col.-cvv { max-width: 150px; }
.card-form__group { display: flex; align-items: flex-start; flex-wrap: wrap; }
.card-form__group .card-input__input { flex: 1; margin-right: 15px; }
.card-form__group .card-input__input:last-child { margin-right: 0; }
.card-form__button { width: 100%; height: 55px; background: var(--color-primary); border: none; border-radius: 5px; font-size: 22px; font-weight: 500; box-shadow: 3px 10px 20px 0px color-mix(in oklch, var(--color-primary) 30%, transparent); color: var(--color-primary-content); margin-top: 20px; cursor: pointer; }
.card-item { max-width: 430px; height: 270px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; width: 100%; }
@media screen and (max-width: 480px) { .card-item { max-width: 310px; height: 220px; width: 90%; } }
@media screen and (max-width: 360px) { .card-item { height: 180px; } }
.card-item__side { border-radius: 15px; overflow: hidden; box-shadow: 0 20px 60px 0 rgba(14,42,90,0.55); transform-style: preserve-3d; transition: all 0.8s cubic-bezier(0.71,0.03,0.56,0.85); backface-visibility: hidden; height: 100%; }
.card-item__side.-back { position: absolute; top: 0; left: 0; width: 100%; transform: perspective(2000px) rotateY(-180deg) rotateX(0deg) rotate(0deg); z-index: 2; padding: 0; height: 100%; }
.card-item__bg { max-width: 100%; display: block; max-height: 100%; height: 100%; width: 100%; object-fit: cover; }
.card-item__cover { height: 100%; background-color: #1c1d27; position: absolute; left: 0; top: 0; width: 100%; border-radius: 15px; overflow: hidden; }
.card-item__cover:after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: rgba(6,2,29,0.45); }
.card-item__wrapper { padding: 25px 15px; position: relative; z-index: 4; height: 100%; text-shadow: 7px 6px 10px rgba(14,42,90,0.8); user-select: none; }
.card-item__number { font-weight: 500; line-height: 1; color: #fff; font-size: 27px; margin-bottom: 35px; display: inline-block; padding: 10px 15px; cursor: pointer; }
.card-item__band { background: rgba(0,0,19,0.8); width: 100%; height: 50px; margin-top: 30px; position: relative; z-index: 2; }
.card-item__cvvBand { height: 45px; background: #fff; margin-bottom: 30px; text-align: right; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; color: #1a3b5d; font-size: 18px; border-radius: 4px; }
.card-list { margin-bottom: -130px; }
.card-input { margin-bottom: 20px; }
.card-input__label { font-size: 14px; margin-bottom: 5px; font-weight: 500; color: var(--color-text-muted); width: 100%; display: block; user-select: none; }
.card-input__input { width: 100%; height: 50px; border-radius: 5px; box-shadow: none; border: 1px solid var(--color-card-border); transition: all 0.3s ease-in-out; font-size: 18px; padding: 5px 15px; background: none; color: var(--color-text-base); }
.card-input__input:hover, .card-input__input:focus { border-color: var(--color-primary); }

/* =============================================================================
   Star rating (review form)
   ============================================================================= */

.star-active { color: #FBC02D; margin-top: 10px; margin-bottom: 10px; }
.star-active:hover { color: #F9A825; cursor: pointer; }
.star-inactive { color: var(--color-base-300); margin-top: 10px; margin-bottom: 10px; }
.star-rating { direction: rtl; display: inline-block; padding: 20px; }
.star-rating input[type=radio] { display: none; }
.star-rating label { color: var(--color-base-300); font-size: 18px; padding: 0; cursor: pointer; transition: all .3s ease-in-out; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type=radio]:checked ~ label { color: #f2b600; }

/* =============================================================================
   Misc utilities
   ============================================================================= */

.no-display { display: none; }
.w-95 { width: 95%; }
.p-0 { padding: 0; }
.m-0 { margin: 0; }
.w-100 { width: 100%; }
.m-auto { margin: auto; }
.pointer { cursor: pointer; }
.lh-1 { line-height: 1; }

.h-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; display: flex; list-style: none; padding: 0; margin: 0; gap: 0.25rem; scrollbar-width: thin; }
.v-scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mh-30 { max-height: 30vh; }

#loading-screen {
    z-index: 99999; position: fixed; overflow: hidden; top: 0; display: flex;
    bottom: 0; left: 0; right: 0; justify-content: center; width: 100%;
    align-items: center; height: 100%;
    background: linear-gradient(155deg, #7f18a8 0%, #1d0475 50%, #7c17a7 100%);
}

.VueCarousel-pagination { position: absolute; bottom: 2%; }
#card-element { margin-bottom: 2rem; }
.iframe-full iframe { width: 100%; height: 80vh; }

.custom-dropdown { position: relative; }
.dropdownmenu { list-style: none; background-color: var(--color-card-bg); border-radius: 10px; display: inline-block; position: absolute; width: 208px; right: 150px; z-index: 99999; }
.dropdownmenu li { position: relative; left: -30px; }
.dropdownmenu a { width: 200px; padding: 1px; }

@media only screen and (min-width: 1200px) { .dropdownmenu { right: 130px; } }
@media only screen and (max-width: 1200px) { .dropdownmenu { position: absolute; top: -12px; right: 90px; z-index: 99999; } }

/* =============================================================================
   Animations / transitions (used by legacy Vue components)
   ============================================================================= */

.slide-fade-up-enter-active    { transition: all 0.25s ease-in-out; transition-delay: 0.1s; position: relative; }
.slide-fade-up-leave-active    { transition: all 0.25s ease-in-out; position: absolute; }
.slide-fade-up-enter           { opacity: 0; transform: translateY(15px); pointer-events: none; }
.slide-fade-up-leave-to        { opacity: 0; transform: translateY(-15px); pointer-events: none; }
.slide-fade-right-enter-active { transition: all 0.25s ease-in-out; transition-delay: 0.1s; position: relative; }
.slide-fade-right-leave-active { transition: all 0.25s ease-in-out; position: absolute; }
.slide-fade-right-enter        { opacity: 0; transform: translateX(10px) rotate(45deg); pointer-events: none; }
.slide-fade-right-leave-to     { opacity: 0; transform: translateX(-10px) rotate(45deg); pointer-events: none; }

/* =============================================================================
   Responsive breakpoints
   ============================================================================= */

@media (max-width: 991.98px) {
    .brand-copy .site-slogan { display: none; }
    .home-search-shell { margin-top: -14px; }
    .cover-img-bg { min-height: 320px; }
    .banner-slider-form { padding: 96px 1rem 64px; }
    .nav-actions { justify-content: flex-start; width: 100%; }
    .nav-actions .nav-discover-btn { flex: 1; }
    .organizer-name { font-size: 1.6rem; }
    .organizer-stats { display: flex; flex-direction: column; gap: 0.25rem; }
    .customer-profile-nav { min-width: max-content; flex-wrap: nowrap; }
}

@media (max-width: 767.98px) {
    .event-list-view { flex-direction: column; }
    .event-list-view .event-modern-media { width: 100%; }
    .event-list-view .event-modern-media .back-image { border-radius: var(--radius-md) var(--radius-md) 0 0; min-height: 200px; }
    .site-slogan { text-wrap: wrap; }
    .card-list { margin-bottom: -120px; }
}

@media (max-width: 480px) {
    .card-form__inner { padding: 25px; padding-top: 165px; }
    .card-form__col { margin-right: 0; flex: unset; width: 100%; margin-bottom: 20px; }
    .card-item { max-width: 310px; height: 220px; width: 90%; }
    .card-item__band { margin-top: 20px; }
    .card-item__wrapper { padding: 20px 10px; }
    .card-item__number { font-size: 21px; margin-bottom: 15px; padding: 10px 10px; }
    .card-item__cvvBand { height: 40px; margin-bottom: 20px; }
}

@media (max-width: 360px) {
    .card-item { height: 180px; }
    .card-item__cvvBand { margin-bottom: 15px; }
}

@media (min-width: 992px) {
    .nav-actions { margin-top: 0; }
    .customer-profile-nav { min-width: 0; flex-wrap: wrap; }
}
