@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #EFF6FF;
    --primary-bg: rgba(37, 99, 235, 0.08);
    --bg-main: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-card: #FFFFFF;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --sidebar-width: 260px;
    --topbar-height: 64px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

input {
    font-family: inherit;
    outline: none;
    border: none;
}

/* ══════════════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════════════ */
.layout {
    display: flex;
    min-height: 100vh;
}

/* ══════════════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════════════ */
.sidebar {
    width: var(--sidebar-width);
    background: var(--bg-white);
    border-right: 1px solid var(--border);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-logo .logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.sidebar-logo h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

/* Sidebar Nav */
.sidebar-nav {
    padding: 12px 12px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.sidebar-nav a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.sidebar-nav a.active {
    background: var(--primary);
    color: var(--text-white);
}

.sidebar-nav a.active svg {
    fill: white;
}

.sidebar-nav a svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-nav a:hover svg {
    fill: var(--primary);
}

/* Sidebar Kategoriler */
.sidebar-section {
    padding: 16px 22px 8px;
}

.sidebar-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sidebar-categories {
    padding: 0 12px;
}

.sidebar-categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.sidebar-categories a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.sidebar-categories a .cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-categories a:hover .cat-dot {
    background: var(--primary);
}

.sidebar-all-cat {
    padding: 8px 22px 16px;
}

.sidebar-all-cat a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sidebar-all-cat a:hover {
    gap: 8px;
}

/* Sidebar Newsletter */
.sidebar-newsletter {
    margin: auto 16px 16px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.sidebar-newsletter .nl-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.sidebar-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.sidebar-newsletter p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.sidebar-newsletter .nl-input-wrap {
    position: relative;
}

.sidebar-newsletter input {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-primary);
    transition: var(--transition);
}

.sidebar-newsletter input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.sidebar-newsletter input::placeholder {
    color: var(--text-muted);
}

.sidebar-newsletter .nl-btn {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.sidebar-newsletter .nl-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ══════════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
   ══════════════════════════════════════════════════════════════════ */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ══════════════════════════════════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════════════════════════════════ */
.topbar {
    height: var(--topbar-height);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.topbar-search {
    flex: 1;
    max-width: 480px;
    position: relative;
}

.topbar-search input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.topbar-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: white;
}

.topbar-search input::placeholder {
    color: var(--text-muted);
}

.topbar-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.topbar-city {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border: 1px solid transparent;
}

.topbar-city:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.topbar-city svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}

.topbar-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-secondary);
}

.topbar-icon-btn:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.topbar-icon-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.topbar-icon-btn .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.topbar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.topbar-avatar:hover {
    border-color: var(--primary);
}

.topbar-avatar svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

/* ══════════════════════════════════════════════════════════════════
   PAGE CONTENT
   ══════════════════════════════════════════════════════════════════ */
.page-content {
    flex: 1;
    padding: 24px 30px 40px;
}

/* ══════════════════════════════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════════════════════════════ */
.hero-slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    background: #000000;
    overflow: hidden;
}

.hero-slider .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: block;
}

.hero-slider .slide.active {
    opacity: 1 !important;
    z-index: 5;
}

.hero-slider .slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content-overlay {
    position: absolute;
    bottom: 64px;
    left: 48px;
    max-width: 540px;
    color: #ffffff;
    text-align: left;
    z-index: 10;
}

.slide-content-overlay h2 {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 12px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

.slide-content-overlay p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0 24px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

.hero-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.hero-explore-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.hero-slider .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: white;
}

.hero-slider .slide-overlay h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-slider .slide-overlay p {
    font-size: 14px;
    opacity: 0.85;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.hero-nav-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.hero-nav-btn.prev { left: 16px; }
.hero-nav-btn.next { right: 16px; }

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

.hero-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   CATEGORIES ROW
   ══════════════════════════════════════════════════════════════════ */
.categories-row {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.categories-row::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border);
    min-width: 110px;
    cursor: pointer;
    transition: var(--transition);
}

.category-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-item .cat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item .cat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.category-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.category-item:hover span {
    color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════════════════ */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.section-header .see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-header .see-all:hover {
    gap: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   EVENT CARDS - FEATURED
   ══════════════════════════════════════════════════════════════════ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.event-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    text-align: center;
    min-width: 48px;
    line-height: 1;
}

.event-card-date .day {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.event-card-date .month {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.85;
    display: block;
    margin-top: 2px;
}

.event-card-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.event-card-fav:hover {
    background: white;
    transform: scale(1.1);
}

.event-card-fav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--text-secondary);
    stroke-width: 2;
}

.event-card-fav.active svg {
    fill: #EF4444;
    stroke: #EF4444;
}

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

.event-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-body .event-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-body .event-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.event-card-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
}

