/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: #7c3aed;
}

a:hover {
    color: #5b21b6;
}

/* ============================================
   FIX: Prevent Header Overlap
   ============================================ */

/* Main App Wrapper */
.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation - Ensure it's on top */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}
.navbar-container{
    top: 0;
    position: absolute;
    width: 100%;
}
/* Main Content - Push down below header */
.main-content {
    flex: 1 0 auto;
    padding: 0;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background: #f3f4f6;
}

/* Footer */
.footer {
    flex-shrink: 0;
    margin-top: auto;
    background: #111827;
    color: #9ca3af;
    padding: 2rem 1.5rem;
}

/* ============================================
   EVENT SHOW PAGE - FIX OVERLAP
   ============================================ */
.event-show-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Breadcrumb */
.breadcrumb-wrapper {
    background: transparent;
    padding: 0 0 1.5rem 0;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #7c3aed;
}

.breadcrumb .separator {
    color: #d1d5db;
}

.breadcrumb .current {
    color: #1f2937;
    font-weight: 500;
}

/* Event Show Grid */
.event-show {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Left Column */
.event-main {
    min-width: 0;
}

.event-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    height: 320px;
    margin-bottom: 1.5rem;
    position: relative;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-image-wrapper .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
}

.event-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.event-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.event-meta-item .icon {
    font-size: 1rem;
    color: #7c3aed;
}

.event-description {
    margin-bottom: 2rem;
}

.event-description h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.event-description p {
    color: #4b5563;
    line-height: 1.8;
    white-space: pre-line;
}

/* Right Column - Sidebar */
.event-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.ticket-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

