/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #0a1628;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    background: #f8fafc;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ========== NAVIGATION ========== */
.main-nav {
    background: #0a1628;
    padding: 0;
    padding-top: env(safe-area-inset-top, 0px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0;
    height: 100%;
    align-items: stretch;
}

/* Nav item wrapper — NOT position:relative so fixed child can escape */
.nav-item {
    display: flex;
    align-items: stretch;
}

.nav-item > a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 64px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    gap: 6px;
}

.nav-item > a:hover,
.nav-item:hover > a {
    color: white;
    background: rgba(255,255,255,0.07);
}

.nav-item > a.active {
    color: white;
    border-bottom-color: #e84545;
}

.nav-chevron {
    font-size: 9px !important;
    transition: transform 0.25s;
    margin-left: 2px;
}

.nav-item:has(.dd-open) .nav-chevron {
    transform: rotate(180deg);
}

/* ---- Mega Dropdown ---- */
.nav-dropdown {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #fff;
    border-top: 3px solid #e84545;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    z-index: 9999;
}

.nav-dropdown.dd-open {
    display: block;
    animation: ddFadeIn 0.18s ease forwards;
}

@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 32px 24px;
}

/* Category title */
.nav-dd-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-dd-title i {
    color: #e84545;
    font-size: 18px;
}

/* 3-column grid */
.nav-dd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #f1f5f9;
    margin-bottom: 20px;
}

.nav-dropdown-link {
    display: block;
    padding: 14px 8px 14px 0;
    color: #334155;
    font-size: 14.5px;
    font-weight: 400;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.12s;
    text-decoration: none;
}

.nav-dropdown-link:hover {
    color: #e84545;
}

/* Footer */
.nav-dd-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-dd-see-all {
    color: #e84545;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.15s;
}
.nav-dd-see-all:hover { gap: 10px; }
.nav-dd-see-all i { font-size: 11px; }

.nav-dd-count {
    color: #94a3b8;
    font-size: 13px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.search-box {
    display: flex;
    align-items: center;
    background: #132039;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-box:focus-within {
    border-color: rgba(255,255,255,0.3);
}

.search-icon {
    color: rgba(255,255,255,0.4);
    padding: 0 0 0 12px;
    font-size: 13px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 10px 14px 10px 10px;
    font-size: 13px;
    width: 220px;
    font-family: inherit;
    background: transparent;
    color: white;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.4);
}

.nav-icon-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
}

.nav-icon-btn:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: #e84545;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.cart-badge.visible {
    display: flex;
}

/* ========== CITY BAR ========== */
.city-bar {
    background: #0d1b30;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.city-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.city-bar-inner::-webkit-scrollbar {
    display: none;
}

.city-bar-link {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.city-bar-link:hover {
    color: white;
    background: rgba(255,255,255,0.04);
}

.city-bar-more {
    color: #e84545;
    font-weight: 600;
}

.city-bar-more:hover {
    color: #ff6b6b;
}

.city-bar-more i {
    font-size: 9px;
    margin-right: 2px;
}

/* ========== HERO SLIDER ========== */
.hero-banner {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #0a1628;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide-texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(232,69,69,0.06) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
    z-index: 1;
    pointer-events: none;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.7) 40%, rgba(10,22,40,0.3) 70%, rgba(10,22,40,0.1) 100%);
    z-index: 2;
}

.hero-slide-poster {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
    pointer-events: none;
    opacity: 0.12;
}

.hero-poster-artist {
    display: block;
    font-size: 120px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1;
    white-space: nowrap;
}

.hero-poster-tour {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 8px;
}