.event-card-price span {
    font-size: 14px;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-ticket:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ══════════════════════════════════════════════════════════════════
   EVENT CARDS - UPCOMING (COMPACT)
   ══════════════════════════════════════════════════════════════════ */
.events-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.event-card-compact {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    transition: var(--transition);
    cursor: pointer;
}

.event-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.event-card-compact .compact-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.event-card-compact .compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-compact .compact-date {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    padding: 2px 5px;
    text-align: center;
    line-height: 1;
}

.event-card-compact .compact-date .day {
    font-size: 11px;
    font-weight: 800;
    display: block;
}

.event-card-compact .compact-date .month {
    font-size: 7px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
}

.event-card-compact .compact-info {
    flex: 1;
    min-width: 0;
}

.event-card-compact .compact-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-compact .compact-info .compact-location {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card-compact .compact-right {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.event-card-compact .compact-fav {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.event-card-compact .compact-fav svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 2;
}

.event-card-compact .compact-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 20px 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE OVERLAY & HAMBURGER
   ══════════════════════════════════════════════════════════════════ */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.mobile-menu-btn:hover {
    background: var(--primary-bg);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-secondary);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 99;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--bg-main);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
}

.sidebar-close svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .events-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .events-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 200;
        box-shadow: var(--shadow-lg);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .topbar {
        padding: 0 16px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .page-content {
        padding: 16px;
    }

    .hero-slider {
        aspect-ratio: 2 / 1;
        border-radius: var(--radius-md);
    }

    /* Premium Mobile Event Grid & Card */
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .events-grid-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .event-card {
        border-radius: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }

    .event-card-body {
        padding: 12px;
    }

    .event-card-body h3 {
        font-size: 13.5px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #1E293B;
    }

    .event-card-body .event-location {
        font-size: 10.5px;
        margin-bottom: 8px;
        color: var(--text-muted);
    }

    .event-card-body .event-category {
        font-size: 10.5px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .event-card-footer {
        padding-top: 10px;
        border-top: 1px solid #F1F5F9;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .event-card-price {
        font-size: 14.5px;
        font-weight: 800;
        color: var(--text-primary);
        text-align: left;
    }

    .btn-ticket {
        width: 100%;
        justify-content: center;
        padding: 8px 12px;
        font-size: 11.5px;
        font-weight: 700;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(37, 99, 235, 0.15);
    }

    .event-card-date {
        padding: 4px 8px;
        min-width: 38px;
        border-radius: 6px;
    }

    .event-card-date .day {
        font-size: 13px;
        font-weight: 800;
    }

    .event-card-date .month {
        font-size: 8px;
    }

    .event-card-fav {
        width: 34px;
        height: 34px;
    }

    /* Premium Horizontal Mobile Scroll Pill */
    .categories-row {
        gap: 8px;
        padding: 4px 4px 10px 4px;
    }

    .category-item {
        min-width: unset;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 30px;
        background: var(--bg-white);
        box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

    .category-item .cat-icon {
        width: 24px;
        height: 24px;
        background: transparent;
    }

    .category-item .cat-icon svg {
        width: 16px;
        height: 16px;
    }

    .category-item span {
        font-size: 12px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .topbar-city span {
        display: none;
    }

    .hero-slider {
        aspect-ratio: 16/9;
    }

    .hero-nav-btn {
        width: 36px;
        height: 36px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

.event-card,
.event-card-compact,
.category-item {
    animation: fadeInUp 0.5s ease forwards;
}

.events-grid .event-card:nth-child(2),
.events-grid-compact .event-card-compact:nth-child(2) {
    animation-delay: 0.08s;
}

.events-grid .event-card:nth-child(3),
.events-grid-compact .event-card-compact:nth-child(3) {
    animation-delay: 0.16s;
}

.events-grid .event-card:nth-child(4),
.events-grid-compact .event-card-compact:nth-child(4) {
    animation-delay: 0.24s;
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM EVENT CARD BADGES CORRECTION (FLEX & MOBILE RESPONSIVE)
   ══════════════════════════════════════════════════════════════════ */
.event-card-image {
    position: relative;
}

/* Badge Container - Stack badges beautifully instead of overlapping */
.event-card-badges {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 10;
    max-width: calc(100% - 24px);
}

/* Individual Premium Badge Styles */
.event-card-badge {
    background: rgba(37, 99, 235, 0.95); /* Blue primary */
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(4px);
}

.event-card-badge.badge-vip {
    background: rgba(245, 158, 11, 0.95); /* Gold / Amber for VIP */
}

.event-card-badge.badge-popular {
    background: rgba(239, 68, 68, 0.95); /* Red for Popular */
}

.event-card-badge.badge-near {
    background: rgba(16, 185, 129, 0.95); /* Green for Nearby/Soon */
}

/* Date and Fav alignments */
.event-card-date {
    z-index: 10;
}

.event-card-fav {
    z-index: 10;
}

/* Responsive Badges for Mobile Devices */
@media (max-width: 768px) {
    .event-card-badges {
        bottom: 8px;
        left: 8px;
        gap: 4px;
        max-width: calc(100% - 16px);
    }
    
    .event-card-badge {
        font-size: 9.5px;
        padding: 3px 8px;
        letter-spacing: 0.3px;
    }
}

/* Customer-ready YouTube style sidebar and featured rails */
.sidebar {
    transition: width .22s ease, transform .22s ease;
}

.sidebar-tools {
    padding: 0 14px 14px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 8px;
    align-items: center;
}

.sidebar-collapse-toggle {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #fff;
    color: var(--text-secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.sidebar-collapse-toggle svg,
.sidebar-search-form svg {
    width: 18px;
    height: 18px;
}

.sidebar-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: #f8fafc;
    padding: 0 10px;
    min-width: 0;
}

.sidebar-search-form input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    height: 38px;
    font-size: 13px;
    color: var(--text-primary);
}

body.sidebar-collapsed {
    --sidebar-width: 84px;
}

body.sidebar-collapsed .sidebar {
    width: var(--sidebar-width);
}

body.sidebar-collapsed .main-content {
    margin-left: var(--sidebar-width);
}

body.sidebar-collapsed .sidebar-logo {
    justify-content: center;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

body.sidebar-collapsed .sidebar-logo h1,
body.sidebar-collapsed .sidebar-logo img,
body.sidebar-collapsed .sidebar-search-form,
body.sidebar-collapsed .sidebar-section,
body.sidebar-collapsed .sidebar-categories,
body.sidebar-collapsed .sidebar-all-cat,
body.sidebar-collapsed .sidebar-newsletter {
    display: none;
}

body.sidebar-collapsed .sidebar-tools {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
}

body.sidebar-collapsed .sidebar-nav a {
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
    font-size: 0;
    margin: 0 auto;
}

body.sidebar-collapsed .sidebar-nav a svg {
    width: 21px;
    height: 21px;
    margin: 0;
}

.sidebar-nav a {
    border-radius: 8px;
}

.sidebar-nav a.active {
    box-shadow: inset 3px 0 0 var(--primary);
}

.youtube-featured-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 22vw);
    grid-template-columns: none !important;
    overflow-x: auto;
    gap: 18px;
    padding: 4px 2px 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.youtube-featured-scroll .event-card {
    scroll-snap-align: start;
    min-width: 0;
    border-radius: 12px;
}

.youtube-featured-scroll .event-card-image {
    aspect-ratio: 16 / 9;
}

.youtube-featured-scroll .event-card-body h3 {
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 1100px) {
    .youtube-featured-scroll {
        grid-auto-columns: minmax(240px, 34vw);
    }
}

@media (max-width: 768px) {
    body.sidebar-collapsed .main-content {
        margin-left: 0;
    }
    .sidebar-tools {
        grid-template-columns: 1fr;
    }
    .sidebar-collapse-toggle {
        display: none;
    }
    .youtube-featured-scroll {
        grid-auto-columns: minmax(260px, 78vw);
    }
}

/* ══════════════════════════════════════════════════════════════════
   PLATFORM SaaS OVERRIDES & MASTER RESPONSIVE STYLE SYSTEM
   ══════════════════════════════════════════════════════════════════ */

/* --- Typography & Global Scaling --- */
h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Premium Header Styles (Biletix + Eventbrite + YouTube style) */
.topbar-header {
    height: 72px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    border-radius: 10px;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
}

.brand-logo-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.topbar-center-search {
    width: min(480px, 100%);
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    transition: var(--transition);
}

.topbar-center-search:focus-within {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.topbar-center-search svg.search-lens {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    margin-right: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.topbar-center-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.topbar-search-pill-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.topbar-search-pill-btn:hover {
    background: var(--primary-hover);
}

.topbar-search-pill-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.topbar-right-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-city {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 600;
    transition: var(--transition);
}

.topbar-city:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.topbar-city svg {
    color: var(--primary);
}

.topbar-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
}

.topbar-menu-item:hover {
    color: var(--primary);
    background: var(--primary-bg);
}

.topbar-menu-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.topbar-menu-item .badge-dot {
    position: absolute;
    top: 6px;
    right: 16px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.topbar-user-menu {
    position: relative;
}

.topbar-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px;
    border: 1px solid var(--border-light);
    border-radius: 9999px;
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.topbar-user-profile:hover {
    background: var(--bg-section);
    border-color: var(--primary);
}

.user-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
}

.user-name-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.chevron-down-icon {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

/* Dropdown */
.topbar-dropdown {
    position: absolute;
    top: 48px;
    right: 0;
    width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
    padding: 6px 0;
}

.dropdown-header {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
}

.dropdown-header strong {
    font-size: 14px;
    color: var(--text-primary);
}

.dropdown-header span {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 6px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.dropdown-item svg {
    color: var(--text-muted);
}

.dropdown-item.logout-link {
    color: #ef4444;
}

.dropdown-item.logout-link:hover {
    background: #fef2f2;
    color: #ef4444;
}

.dropdown-item.logout-link svg {
    color: #ef4444;
}

.topbar-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
    transition: var(--transition);
    height: 40px;
    box-sizing: border-box;
}

.topbar-login-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37,99,235,0.25);
}

/* Sidebar Core Structure */
.platform-sidebar {
    width: 88px !important;
    background: #ffffff !important;
    border-right: 1px solid #e2e8f0 !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    bottom: 0 !important;
    z-index: 900 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 16px 0 !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    box-shadow: none !important;
    /* Hide scrollbar completely while maintaining scroll functionality */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.platform-sidebar::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

body.sidebar-expanded .platform-sidebar {
    width: 240px !important;
    align-items: flex-start !important;
    padding: 16px 12px !important;
}

.platform-main-container {
    margin-left: 88px !important;
    width: calc(100% - 88px) !important;
    min-height: calc(100vh - 72px) !important;
    padding: 32px 40px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
}

body.sidebar-expanded .platform-main-container {
    margin-left: 240px !important;
    width: calc(100% - 240px) !important;
}

/* Slider Overrides */
.hero-slider-wrapper {
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

.hero-slider {
    aspect-ratio: auto !important;
    width: 100% !important;
    height: 380px !important;
}

.hero-slider .slide {
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
}

.hero-slider .slide.active {
    opacity: 1 !important;
}

.hero-slider .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Menu Items */
.sidebar-menu-link {
    width: 72px !important;
    height: 72px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    background: transparent !important;
}

body.sidebar-expanded .sidebar-menu-link {
    width: 100% !important;
    height: auto !important;
    padding: 12px 16px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border-radius: 8px !important;
}

.floating-categories-panel {
    top: 150px !important;
    left: 88px !important;
}

/* --- Responsive Table to Card conversions for Mobile --- */
@media (max-width: 768px) {
    .customer-table thead, .admin-table thead, .table thead, .table-striped thead, .table-hover thead {
        display: none !important; /* Hide standard tables headers */
    }
    .customer-table tr, .admin-table tr, .table tr, .table-striped tr, .table-hover tr {
        display: block !important;
        background: #ffffff !important;
        border: 1px solid var(--border-light) !important;
        border-radius: var(--radius-md) !important;
        padding: 16px !important;
        margin-bottom: 16px !important;
        box-shadow: var(--shadow-sm) !important;
    }
    .customer-table td, .admin-table td, .table td, .table-striped td, .table-hover td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
        text-align: right !important;
    }
    .customer-table td::before, .admin-table td::before, .table td::before, .table-striped td::before, .table-hover td::before {
        content: attr(data-label) !important;
        font-weight: 750 !important;
        color: var(--text-secondary) !important;
        text-align: left !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
    }
    .customer-table td:last-child, .admin-table td:last-child, .table td:last-child, .table-striped td:last-child, .table-hover td:last-child {
        border-bottom: none !important;
        padding-top: 12px !important;
    }
}

/* --- Form Fields & Buttons Mobile First Optimization --- */
@media (max-width: 576px) {
    .customer-form-grid, .admin-form-grid {
        grid-template-columns: 1fr !important; /* Forces single column on forms */
        gap: 16px !important;
    }
    .customer-field.full, .admin-field.full {
        grid-column: span 1 !important;
    }
    .customer-btn, .topbar-login-btn, button, .btn-ticket {
        min-height: 44px !important; /* Minimum comfortable touch target size */
        padding: 12px 20px !important;
        font-size: 13.5px !important;
    }
    .customer-btn.small {
        min-height: 38px !important;
        padding: 8px 14px !important;
    }
}/* --- General Tablet & Mobile Padding Fix --- */
@media (max-width: 992px) {
    .page-content {
        padding: 0 !important;
    }
}/* --- Hide Mobile Bottom Tab Bar on Desktop --- */
.mobile-bottom-bar {
    display: none !important;
}

/* --- Mobile Breakpoint Overrides (320px - 768px) --- */
@media (max-width: 768px) {
    /* Mobile Drawer (Soldan Drawer Menü) */
    .platform-sidebar {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        background: #ffffff !important;
        border-right: 1px solid var(--border-light) !important;
        z-index: 2000 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 !important;
        overflow-y: auto !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: var(--shadow-lg) !important;
    }

    body.sidebar-expanded .platform-sidebar {
        transform: translateX(0) !important;
    }

    .mobile-drawer-header {
        display: flex !important;
        width: 100% !important;
        justify-content: flex-end !important;
        padding: 12px 16px !important;
        border-bottom: 1px solid var(--border-light) !important;
        box-sizing: border-box !important;
    }

    .sidebar-menu-list {
        width: 100% !important;
        align-items: flex-start !important;
        padding: 16px 12px !important;
        gap: 8px !important;
    }

    .sidebar-menu-link {
        width: 100% !important;
        height: auto !important;
        padding: 12px 16px !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        border-radius: 8px !important;
        background: transparent !important;
    }

    .sidebar-menu-link span {
        font-size: 13.5px !important;
        display: inline !important; /* Show text labels in drawer */
    }

    .sidebar-tooltip {
        display: none !important;
    }

    .sidebar-footer-collapse {
        display: none !important; /* Hide collapse button inside mobile drawer */
    }

    /* Transparent overlay backdrop */
    .sidebar-overlay {
        background: rgba(15, 23, 42, 0.4) !important;
        backdrop-filter: blur(4px) !important;
    }

    .platform-main-container {
        margin-left: 0 !important; /* No desktop side margins */
        width: 100% !important; /* Fill full screen width */
        padding: 16px !important; /* 16px padding on edges */
        padding-bottom: 96px !important; /* Leave safe area space for bottom navbar */
        min-height: calc(100vh - 64px) !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
    }

    /* Mobile Header (64px) */
    .topbar-header {
        height: 64px !important;
        padding: 0 16px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: fixed !important;
        background: #ffffff !important;
        border-bottom: 1px solid var(--border-light) !important;
        box-sizing: border-box !important;
    }

    .hamburger-btn {
        display: none !important; /* Remove hamburger button completely on mobile */
    }

    .topbar-left {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .brand-logo-wrap h1 {
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 18px !important;
        font-weight: 850 !important;
        color: var(--text-primary) !important;
        margin: 0 !important;
        letter-spacing: -0.02em !important;
    }

    .brand-logo-wrap {
        position: static !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .topbar-right-menu {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-left: auto !important;
    }

    .topbar-city span.city-text {
        display: none !important; /* Hide city text to fit smaller mobile viewports */
    }

    .topbar-city {
        padding: 4px !important;
    }

    .topbar-menu-item {
        padding: 4px !important;
    }

    .topbar-menu-item span,
    .cart-text,
    .favorites-text,
    .notifications-text {
        display: none !important; /* Hide label text */
    }

    .topbar-login-btn {
        min-height: auto !important;
        padding: 6px 12px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        background: var(--primary) !important;
        color: #ffffff !important;
        border-radius: 9999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: var(--shadow-sm) !important;
        white-space: nowrap !important;
    }

    .topbar-user-profile span.user-name-text {
        display: none !important;
    }

    .topbar-user-profile {
        padding: 2px !important;
        border: none !important;
    }

    .platform-body-wrapper {
        margin-top: 64px !important; /* Match mobile header height */
    }

    /* Mobile Hero Slider (100% width, 16px margins, height 280px) */
    .hero-slider-wrapper {
        border-radius: 20px !important;
        box-shadow: var(--shadow-sm) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 32px !important;
    }

    .hero-slider {
        height: 280px !important;
        width: 100% !important;
    }

    .hero-slider .slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .slide-content-overlay {
        left: 16px !important;
        bottom: 20px !important;
        max-width: calc(100% - 32px) !important;
    }

    .slide-content-overlay h2 {
        font-size: 18px !important;
        margin-bottom: 4px !important;
        line-height: 1.25 !important;
    }

    .slide-content-overlay p {
        font-size: 12px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }

    .hero-explore-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
        border-radius: 9999px !important;
    }

    /* Mobile Section Headers */
    .section-title-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 8px !important;
        margin-bottom: 16px !important;
    }
    
    .section-title-bar h3 {
        font-size: 14px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .section-title-bar a {
        font-size: 11px !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* Mobile Swipeable Categories Carousel (Instead of grid) */
    .categories-pill-row {
        display: flex !important;
        overflow-x: auto !important;
        gap: 12px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 8px !important;
        margin-bottom: 32px !important;
    }
    
    .categories-pill-row::-webkit-scrollbar {
        display: none !important;
    }

    .category-pill-card {
        flex: 0 0 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        scroll-snap-align: start !important;
        padding: 12px 6px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .cat-pill-icon-wrap {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
    }

    .cat-pill-icon-wrap svg {
        width: 18px !important;
        height: 18px !important;
    }

    .category-pill-card span {
        font-size: 9px !important;
    }

    /* Swipeable Event Tracks (Exactly 82vw width, 16px gap, and offset next preview) */
    .horizontal-scroll-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding-bottom: 8px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .horizontal-scroll-track::-webkit-scrollbar {
        display: none !important;
    }

    .saas-event-card-white {
        flex: 0 0 82% !important; /* Exactly 82vw card width */
        min-width: 82% !important;
        max-width: 82% !important;
        scroll-snap-align: start !important;
    }

    .saas-event-card-white img {
        aspect-ratio: 16/9 !important;
    }

    .nav-arrow-btn {
        display: none !important; /* Hide navigation arrows on touch/swipe tracks */
    }

    .customer-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Mobile Bottom Tab Bar */
    .mobile-bottom-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 72px !important;
        background: #ffffff !important;
        border-top: 1px solid var(--border-light) !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 1010 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        box-shadow: 0 -4px 12px rgba(15,23,42,0.04) !important;
        box-sizing: border-box !important;
    }

    .mobile-tab-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        color: var(--text-secondary) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        padding: 6px 12px !important;
        transition: var(--transition) !important;
    }
    
    .mobile-tab-item svg {
        width: 22px !important;
        height: 22px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
    }
    
    .mobile-tab-item.active {
        color: var(--primary) !important;
    }
    
    .mobile-tab-item.active svg {
        stroke: var(--primary) !important;
    }
}

/* --- Tablet Breakpoint Overrides (768px - 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .platform-sidebar {
        width: 88px !important;
        transform: translateX(0) !important;
    }
    .platform-main-container {
        margin-left: 88px !important;
        width: calc(100% - 88px) !important;
        padding: 24px !important;
    }
    .categories-pill-row {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
    }
    .saas-event-card-white {
        flex: 0 0 calc(50% - 10px) !important;
    }
    .customer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* --- Laptop & Desktop Breakpoint Overrides --- */
@media (min-width: 1025px) {
    .saas-event-card-white {
        flex: 0 0 calc(25% - 15px) !important;
    }
    .customer-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM GLOBAL FOOTER, MOBILE SEARCH & COMPONENT STYLE SYSTEM
   ══════════════════════════════════════════════════════════════════ */

/* --- Sidebar overlay --- */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 850;
    display: none;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-header {
    display: none;
    width: 100%;
    justify-content: flex-end;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    box-sizing: border-box;
}

.mobile-drawer-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-drawer-close:hover {
    background: var(--bg-section);
    color: var(--primary);
}

/* --- Floating category panel custom dot --- */
.floating-cat-title {
    font-size: 11px;
    font-weight: 750;
    color: var(--text-muted);
    padding: 8px 12px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 6px;
}

.floating-cat-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* --- Toast notification system (pure CSS) --- */
.toast-notification-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.premium-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 550;
    border-left: 4px solid var(--primary);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    min-width: 280px;
    max-width: 400px;
    box-sizing: border-box;
}

.premium-toast.toast-show {
    transform: translateX(0);
}

.premium-toast.toast-error {
    border-left-color: #ef4444;
}

.premium-toast.toast-warning {
    border-left-color: #f59e0b;
}

.premium-toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.premium-toast-message {
    flex: 1;
    line-height: 1.4;
}

.premium-toast-close {
    margin-left: auto;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.premium-toast-close:hover {
    color: var(--text-primary);
}

/* --- Mobile Search Overlay Trigger button --- */
.mobile-search-trigger {
    display: none !important;
}

/* --- Mobile Search Slide-down Overlay --- */
.topbar-mobile-search-overlay {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    padding: 0 16px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.topbar-mobile-search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-search-overlay-inner {
    display: flex;
    align-items: center;
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 12px;
    box-sizing: border-box;
}

.mobile-search-overlay-inner svg.search-lens {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    margin-right: 8px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.mobile-search-overlay-inner input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 6px 0;
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    color: var(--text-primary);
}

.mobile-search-close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 4px;
    margin-left: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}

.mobile-search-close-btn:hover {
    color: var(--text-primary);
}

.mobile-search-close-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    fill: none;
    stroke: currentColor;
}


/* ─── RESTORED CORE GLOBAL LAYOUT & SIDEBAR CONTAINER CLASSES ─── */
.platform-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.platform-body-wrapper {
    margin-top: 72px;
    display: flex;
    position: relative;
}

.hamburger-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: var(--transition);
}

.hamburger-btn:hover {
    background: var(--bg-section);
    color: var(--primary);
}

.hamburger-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.sidebar-menu-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.sidebar-menu-link svg {
    width: 22px !important;
    height: 22px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    transition: var(--transition) !important;
}

.sidebar-menu-link span {
    font-size: 10px !important;
    font-weight: 550 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.sidebar-categories-submenu {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
    margin-top: 4px;
    max-height: 280px;
    overflow-y: auto;
}

.sidebar-categories-submenu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.sidebar-categories-submenu a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

body.sidebar-expanded .sidebar-categories-submenu.open {
    display: flex !important;
}

.floating-categories-panel {
    position: absolute;
    top: 130px;
    left: 88px;
    width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    z-index: 1050;
    padding: 8px;
    max-height: 380px;
    overflow-y: auto;
}

.floating-categories-panel a {
    padding: 8px 12px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.floating-categories-panel a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.sidebar-tooltip {
    position: absolute;
    left: 80px;
    background: #1e293b;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1060;
}

.sidebar-menu-link:hover .sidebar-tooltip {
    opacity: 1;
}

body.sidebar-expanded .sidebar-tooltip {
    display: none !important;
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE BOTTOM SHEET MENU & SHOPPING CART STYLING SERVICES
   ══════════════════════════════════════════════════════════════════ */

/* --- Mobile Bottom Sheet (Spotify / YouTube style) --- */
.mobile-bottom-sheet {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none; /* Controlled by active class */
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.mobile-bottom-sheet.active {
    display: flex;
    pointer-events: auto;
}

.bottom-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.mobile-bottom-sheet.active .bottom-sheet-backdrop {
    opacity: 1;
}

.bottom-sheet-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.94, 0.6, 1);
    z-index: 2;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.mobile-bottom-sheet.active .bottom-sheet-content {
    transform: translateY(0);
}

.bottom-sheet-handle-wrap {
    display: flex;
    justify-content: center;
    padding: 14px 0 8px 0;
}

.bottom-sheet-handle {
    width: 40px;
    height: 4.5px;
    background: #e2e8f0;
    border-radius: 99px;
}

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

.bottom-sheet-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}

.bottom-sheet-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
}

.bottom-sheet-close-btn:hover {
    background: var(--bg-section);
    color: var(--primary);
}

.bottom-sheet-close-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    fill: none;
    stroke: currentColor;
}

.bottom-sheet-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 16px 24px;
    box-sizing: border-box;
}

.bottom-sheet-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bottom-sheet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.bottom-sheet-item:hover {
    background: var(--bg-section);
    color: var(--primary);
}

.bottom-sheet-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    color: var(--text-muted);
    transition: var(--transition);
}

.bottom-sheet-item:hover svg {
    color: var(--primary);
}

.bottom-sheet-item.highlighted {
    background: var(--primary-bg);
    color: var(--primary);
}

.bottom-sheet-item.highlighted svg {
    color: var(--primary);
}

.bottom-sheet-item.logout {
    color: #ef4444;
}

.bottom-sheet-item.logout svg {
    color: #ef4444;
}

.bottom-sheet-item.login-btn-sheet {
    background: var(--primary);
    color: #ffffff;
    justify-content: center;
    font-weight: 700;
    margin-top: 8px;
}

.bottom-sheet-item.login-btn-sheet svg {
    color: #ffffff;
}

.bottom-sheet-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 8px 0;
}

/* --- Topbar Shopping Cart styles --- */
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ef4444;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none; /* Controlled by JS count */
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-sizing: content-box;
    padding: 0px 2px;
}

.topbar-cart-btn {
    position: relative;
}

/* Green gradient avatar for partners */
.partner-avatar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

/* ─── MINI FOOTER DESIGN SYSTEM ─── */
.site-mini-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 16px 0;
    box-sizing: border-box;
    width: 100%;
}

.mini-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    box-sizing: border-box;
}

.mini-footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mini-footer-right a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.mini-footer-right a:hover {
    color: var(--primary);
}

.mini-socials {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 0 !important;
}

.mini-socials a {
    width: 32px !important;
    height: 32px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    background: var(--bg-section) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--text-secondary) !important;
    transition: var(--transition) !important;
}

.mini-socials a:hover {
    background: var(--primary-bg) !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px) !important;
}