.ticket-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .event-show {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .event-show-wrapper {
        padding: 1rem;
    }
    
    .event-image-wrapper {
        height: 200px;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-meta-grid {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ============================================
   APP LAYOUT
   ============================================ */
.app-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    padding: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.navbar-brand .brand-text span {
    color: #7c3aed;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
}

.navbar-links a {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
}

.navbar-links a:hover {
    color: #1f2937;
}

.navbar-links a.active {
    color: #1f2937;
    border-bottom-color: #7c3aed;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-link {
    font-size: 0.875rem;
    color: #6b7280;
    transition: color 0.2s;
    text-decoration: none;
}

.auth-link:hover {
    color: #1f2937;
}

.auth-link.register {
    background: #7c3aed;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.auth-link.register:hover {
    background: #5b21b6;
    color: #ffffff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.dropdown-toggle:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 10;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.dropdown-menu .divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.25rem 0;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
    color: #6b7280;
}

.mobile-menu {
    display: none;
    padding: 0.5rem 1.5rem 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #6b7280;
    font-size: 0.875rem;
    border-left: 4px solid transparent;
    padding-left: 0.75rem;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: #1f2937;
}

.mobile-menu a.active {
    color: #1f2937;
    border-left-color: #7c3aed;
    background: #f3f4f6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    flex-shrink: 0;
    margin-top: auto;
    background: #111827;
    color: #9ca3af;
    padding: 2rem 1.5rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #1f2937;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand .brand-icon {
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.75rem;
}

.footer-bottom .footer-credit {
    color: #6b7280;
    margin-top: 0.25rem;
    font-size: 0.7rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #7c3aed;
    color: #ffffff;
}

.btn-primary:hover {
    background: #5b21b6;
}

.btn-secondary {
    background: #f3f4f6;
    color: #1f2937;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-outline {
    background: transparent;
    color: #7c3aed;
    border: 1px solid #7c3aed;
}

.btn-outline:hover {
    background: #7c3aed;
    color: #ffffff;
}

.btn-success {
    background: #059669;
    color: #ffffff;
}

.btn-success:hover {
    background: #047857;
}

.btn-danger {
    background: #dc2626;
    color: #ffffff;
}

.btn-danger:hover {
    background: #b91c1c;
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-label .required {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-control.error {
    border-color: #dc2626;
}

.form-error {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-hint {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* ============================================
   GRID
   ============================================ */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

/* ============================================
   TICKET CARDS
   ============================================ */
.ticket-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.ticket-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ticket-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #ffffff;
}

.ticket-header .ticket-title {
    font-weight: 600;
    font-size: 1.125rem;
}

.ticket-header .ticket-tier {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.ticket-header .ticket-status {
    float: right;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ticket-status.active {
    background: #059669;
}

.ticket-status.redeemed {
    background: #6b7280;
}

.ticket-status.cancelled {
    background: #dc2626;
}

.ticket-body {
    padding: 1.25rem;
}

.ticket-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.ticket-detail .icon {
    width: 1rem;
    height: 1rem;
    color: #7c3aed;
}

.ticket-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

.empty-state .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ============================================
   STATS CARDS
   ============================================ */
.stat-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 1rem 1.25rem;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-card .stat-value.purple {
    color: #7c3aed;
}

.stat-card .stat-value.green {
    color: #059669;
}

.stat-card .stat-value.gray {
    color: #6b7280;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #ffffff;
    border-radius: 0.75rem;
    max-width: 32rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .main-content {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .navbar-inner {
        padding: 0 1rem;
        height: 56px;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .ticket-actions {
        flex-direction: column;
    }
    
    .ticket-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   ORGANIZER LAYOUT
   ============================================ */
.organizer-app {
    display: flex;
    min-height: 100vh;
    background: #f3f4f6;
}

.organizer-sidebar {
    width: 260px;
    background: #1f2937;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.organizer-sidebar::-webkit-scrollbar {
    width: 4px;
}

.organizer-sidebar::-webkit-scrollbar-track {
    background: #374151;
}

.organizer-sidebar::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 4px;
}

.organizer-sidebar.collapsed {
    width: 70px;
}

.organizer-sidebar.collapsed .brand-text,
.organizer-sidebar.collapsed .nav-text,
.organizer-sidebar.collapsed .nav-section-title {
    display: none;
}

.organizer-sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 0.75rem;
}

.organizer-sidebar.collapsed .nav-item .nav-icon {
    margin-right: 0;
}

.sidebar-brand {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}

.brand-link:hover {
    color: #ffffff;
}

.brand-icon {
    font-size: 1.5rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
}

.sidebar-toggle:hover {
    color: #ffffff;
}

.sidebar-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.sidebar-nav {
    padding: 1rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-section-title {
    font-size: 0.625rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.nav-item:hover {
    background: #374151;
    color: #ffffff;
}

.nav-item.active {
    background: #7c3aed;
    color: #ffffff;
}

.nav-item .nav-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.organizer-main {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.organizer-sidebar.collapsed ~ .organizer-main {
    margin-left: 70px;
}

.organizer-topnav {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.topnav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topnav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #6b7280;
    display: none;
}

.topnav-toggle:hover {
    color: #1f2937;
}

.topnav-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.topnav-breadcrumb {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

.topnav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topnav-search {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s;
}

.topnav-search:focus-within {
    background: #ffffff;
    box-shadow: 0 0 0 2px #7c3aed;
}

.search-input {
    border: none;
    background: none;
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    outline: none;
    width: 150px;
    color: #1f2937;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
}

.search-btn:hover {
    color: #1f2937;
}

.search-btn svg {
    width: 1rem;
    height: 1rem;
}

.topnav-profile {
    position: relative;
    cursor: pointer;
}

.profile-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
}

.profile-dropdown:hover {
    background: #f3f4f6;
}

.profile-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #7c3aed;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.profile-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
}

.profile-role {
    font-size: 0.625rem;
    color: #6b7280;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 50;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

.dropdown-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0.25rem 0;
}

.organizer-content {
    padding: 1.5rem;
    flex: 1;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.2s;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-card-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0.25rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.card-header a {
    font-size: 0.75rem;
    color: #7c3aed;
    transition: color 0.2s;
    text-decoration: none;
}

.card-header a:hover {
    color: #5b21b6;
}

.card-body {
    padding: 1.5rem;
}

.event-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f9fafb;
}

.event-list-item:last-child {
    border-bottom: none;
}

.event-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.event-info .event-meta {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    gap: 0.75rem;
    margin-top: 0.125rem;
    flex-wrap: wrap;
}

.event-status {
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
}

.event-status.published {
    background: #d1fae5;
    color: #065f46;
}

.event-status.draft {
    background: #fef3c7;
    color: #92400e;
}

.event-status.cancelled {
    background: #fef2f2;
    color: #991b1b;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    transition: all 0.2s;
    text-align: center;
    color: #1f2937;
    text-decoration: none;
}

.quick-action-btn:hover {
    background: #f5f3ff;
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.quick-action-btn .icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.quick-action-btn .label {
    font-size: 0.75rem;
    font-weight: 500;
}

.activity-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f9fafb;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.activity-icon.purple { background: #ede9fe; }
.activity-icon.green { background: #d1fae5; }
.activity-icon.blue { background: #dbeafe; }
.activity-icon.orange { background: #fef3c7; }

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 0.875rem;
    color: #1f2937;
}

.activity-text strong {
    font-weight: 600;
}

.activity-time {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ============================================
   ORGANIZER RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .organizer-sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .organizer-sidebar.open {
        transform: translateX(0);
    }
    
    .organizer-sidebar ~ .organizer-main {
        margin-left: 0;
    }
    
    .topnav-toggle {
        display: block;
    }
    
    .topnav-search .search-input {
        width: 100px;
    }
    
    .profile-info {
        display: none;
    }
    
    .profile-arrow {
        display: none;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .organizer-topnav {
        padding: 0.5rem 1rem;
    }
    
    .organizer-content {
        padding: 1rem;
    }
    
    .stat-card-value {
        font-size: 1.25rem;
    }
    
    .topnav-search .search-input {
        width: 80px;
        font-size: 0.625rem;
    }
    
    .event-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .event-info .event-meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .notif-badge {
        font-size: 0.5rem;
        padding: 0.0625rem 0.25rem;
        min-width: 0.75rem;
    }
}

/* ============================================
   ADMIN LAYOUT
   ============================================ */
.admin-app {
    display: flex;
    min-height: 100vh;
    background: #f3f4f6;
}

.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: #1f2937;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 4px;
}

.admin-sidebar.collapsed {
    width: 70px;
}

.admin-sidebar.collapsed .brand-text,
.admin-sidebar.collapsed .nav-text,
.admin-sidebar.collapsed .nav-section-title {
    display: none;
}

.admin-sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 0.75rem;
}

.admin-sidebar.collapsed .nav-item .nav-icon {
    margin-right: 0;
    font-size: 1.25rem;
}

.admin-sidebar.collapsed .sidebar-brand {
    justify-content: center;
    padding: 1.25rem 0.75rem;
}

.sidebar-brand {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand-link:hover {
    color: #ffffff;
    opacity: 0.9;
}

.brand-icon {
    font-size: 1.75rem;
}

.brand-text {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s, transform 0.3s;
}

.sidebar-toggle:hover {
    color: #ffffff;
}

.sidebar-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.sidebar-nav {
    padding: 1.25rem 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-section-title {
    font-size: 0.625rem;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    opacity: 0.7;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.875rem;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #7c3aed;
    border-radius: 0 3px 3px 0;
    transition: height 0.3s;
}

.nav-item:hover {
    background: rgba(55, 65, 81, 0.6);
    color: #ffffff;
}

.nav-item.active {
    background: rgba(124, 58, 237, 0.15);
    color: #ffffff;
}

.nav-item.active::before {
    height: 70%;
}

.nav-item .nav-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
}

.nav-item .nav-text {
    white-space: nowrap;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-sidebar.collapsed ~ .admin-main {
    margin-left: 70px;
}

.admin-topnav {
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    min-height: 64px;
}

.topnav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topnav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #6b7280;
    display: none;
    transition: color 0.2s;
}

.topnav-toggle:hover {
    color: #1f2937;
}

.topnav-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.topnav-breadcrumb {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

.topnav-breadcrumb .separator {
    color: #d1d5db;
    margin: 0 0.25rem;
}

.topnav-breadcrumb .current {
    color: #7c3aed;
}

.topnav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topnav-search {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.topnav-search:focus-within {
    background: #ffffff;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.search-input {
    border: none;
    background: none;
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    outline: none;
    width: 160px;
    color: #1f2937;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #1f2937;
}

.search-btn svg {
    width: 1rem;
    height: 1rem;
}

.topnav-profile {
    position: relative;
    cursor: pointer;
}

.profile-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
}

.profile-dropdown:hover {
    background: #f3f4f6;
}

.profile-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.profile-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.profile-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
}

.profile-role {
    font-size: 0.625rem;
    color: #6b7280;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 50;
    overflow: hidden;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f3f4f6;
}

.dropdown-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0.25rem 0;
}

.admin-content {
    padding: 1.5rem;
    flex: 1;
}

/* ============================================
   ADMIN RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .admin-sidebar:not(.collapsed) {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .admin-sidebar ~ .admin-main {
        margin-left: 0;
    }
    
    .topnav-toggle {
        display: block;
    }
    
    .topnav-search .search-input {
        width: 100px;
    }
    
    .profile-info {
        display: none;
    }
    
    .profile-arrow {
        display: none;
    }
    
    .admin-content {
        padding: 1rem;
    }
    
    .admin-topnav {
        padding: 0.5rem 1rem;
    }
    
    .stat-card-value {
        font-size: 1.25rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

.w-full { width: 100%; }

.text-purple { color: #7c3aed; }
.text-green { color: #059669; }
.text-blue { color: #3b82f6; }
.text-orange { color: #f59e0b; }
.text-red { color: #dc2626; }
.text-gray { color: #6b7280; }
.text-dark { color: #1f2937; }

.bg-purple-light { background: #ede9fe; }
.bg-green-light { background: #d1fae5; }
.bg-blue-light { background: #dbeafe; }
.bg-orange-light { background: #fef3c7; }
.bg-red-light { background: #fef2f2; }
.bg-gray-light { background: #f3f4f6; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.alert-success {
    background: #ecfdf5;
    border-color: #059669;
    color: #065f46;
}

.alert-error {
    background: #fef2f2;
    border-color: #dc2626;
    color: #991b1b;
}

.alert-warning {
    background: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}

.alert-info {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

 
    /* Breadcrumb */
    .breadcrumb-wrapper {
        background: #ffffff;
        border-bottom: 1px solid #f3f4f6;
        padding: 1rem 0;
    }
    
    .breadcrumb {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
    }
    
    .breadcrumb a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.2s;
    }
    
    .breadcrumb a:hover {
        color: #1f2937;
    }
    
    .breadcrumb .separator {
        color: #d1d5db;
    }
    
    .breadcrumb .current {
        color: #1f2937;
        font-weight: 500;
    }
    
    /* Main Layout */
    .event-show {
        max-width: 1280px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        position: relative;
    }
    
    /* Left Column */
    .event-main {
        min-width: 0;
    }
    
    .event-image-wrapper {
        border-radius: 0.75rem;
        overflow: hidden;
        background: linear-gradient(135deg, #c4b5fd, #a78bfa);
        height: 320px;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .event-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .event-image-wrapper .placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .event-title {
        font-size: 2.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }
    
    .event-meta-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1rem 0;
        border-top: 1px solid #f3f4f6;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .event-meta-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #4b5563;
    }
    
    .event-meta-item .icon {
        font-size: 1rem;
        color: #7c3aed;
        flex-shrink: 0;
    }
    
    .event-description {
        margin-bottom: 2rem;
    }
    
    .event-description h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }
    
    .event-description p {
        color: #4b5563;
        line-height: 1.8;
        white-space: pre-line;
    }
    
    /* Alert Boxes */
    .alert-box {
        padding: 1rem 1.25rem;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .alert-box .alert-icon {
        flex-shrink: 0;
        font-size: 1.25rem;
    }
    
    .alert-box.warning {
        background: #fffbeb;
        border-left: 4px solid #f59e0b;
    }
    
    .alert-box.warning .alert-text {
        color: #92400e;
    }
    
    .alert-box.info {
        background: #eff6ff;
        border-left: 4px solid #3b82f6;
    }
    
    .alert-box.info .alert-text {
        color: #1e40af;
    }
    
    .alert-box.success {
        background: #ecfdf5;
        border-left: 4px solid #059669;
    }
    
    .alert-box.success .alert-text {
        color: #065f46;
    }
    
    .alert-box.danger {
        background: #fef2f2;
        border-left: 4px solid #dc2626;
    }
    
    .alert-box.danger .alert-text {
        color: #991b1b;
    }
    
    .alert-box .alert-text {
        font-size: 0.875rem;
    }
    
    /* Terms Box */
    .terms-box {
        background: #f9fafb;
        border-radius: 0.5rem;
        padding: 1rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-box h4 {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.25rem;
    }
    
    .terms-box p {
        font-size: 0.875rem;
        color: #6b7280;
    }
    
    /* Right Column - Sidebar */
    .event-sidebar {
        position: sticky;
        top: 6rem;
        align-self: start;
    }
    
    .ticket-card {
        background: #ffffff;
        border-radius: 0.75rem;
        border: 1px solid #f3f4f6;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        padding: 1.5rem;
    }
    
    .ticket-card-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }
    
    /* Ticket Tier */
    .ticket-tier {
        border: 1px solid #f3f4f6;
        border-radius: 0.5rem;
        padding: 1rem;
        margin-bottom: 0.75rem;
        transition: all 0.2s;
    }
    
    .ticket-tier:hover {
        border-color: #e5e7eb;
        background: #fafafa;
    }
    
    .ticket-tier:last-child {
        margin-bottom: 0;
    }
    
    .ticket-tier-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .ticket-tier-name {
        font-weight: 600;
        color: #1f2937;
    }
    
    .ticket-tier-price {
        font-weight: 700;
        color: #7c3aed;
        font-size: 1.125rem;
    }
    
    .ticket-tier-description {
        font-size: 0.875rem;
        color: #6b7280;
        margin-bottom: 0.5rem;
    }
    
    .ticket-tier-benefits {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .ticket-tier-benefit {
        background: #ede9fe;
        color: #7c3aed;
        font-size: 0.625rem;
        padding: 0.125rem 0.625rem;
        border-radius: 9999px;
        font-weight: 500;
    }
    
    .ticket-tier-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .ticket-tier-available {
        font-size: 0.75rem;
        color: #6b7280;
    }
    
    .ticket-tier-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .qty-btn {
        width: 2rem;
        height: 2rem;
        border-radius: 9999px;
        border: 1px solid #e5e7eb;
        background: #ffffff;
        color: #4b5563;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .qty-btn:hover {
        background: #f3f4f6;
        border-color: #d1d5db;
    }
    
    .qty-input {
        width: 3rem;
        text-align: center;
        border: 1px solid #e5e7eb;
        border-radius: 0.375rem;
        padding: 0.25rem 0.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #1f2937;
        -moz-appearance: textfield;
    }
    
    .qty-input::-webkit-inner-spin-button,
    .qty-input::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    .qty-input:focus {
        outline: none;
        border-color: #7c3aed;
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }
    
    /* Checkout Button */
    .btn-checkout {
        width: 100%;
        padding: 0.75rem 1rem;
        background: #7c3aed;
        color: #ffffff;
        border: none;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 1rem;
    }
    
    .btn-checkout:hover:not(:disabled) {
        background: #5b21b6;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    }
    
    .btn-checkout:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .btn-checkout .btn-text {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .secure-badge {
        text-align: center;
        font-size: 0.75rem;
        color: #6b7280;
        margin-top: 0.75rem;
    }
    
    .secure-badge .lock-icon {
        margin-right: 0.25rem;
    }
    
    /* Cancelled / Sold Out States */
    .state-message {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .state-message .state-icon {
        font-size: 3rem;
        display: block;
        margin-bottom: 0.75rem;
    }
    
    .state-message .state-title {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .state-message .state-sub {
        font-size: 0.875rem;
    }
    
    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
        .event-show {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .event-sidebar {
            position: static;
        }
        
        .event-image-wrapper {
            height: 240px;
        }
        
        .event-title {
            font-size: 1.75rem;
        }
    }
    
    @media (max-width: 640px) {
        .event-show {
            padding: 1rem;
        }
        
        .event-image-wrapper {
            height: 180px;
            border-radius: 0.5rem;
        }
        
        .event-title {
            font-size: 1.5rem;
        }
        
        .event-meta-grid {
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .event-meta-item {
            font-size: 0.8125rem;
        }
        
        .breadcrumb {
            padding: 0 1rem;
            font-size: 0.75rem;
        }
        
        .ticket-card {
            padding: 1rem;
        }
        
        .ticket-tier-header {
            flex-direction: column;
            gap: 0.25rem;
        }
        
        .ticket-tier-footer {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .ticket-tier-quantity {
            width: 100%;
            justify-content: space-between;
        }
    }