.hero-slide-content {
    position: relative;
    z-index: 5;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.hero-category-badge {
    display: inline-block;
    background: #e84545;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-event-title {
    font-size: 52px;
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}

.hero-info-item i {
    color: #e84545;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.hero-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-price {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.hero-complet-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,69,69,0.15);
    border: 1px solid rgba(232,69,69,0.3);
    color: #ff6b6b;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e84545;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.hero-cta-btn:hover {
    background: #d63031;
}

.hero-cta-btn i {
    font-size: 14px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: white;
    border-color: white;
    width: 28px;
    border-radius: 5px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: #eef2f7;
    border-bottom: 1px solid #dde3eb;
    padding: 16px 0;
}

.trust-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.trust-item i {
    color: #0a1628;
    font-size: 18px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 48px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    font-size: 28px;
    line-height: 1;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.section-title-dark {
    text-align: center;
    font-size: 28px;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.section-subtitle-center {
    text-align: center;
    margin-bottom: 24px;
}

/* ========== BESTSELLERS CAROUSEL ========== */
.bestsellers-section {
    background: white;
    padding: 48px 0;
}

.carousel-arrows {
    display: flex;
    gap: 8px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background: white;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.carousel-arrow:hover {
    border-color: #0a1628;
    background: #0a1628;
    color: white;
}

.bestsellers-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.bestsellers-carousel::-webkit-scrollbar {
    display: none;
}

.bestseller-card {
    flex: 0 0 300px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
    background: #132039;
}

.bestseller-card:hover {
    transform: translateY(-4px);
}

.bestseller-card-image {
    aspect-ratio: 5 / 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: top center !important;
    overflow: hidden;
}

.bestseller-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.85) 100%);
}

.bestseller-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e84545;
    color: white;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.bestseller-category-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10,22,40,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.bestseller-status-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #e84545;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
}

.bestseller-card-body {
    padding: 14px 16px;
    background: white;
}

.bestseller-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bestseller-card-date {
    font-size: 12px;
    font-weight: 600;
    color: #e84545;
    margin-bottom: 2px;
}

.bestseller-card-venue {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.bestseller-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e84545;
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.bestseller-card-cta:hover {
    background: #d63031;
}

/* ========== CARD POSTER STYLES (shared) ========== */
.card-poster-texture {
    display: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(232,69,69,0.05) 0%, transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255,255,255,0.015) 1px, rgba(255,255,255,0.015) 2px);
    z-index: 1;
    pointer-events: none;
}

.card-poster-content {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 40px 12px 48px;
    text-align: center;
}