/* ─── NORMAL FOOTER DESIGN SYSTEM ─── */
.site-normal-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 40px 0 20px 0;
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

.footer-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 32px;
    box-sizing: border-box;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-section);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.footer-socials a:hover {
    background: var(--primary-bg);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 2px;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-info-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-light);
    margin-top: 28px;
    padding-top: 16px;
    box-sizing: border-box;
}

.bottom-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
    box-sizing: border-box;
}

.bottom-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bottom-bar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.bottom-bar-links a:hover {
    color: var(--primary);
}

/* Guest Login Text/Icon Morphing */
.login-btn-icon {
    display: none;
}
.login-btn-text {
    display: inline;
}

/* ─── MOBILE SPECIFIC MEDIA OVERRIDES (MAX-WIDTH: 768PX) ─── */
@media (max-width: 768px) {
    /* Hide hamburger menu entirely on mobile */
    .hamburger-btn {
        display: none !important;
    }

    /* Absolute Center brand title */
    .brand-logo-wrap h1 {
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 18px !important;
        font-weight: 850 !important;
        color: var(--text-primary) !important;
        margin: 0 !important;
        letter-spacing: -0.02em !important;
    }

    .brand-logo-wrap {
        position: static !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    /* Hide city picker, favorites link, notification and hamburger button from mobile header */
    .topbar-city,
    .topbar-right-menu a[href*="favorilerim"],
    #notificationBtn,
    .hamburger-btn {
        display: none !important;
    }

    /* Enable mobile Search, Cart, and Profile inline list */
    .mobile-search-trigger {
        display: flex !important;
    }

    /* Cart Badge count keep visible */
    .topbar-menu-item > span:not(.cart-badge) {
        display: none !important;
    }

    .cart-badge {
        display: flex !important;
        top: -6px !important;
        right: -8px !important;
    }

    /* Profile / Login Morph */
    .login-btn-text {
        display: none !important;
    }
    
    .login-btn-icon {
        display: block !important;
        color: var(--text-secondary) !important;
    }
    
    .topbar-login-btn {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        background: transparent !important;
        color: var(--text-secondary) !important;
        box-shadow: none !important;
        display: grid !important;
        place-items: center !important;
    }
    
    .topbar-login-btn:hover {
        background: var(--primary-bg) !important;
        color: var(--primary) !important;
    }

    .topbar-user-profile span.user-name-text {
        display: none !important;
    }

    .topbar-user-profile {
        padding: 2px !important;
        border: none !important;
    }

    .topbar-right-menu {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin-left: auto !important;
    }

    .topbar-header {
        height: 64px !important;
        padding: 0 16px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: fixed !important;
        background: #ffffff !important;
        border-bottom: 1px solid var(--border-light) !important;
        box-sizing: border-box !important;
        z-index: 1000 !important;
    }

    .platform-body-wrapper {
        margin-top: 64px !important;
    }

    .platform-main-container {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        padding-bottom: 96px !important;
        min-height: calc(100vh - 64px) !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
    }

    /* Section & Spacing overrides */
    .scrolling-section-wrap {
        margin-bottom: 32px !important;
    }

    .horizontal-scroll-track {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding-bottom: 8px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        scroll-padding-left: 16px !important; /* Premium snap alignment gap fix */
        scroll-padding-right: 16px !important;
    }

    .saas-event-card-white {
        flex: 0 0 82vw !important; /* Exactly 82vw card width */
        min-width: 82vw !important;
        max-width: 82vw !important;
        scroll-snap-align: start !important;
    }

    .saas-event-card-white img {
        aspect-ratio: 16/9 !important;
    }

    /* Hide section header navigation arrows on mobile as swipe is native */
    .premium-slider-controls {
        display: none !important;
    }

    /* Horizontal Categories swipe */
    .categories-pill-row {
        display: flex !important;
        overflow-x: auto !important;
        gap: 12px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-bottom: 8px !important;
        margin-bottom: 32px !important;
    }

    .category-pill-card {
        flex: 0 0 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        scroll-snap-align: start !important;
        padding: 12px 6px !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    /* Mobile Hero Slider */
    .hero-slider-wrapper {
        width: calc(100% - 32px) !important;
        margin: 16px auto 28px !important;
        border-radius: 20px !important;
        box-shadow: var(--shadow-sm) !important;
        box-sizing: border-box !important;
    }

    .hero-slider {
        height: 280px !important;
        width: 100% !important;
        border-radius: 20px !important;
    }

    .hero-slider .slide {
        height: 100% !important;
        width: 100% !important;
    }

    .hero-slider .slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .slide-content-overlay {
        bottom: 32px !important;
        left: 20px !important;
        right: 20px !important;
        max-width: calc(100% - 40px) !important;
    }

    .slide-content-overlay h2 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .slide-content-overlay p {
        font-size: 13px !important;
        margin-bottom: 16px !important;
    }

    .hero-explore-btn {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    /* Mobile Bottom Tab Bar */
    .mobile-bottom-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 72px !important;
        background: #ffffff !important;
        border-top: 1px solid var(--border-light) !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 1010 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        box-shadow: 0 -4px 12px rgba(15,23,42,0.04) !important;
        box-sizing: border-box !important;
    }

    .mobile-tab-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        color: var(--text-secondary) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        padding: 6px 12px !important;
        transition: var(--transition) !important;
    }
    
    .mobile-tab-item svg {
        width: 22px !important;
        height: 22px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 2 !important;
    }
    
    .mobile-tab-item.active {
        color: var(--primary) !important;
    }
    
    .mobile-tab-item.active svg {
        stroke: var(--primary) !important;
    }

    /* Stack normal footer beautifully on mobile */
    .site-normal-footer {
        padding: 32px 0 calc(72px + env(safe-area-inset-bottom) + 16px) 0 !important;
    }

    .footer-grid-container {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        text-align: center !important;
        padding: 0 16px !important;
    }

    .footer-col.about {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-logo {
        justify-content: center !important;
    }

    .footer-socials {
        justify-content: center !important;
        margin-top: 10px !important;
    }

    .footer-col.contact .contact-info-list {
        align-items: center !important;
    }

    .footer-col.contact .contact-info-list li {
        justify-content: center !important;
    }

    .footer-col ul {
        align-items: center !important;
    }

    .footer-bottom-bar {
        margin-top: 24px !important;
        padding: 16px 16px 0 16px !important;
    }

    .bottom-bar-content {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .bottom-bar-links {
        justify-content: center !important;
    }

    /* Stack mini footer beautifully on mobile */
    .site-mini-footer {
        padding: 20px 16px calc(72px + env(safe-area-inset-bottom) + 16px) 16px !important;
    }

    .mini-footer-container {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .mini-footer-right {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px 16px !important;
    }
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM DESIGN OVERHAUL STYLES
   ══════════════════════════════════════════════════════════════════ */

/* --- Dynamic Section Header --- */
.premium-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-top: 12px;
}

.premium-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.premium-badge-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-section-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
}

.premium-section-desc {
    font-size: 13.5px;
    font-weight: 450;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
}

.premium-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- Premium Glassmorphic Badge --- */
.premium-glass-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.14);
    padding: 4px 10px;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
}

.premium-glass-badge.badge-featured {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.16);
}

.premium-glass-badge.badge-popular {
    color: #db2777;
    background: rgba(219, 39, 119, 0.08);
    border-color: rgba(219, 39, 119, 0.16);
}

.premium-glass-badge.badge-upcoming {
    color: #ca8a04;
    background: rgba(202, 138, 4, 0.08);
    border-color: rgba(202, 138, 4, 0.16);
}

.premium-glass-badge.badge-special {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.16);
}

.premium-glass-badge.badge-konser {
    color: #ea580c;
    background: rgba(234, 88, 12, 0.08);
    border-color: rgba(234, 88, 12, 0.16);
}

.premium-glass-badge.badge-festival {
    color: #c026d3;
    background: rgba(192, 38, 211, 0.08);
    border-color: rgba(192, 38, 211, 0.16);
}

.premium-glass-badge.badge-tiyatro {
    color: #e11d48;
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.16);
}

.premium-glass-badge.badge-spor {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.16);
}

.premium-glass-badge.badge-cocuk {
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.16);
}

.premium-glass-badge.badge-kultur {
    color: #0891b2;
    background: rgba(8, 145, 178, 0.08);
    border-color: rgba(8, 145, 178, 0.16);
}

.premium-glass-badge.badge-new_added {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.16);
}

.premium-glass-badge.badge-best_sellers {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.16);
}