.card-poster-artist {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.card-poster-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.card-poster-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-poster-date,
.card-poster-venue {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-poster-date i,
.card-poster-venue i {
    color: #e84545;
    margin-right: 4px;
    font-size: 9px;
    width: 12px;
    text-align: center;
}

/* ========== CITY PILLS ========== */
.city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.city-pill {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid #cbd5e1;
    background: white;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.city-pill:hover {
    border-color: #0a1628;
    color: #0a1628;
}

.city-pill.active {
    background: #0a1628;
    color: white;
    border-color: #0a1628;
}

.more-cities-btn i {
    margin-right: 4px;
    font-size: 10px;
}

/* ========== EVENTS GRID ========== */
.available-section {
    background: #f8fafc;
    padding: 48px 0 60px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.event-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.event-card-image {
    aspect-ratio: 5 / 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover !important;
    background-position: top center !important;
}

.event-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.event-card-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10,22,40,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    z-index: 4;
    backdrop-filter: blur(4px);
}

.event-card-body {
    padding: 14px 16px;
}

.event-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-date {
    font-size: 12px;
    font-weight: 600;
    color: #e84545;
    margin-bottom: 2px;
}

.event-card-venue {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.event-card-price {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.event-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #e84545;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.event-card-btn:hover {
    background: #d63031;
}

.event-card-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(232,69,69,0.85);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 4;
    backdrop-filter: blur(4px);
}

.event-card-status.sold-out {
    background: rgba(30,30,30,0.85);
}

.event-card-btn.sold-out-btn {
    background: #64748b;
    cursor: default;
    pointer-events: none;
}

.event-card-btn.sold-out-btn:hover {
    background: #64748b;
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
}

.page-btn {
    padding: 10px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: white;
    color: #475569;
    transition: all 0.2s;
    font-family: inherit;
}

.page-btn:hover {
    border-color: #0a1628;
    color: #0a1628;
}

.page-btn.active {
    background: #0a1628;
    color: white;
    border-color: #0a1628;
}

.page-btn.disabled {
    color: #cbd5e1;
    cursor: default;
    border-color: #e2e8f0;
}

.page-btn.disabled:hover {
    color: #cbd5e1;
    border-color: #e2e8f0;
}

.pagination-info {
    font-size: 13px;
    color: #64748b;
    margin-left: 16px;
}

/* ========== CATEGORIES SECTION ========== */
.categories-section {
    background: #f8fafc;
    padding: 48px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    transition: transform 0.25s, box-shadow 0.25s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}

.category-card:hover .category-card-bg {
    transform: scale(1.07);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}

.category-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 12px;
    text-align: center;
}

.category-card-icon {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
    opacity: 0.9;
}

.category-card-title {
    font-size: 15px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.category-card-count {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ========== ARTISTS SECTION ========== */
.artists-section {
    background: white;
    padding: 48px 0;
}

.see-all-link {
    font-size: 13px;
    font-weight: 600;
    color: #e84545;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    white-space: nowrap;
}

.see-all-link:hover {
    color: #d63031;
}

.see-all-link i {
    font-size: 11px;
}

.artists-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 12px 4px 20px;
    -webkit-overflow-scrolling: touch;
}
.artists-carousel::-webkit-scrollbar { display: none; }

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 24px 16px 18px;
    border-radius: 20px;
    transition: transform 0.22s, background 0.22s;
    background: transparent;
    flex: 0 0 180px;
}

.artist-card:hover {
    transform: translateY(-8px);
    background: #f1f5f9;
}

.artist-card-avatar-wrap {
    position: relative;
    margin-bottom: 18px;
}

.artist-card-thumb {
    width: 187px;
    height: 187px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    background-size: cover !important;
    background-position: center !important;
}

.artist-card:hover .artist-card-thumb {
    box-shadow: 0 16px 48px rgba(10,22,40,0.32);
    border-color: #e84545;
    transform: scale(1.06);
}

.artist-card-initials {
    font-size: 54px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 16px rgba(0,0,0,0.5);
    display: none;
    line-height: 1;
}

.artist-card-events-count {
    position: absolute;
    bottom: 4px;
    right: 0px;
    background: #e84545;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(232,69,69,0.45);
}

.artist-card-name {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.artist-card-genre {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background: #0a1628;
    padding: 56px 0;
}

.newsletter-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0 16px;
    gap: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    transition: border-color 0.2s;
}

.newsletter-input-wrap:focus-within {
    border-color: rgba(255,255,255,0.4);
}

.newsletter-input-wrap i {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.newsletter-input-wrap input {
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    padding: 14px 0;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-btn {
    background: #e84545;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #d63031;
}

.newsletter-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.newsletter-disclaimer i {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: #0a1628;
    color: #f1f5f9;
}

.footer-top {
    padding: 48px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

.footer-col p i {
    margin-right: 8px;
    width: 14px;
    color: rgba(255,255,255,0.4);
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-sub {
    font-size: 11px !important;
    color: rgba(255,255,255,0.35) !important;
    margin-top: -4px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ========== SEARCH DROPDOWN ========== */
.search-dropdown {
    position: fixed;
    background: white;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-dropdown.visible {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.search-result-item:hover {
    background: #f8fafc;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 10px;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-info strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-info span {
    font-size: 11px;
    color: #64748b;
}

.search-result-price {
    font-size: 14px;
    font-weight: 700;
    color: #e84545;
    margin-left: 12px;
    white-space: nowrap;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

/* (old nav-dropdown block removed — see top of file for current styles) */

/* ========== MOBILE MENU ========== */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
    order: -1;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

.mobile-overlay.visible,
.mobile-overlay.open {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #0a1628;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    color: white;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
}

.mobile-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 16px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.mobile-search i { color: rgba(255,255,255,0.4); font-size: 14px; }
.mobile-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
}
.mobile-search-input::placeholder { color: rgba(255,255,255,0.35); }

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.mobile-nav a:hover, .mobile-nav a.active {
    background: rgba(255,255,255,0.08);
}

.mobile-cities {
    padding: 16px 20px;
}

.mobile-cities h4 {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.mobile-cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mobile-cities-grid a {
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    transition: background 0.2s;
}

.mobile-cities-grid a:hover {
    background: rgba(255,255,255,0.12);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.15);
    z-index: 900;
    transition: bottom 0.5s ease;
    max-width: 720px;
    width: 95%;
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 13px;
    color: #475569;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: inherit;
}

.cookie-settings {
    background: #f1f5f9;
    color: #334155;
}

.cookie-settings:hover {
    background: #e2e8f0;
}

.cookie-reject {
    background: #f1f5f9;
    color: #334155;
}

.cookie-reject:hover {
    background: #e2e8f0;
}

.cookie-accept {
    background: #0a1628;
    color: white;
}

.cookie-accept:hover {
    background: #132039;
}

/* ========== MODALS ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.modal {
    background: white;
    border-radius: 16px;
    max-width: 560px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #0f172a;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 18px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Event Modal */
.event-modal-hero {
    height: 160px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.event-modal-details p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #475569;
}

.event-modal-details p i {
    width: 20px;
    color: #0a1628;
    margin-right: 6px;
}

.event-modal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.event-modal-price span {
    font-size: 14px;
    color: #64748b;
}

.event-modal-price strong {
    font-size: 28px;
    color: #0a1628;
}

.event-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.btn-reserve {
    display: inline-block;
    background: #e84545;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-reserve:hover {
    background: #d63031;
}

.btn-reserve-modal {
    flex: 1;
    padding: 14px 24px;
    font-size: 15px;
}

.btn-outline {
    padding: 12px 24px;
    background: white;
    border: 2px solid #0a1628;
    color: #0a1628;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-outline:hover {
    background: #f8fafc;
}

/* Cities Modal */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.city-link {
    padding: 10px;
    text-align: center;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.city-link:hover {
    background: #0a1628;
    color: white;
}

/* Cart Modal */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    gap: 12px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: #0f172a;
}

.cart-item-info span {
    font-size: 12px;
    color: #64748b;
}

.cart-item-price {
    font-weight: 700;
    color: #0a1628;
    font-size: 15px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e84545;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #d63031;
}

.cart-empty {
    text-align: center;
    color: #94a3b8;
    padding: 30px 0;
    font-size: 14px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #f1f5f9;
    font-size: 16px;
}

.cart-total strong {
    font-size: 24px;
    color: #0a1628;
}

/* Cookie Settings */
.cookie-option {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cookie-option label {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #0f172a;
}

.cookie-option p {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.cookie-option input {
    margin-right: 8px;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0a1628;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 800;
    box-shadow: 0 4px 16px rgba(10,22,40,0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #132039;
    transform: translateY(-2px);
}

/* ========== NOTIFICATION ========== */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #0a1628;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.visible {
    transform: translateX(0);
}

.notification i {
    margin-right: 8px;
    color: #4ade80;
}

/* ========== BREADCRUMB ========== */
.breadcrumb-section {
    padding: 12px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    font-size: 13px;
    color: #64748b;
}

.breadcrumb span {
    color: #0f172a;
}

.breadcrumb-link {
    color: #0a1628;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: #e84545;
    text-decoration: underline;
}

/* Stars */
.stars {
    color: #f59e0b;
    font-size: 12px;
    margin: 4px 0;
    letter-spacing: 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* artists now carousel - no grid override needed */
}

@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-event-title {
        font-size: 36px;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* artists now carousel - no grid override needed */
    .artist-card-thumb {
        width: 150px;
        height: 150px;
    }
    .artist-card-initials { font-size: 38px; }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    .nav-links {
        display: none !important;
    }
    .nav-dropdown {
        display: none !important;
    }
    .city-bar {
        display: none;
    }
    .search-box input {
        width: 140px;
    }
    .container {
        padding: 0 16px;
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-banner {
        height: 420px;
    }
    .hero-event-title {
        font-size: 28px;
    }
    .hero-slide-content {
        padding: 0 24px;
    }
    .hero-slide-poster {
        display: none;
    }
    .hero-poster-artist {
        font-size: 60px;
    }
    .trust-bar-inner {
        gap: 20px;
        justify-content: flex-start;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .cookie-content {
        flex-direction: column;
    }
    .bestseller-card {
        flex: 0 0 240px;
    }
    .bestseller-card-image {
        aspect-ratio: 16 / 9;
    }
    .section-title {
        font-size: 22px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .artist-card {
        flex: 0 0 140px;
    }
    .artist-card-thumb {
        width: 120px;
        height: 120px;
    }
    .artist-card-initials {
        font-size: 28px;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-input-wrap {
        min-width: 0;
        width: 100%;
    }
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    .newsletter-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        gap: 12px;
    }
    .search-box {
        display: none;
    }
    .hero-banner {
        height: 340px;
    }
    .hero-event-title {
        font-size: 22px;
    }
    .bestseller-card {
        flex: 0 0 200px;
    }
    .events-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .artist-card {
        flex: 0 0 110px;
    }
    .artist-card-thumb {
        width: 90px;
        height: 90px;
    }
    .artist-card-initials {
        font-size: 24px;
    }
    .section {
        padding: 32px 0;
    }
    .cookie-text {
        font-size: 12px;
    }
}