.premium-glass-badge.badge-weekend {
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
    border-color: rgba(217, 119, 6, 0.16);
}

/* --- See All & Arrow Navigation Deck --- */
.premium-see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 650;
    color: var(--text-secondary);
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 9999px;
    transition: var(--transition);
}

.premium-see-all-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
}

.premium-see-all-btn .arrow-right-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: var(--transition);
}

.premium-see-all-btn:hover .arrow-right-icon {
    transform: translateX(3px);
}

.premium-slider-controls {
    display: flex;
    gap: 8px;
}

.slider-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-control-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-control-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* --- Premium Card Details --- */
.saas-event-card-white {
    border-radius: 20px !important;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -2px rgba(15, 23, 42, 0.02) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.saas-event-card-white:hover {
    transform: translateY(-8px) scale(1.005) !important;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 10px 10px -5px rgba(15, 23, 42, 0.03) !important;
    border-color: rgba(37, 99, 235, 0.25) !important;
}

.saas-event-card-white img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.saas-event-card-white:hover img {
    transform: scale(1.06) !important;
}

.saas-event-card-white h4 {
    font-size: 15px !important;
    font-weight: 750 !important;
    color: var(--text-primary) !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
}

.card-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 12px;
}

.card-meta-row svg {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.saas-event-card-white:hover .card-meta-row svg {
    color: var(--primary);
}

.saas-event-card-white .card-cta-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
}

.card-wishlist-heart {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card-wishlist-heart:hover {
    transform: scale(1.1);
}

/* --- Premium City Selector Pill --- */
.topbar-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 9999px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    user-select: none;
}

.topbar-city-pill:hover, .topbar-city-pill.active {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.topbar-city-pill svg.pin-icon {
    color: var(--primary);
    transition: var(--transition);
}

.topbar-city-pill:hover svg.pin-icon {
    transform: scale(1.1);
}

.topbar-city-pill svg.chevron-icon {
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}

.topbar-city-pill:hover svg.chevron-icon, .topbar-city-pill.active svg.chevron-icon {
    color: var(--primary);
}

.topbar-city-pill.active svg.chevron-icon {
    transform: rotate(180deg);
}

/* --- City Dropdown Panel (SaaS Style) --- */
.city-dropdown-panel {
    position: absolute;
    top: 80px;
    right: 180px;
    width: 360px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
    z-index: 1100;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform-origin: top right;
    animation: premiumDropdownScale 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.city-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.city-dropdown-section-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Popular Cities Pill Row */
.popular-cities-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.popular-city-pill {
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition);
}

.popular-city-pill:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-1px);
}

/* Real-time search field */
.city-search-box {
    position: relative;
    width: 100%;
}

.city-search-box input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13.5px;
    color: var(--text-primary);
    transition: var(--transition);
    box-sizing: border-box;
}

.city-search-box input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.city-search-box svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Scrollable All Cities List */
.cities-scroll-list {
    max-height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 4px;
    scrollbar-width: thin;
}

.cities-scroll-list::-webkit-scrollbar {
    width: 5px;
}

.cities-scroll-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.city-scroll-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 550;
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.city-scroll-item:hover {
    background: var(--primary-bg);
    color: var(--primary);
    padding-left: 16px;
}

.city-scroll-item .city-count-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
}

.city-scroll-item:hover .city-count-badge {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.12);
}

/* --- Premium User Profile Menu Overrides --- */
.topbar-user-profile {
    padding: 5px 14px 5px 6px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: #ffffff !important;
    box-shadow: var(--shadow-sm) !important;
}

.topbar-user-profile:hover, .topbar-user-profile.active {
    background: #f8fafc !important;
    border-color: var(--primary) !important;
}

.topbar-user-profile.active svg.chevron-down-icon {
    transform: rotate(180deg);
}

.topbar-dropdown {
    border-radius: 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    animation: premiumDropdownScale 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Make sure header dropdown and selector buttons don't have sudden flashes */
.topbar-city-pill, .topbar-user-profile, .city-dropdown-panel, .topbar-dropdown, .saas-event-card-white, .slider-control-btn, .premium-see-all-btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Responsive Overrides for Dropdown Panels */
@media (max-width: 992px) {
    .city-dropdown-panel {
        right: 24px;
        top: 76px;
    }
}
@media (max-width: 576px) {
    .premium-section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        margin-bottom: 20px !important;
    }
    .premium-header-right {
        width: 100% !important;
        justify-content: space-between !important;
    }
    .city-dropdown-panel {
        width: calc(100% - 32px) !important;
        left: 16px !important;
        right: 16px !important;
        top: 68px !important;
    }
}

