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

/* AccesConcert Design System */

:root {
    --acces-primary: #0066CC;
    --acces-primary-hover: #0052A3;
    --acces-secondary: #6c757d;
    --acces-success: #28a745;
    --acces-danger: #dc3545;
    --acces-warning: #ffc107;
    --acces-light: #f8f9fa;
    --acces-dark: #1a1a1a;
    --acces-border: #dee2e6;
    --acces-topbar-bg: #1a1a1a;
    --acces-header-blue: #2563EB;
}

/* ========================================
   HEADER STYLES - Pixel Perfect
   ======================================== */

/* Top Bar */
.acces-topbar {
    background: var(--acces-topbar-bg);
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

.acces-topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acces-topbar-left,
.acces-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.acces-topbar-guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.acces-topbar-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Language Selector */
.acces-language-selector {
    position: relative;
}

.acces-lang-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.acces-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.acces-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--acces-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 180px;
    margin-top: 8px;
    z-index: 1000;
    display: none;
}

.acces-language-selector:hover .acces-lang-dropdown {
    display: block;
}

.acces-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--acces-dark);
    text-decoration: none;
    transition: background 0.2s;
}

.acces-lang-option:hover {
    background: var(--acces-light);
}

.acces-lang-option img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border: 1px solid var(--acces-border);
    border-radius: 2px;
}

/* Main Header */
.acces-header {
    background: var(--acces-header-blue);
    color: white;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile Header (hidden by default on desktop) */
.acces-mobile-header {
    display: none;
}

/* Desktop Header (shown by default) */
.acces-desktop-header {
    display: block;
}

.acces-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Mobile Menu Toggle */
.acces-mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
    color: white;
    border-radius: 8px;
    transition: background 0.2s;
    flex-direction: column;
    gap: 5px;
}

.acces-mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.acces-mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.15);
}

.acces-mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Logo */
.acces-logo {
    flex-shrink: 0;
}

.acces-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.acces-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation */
.acces-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.acces-nav-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.acces-nav-link:hover {
    border-bottom-color: white;
}

/* Dropdown */
.acces-nav-dropdown {
    position: relative;
}

.acces-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
}

.acces-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--acces-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 180px;
    margin-top: 8px;
    padding: 8px 0;
    z-index: 1000;
    display: none;
}

.acces-nav-dropdown:hover .acces-dropdown-menu {
    display: block;
}

.acces-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--acces-dark);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.acces-dropdown-menu a:hover {
    background: var(--acces-light);
}

/* Search Bar */
.acces-search-bar {
    flex: 0 0 380px;
}

.acces-search-form {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 0 16px;
    overflow: hidden;
}

.acces-search-form svg:first-child {
    color: #999;
    flex-shrink: 0;
}

/* Mobile Search Bar (hidden on desktop) */
.acces-mobile-search {
    display: none !important;
    background: var(--acces-header-blue);
}

.acces-mobile-search-form {
    position: relative;
    padding: 12px 16px 16px;
}

.acces-mobile-search-form input {
    width: 100%;
    padding: 10px 44px 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: white;
    outline: none;
}

.acces-mobile-search-form input::placeholder {
    color: #9ca3af;
}

.acces-mobile-search-btn {
    position: absolute;
    right: 20px;
    top: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #026CDF;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: filter 0.2s;
}

.acces-mobile-search-btn:hover {
    filter: brightness(1.1);
}

.acces-mobile-search-btn:active {
    filter: brightness(0.95);
}

.acces-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--acces-dark);
}

.acces-search-form input::placeholder {
    color: #999;
}

.acces-search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acces-primary);
    transition: color 0.2s;
}

.acces-search-submit:hover {
    color: var(--acces-primary-hover);
}

/* User Actions */
.acces-user-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.acces-user-btn,
.acces-cart-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acces-user-btn:hover,
.acces-cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.acces-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--acces-header-blue);
}

/* Cities Navigation */
.acces-cities-nav {
    background: #f8f9fa;
    border-bottom: 1px solid var(--acces-border);
    padding: 12px 0;
}

.acces-cities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.acces-city-nav-link {
    color: var(--acces-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.acces-city-nav-link:hover,
.acces-city-nav-link.active {
    color: var(--acces-primary-hover);
    text-decoration: underline;
}

.acces-more-cities svg {
    width: 18px;
    height: 18px;
}

.acces-more-cities .acces-icon-vertical {
    transition: opacity 0.3s ease;
}

.acces-more-cities.active .acces-icon-vertical {
    opacity: 0;
}

/* Additional Cities Expanded Section */
.acces-cities-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.acces-cities-expanded.active {
    max-height: 1000px;
    opacity: 1;
    padding: 20px 0;
}

.acces-cities-expanded-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px 24px;
}

.acces-expanded-city-link {
    color: var(--acces-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s;
    padding: 4px 0;
}

.acces-expanded-city-link:hover,
.acces-expanded-city-link.active {
    color: var(--acces-primary-hover);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .acces-search-bar {
        flex: 0 0 280px;
    }
    
    .acces-nav {
        gap: 16px;
    }
    
    .acces-nav-link {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .acces-topbar-guarantee,
    .acces-topbar-location {
        font-size: 12px;
    }
    
    .acces-header-container {
        gap: 16px;
    }
    
    .acces-nav {
        display: none;
    }
    
    .acces-mobile-menu-toggle {
        display: flex !important;
    }
    
    .acces-search-bar {
        flex: 1;
    }
    
    .acces-cities-nav {
        display: none;
    }
    
    .acces-cities-expanded-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide desktop header, show mobile header */
    .acces-desktop-header {
        display: none;
    }
    
    .acces-mobile-header {
        display: block;
    }
    
    /* Show mobile search bar */
    .acces-mobile-search {
        display: block !important;
    }
    
    /* Hide desktop search bar on mobile */
    .acces-search-bar {
        display: none !important;
    }
    
    /* Adjust header container */
    .acces-header-container {
        padding-bottom: 0;
    }
    
    /* Other mobile adjustments */
    .acces-topbar-container {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .acces-topbar-left,
    .acces-topbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .acces-logo-text {
        font-size: 18px;
    }
    
    .acces-header-container {
        gap: 12px;
    }
    
    .acces-cities-expanded-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
    }
    
    .acces-cities-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .acces-topbar {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .acces-topbar-guarantee span:not(.acces-topbar-guarantee svg) {
        display: none;
    }
    
    .acces-topbar-guarantee::after {
        content: "100% Officielle";
    }
    
    .acces-header {
        padding: 8px 0;
    }
    
    .acces-logo svg {
        width: 28px;
        height: 28px;
    }
    
    .acces-logo-text {
        font-size: 16px;
    }
    
    .acces-search-form input {
        font-size: 13px;
    }
    
    .acces-user-actions {
        gap: 8px;
    }
    
    .acces-cities-expanded-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Overlay */
.acces-mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.acces-mobile-nav-overlay.active {
    display: block;
}

.acces-mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.acces-mobile-nav.active {
    left: 0;
}

.acces-mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--acces-border);
}

.acces-mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--acces-dark);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acces-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.acces-mobile-nav-link {
    color: var(--acces-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--acces-border);
}

.acces-mobile-cities {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--acces-border);
}

.acces-mobile-cities h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acces-mobile-cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.acces-mobile-city-link {
    color: var(--acces-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    background: var(--acces-light);
    border-radius: 6px;
    text-align: center;
    transition: background 0.2s;
}

.acces-mobile-city-link:hover {
    background: #e9ecef;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.acces-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--acces-dark);
    line-height: 1.6;
}

.acces-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Navigation Cities */
.acces-top-nav {
    background: #f5f5f5;
    border-bottom: 1px solid var(--acces-border);
    padding: 12px 0;
}

.acces-nav-cities {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.acces-city-link {
    color: var(--acces-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.acces-city-link:hover,
.acces-city-link.active {
    color: var(--acces-primary-hover);
    text-decoration: underline;
}

/* Search Result Header */
.acces-search-result-header {
    padding: 30px 0;
}

.acces-search-result-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.acces-loading-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 10px;
}

.acces-loading-progress {
    height: 100%;
    width: 100%;
    background: var(--acces-primary);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.acces-loading-bar.acces-hidden {
    display: none;
}

/* Explore Venues */
.acces-explore-venues {
    margin: 30px 0;
}

.acces-explore-venues h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.acces-venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.acces-venue-tag {
    background: white;
    border: 1px solid var(--acces-border);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--acces-dark);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.acces-venue-tag:hover {
    border-color: var(--acces-primary);
    color: var(--acces-primary);
}

/* Filters */
.acces-filters-form {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.acces-filter-group select,
.acces-select {
    padding: 10px 15px;
    border: 1px solid var(--acces-border);
    border-radius: 5px;
    font-size: 0.95rem;
    background: white;
    min-width: 180px;
}

/* Events Grid */
.acces-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.acces-event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.acces-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.acces-event-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.acces-event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.acces-event-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.acces-event-content {
    padding: 15px;
}

.acces-event-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.acces-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.acces-badge-category {
    background: #e3f2fd;
    color: #1976d2;
}

.acces-badge-venue {
    background: #f3e5f5;
    color: #7b1fa2;
}

.acces-event-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
}

.acces-event-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0;
}

.acces-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.acces-event-price {
    font-weight: 600;
    color: var(--acces-primary);
}

/* Buttons */
.acces-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.acces-btn-primary {
    background: var(--acces-primary);
    color: white;
}

.acces-btn-primary:hover {
    background: var(--acces-primary-hover);
}

.acces-btn-success {
    background: var(--acces-success);
    color: white;
}

.acces-btn-full {
    width: 100%;
}

.acces-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Event Detail Page */
.acces-breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.acces-breadcrumb a {
    color: var(--acces-primary);
    text-decoration: none;
}

.acces-event-header-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin: 30px 0;
}

.acces-event-header-left img {
    width: 100%;
    border-radius: 8px;
}

.acces-event-header-right h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.acces-venue-info,
.acces-price-info,
.acces-date-info {
    margin: 15px 0;
    font-size: 1rem;
}

.acces-info-box {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--acces-primary);
}

.acces-info-box h3 {
    color: var(--acces-primary);
    margin-top: 0;
}

.acces-info-box ul {
    margin: 10px 0;
    padding-left: 20px;
}

.acces-info-box li {
    margin: 8px 0;
}

.acces-btn-select-seats {
    width: 100%;
    background: var(--acces-primary);
    color: white;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px 0;
}

.acces-event-body {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin: 30px 0;
}

/* Map */
.acces-map-section {
    background: white;
    border: 1px solid var(--acces-border);
    border-radius: 8px;
    padding: 20px;
}

.acces-map-svg {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.acces-map-legend {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.legend-dot.disponible { background: #4caf50; }
.legend-dot.peu { background: #ff9800; }
.legend-dot.epuise { background: #f44336; }
.legend-dot.selection { background: #2196f3; }

/* Sidebar */
.acces-selection-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acces-session-selector,
.acces-ticket-types,
.acces-cart-mini {
    background: white;
    border: 1px solid var(--acces-border);
    border-radius: 8px;
    padding: 20px;
}

.acces-session-selector h3,
.acces-ticket-types h3,
.acces-cart-mini h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.acces-toggle-categories {
    width: 100%;
    background: #f5f5f5;
    border: 1px solid var(--acces-border);
    padding: 12px;
    border-radius: 5px;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}

.acces-categories-expanded {
    margin-top: 15px;
}

.acces-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.acces-cat-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acces-cat-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.acces-cat-price {
    font-weight: 700;
}

.acces-cat-add {
    background: none;
    border: none;
    color: var(--acces-primary);
    cursor: pointer;
    font-size: 1.2rem;
}

#acces-selection-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

#acces-selection-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.acces-cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 0;
    border-top: 2px solid var(--acces-border);
}

/* Popup */
#acces-ticket-popup {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 250px;
}

.acces-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.acces-qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #ddd;
}

#acces-popup-qty {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 5px;
}

.acces-hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .acces-event-header-detail {
        grid-template-columns: 1fr;
    }
    
    .acces-event-body {
        grid-template-columns: 1fr;
    }
    
    .acces-events-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.acces-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 20px 0;
    grid-column: 1 / -1;
}

.acces-no-results p {
    font-size: 18px;
    margin: 0;
}

.acces-no-results svg {
    width: 64px;
    height: 64px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.acces-remove-mini {
    color: red;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

/* ========================================
   FOOTER STYLES - Pixel Perfect
   ======================================== */

.acces-footer {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #e5e7eb;
    margin-top: 60px;
}

/* Main Footer Content */
.acces-footer-main {
    background: #1f2937;
    padding: 50px 0 40px;
}

.acces-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.acces-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
    gap: 50px;
}

.acces-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logo */
.acces-footer-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Revente Button */
.acces-footer-revente-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #374151;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    width: fit-content;
}

.acces-footer-revente-btn:hover {
    background: #4b5563;
}

.acces-footer-revente-btn svg {
    color: #10b981;
}

/* Footer Features */
.acces-footer-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.acces-footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 13px;
}

.acces-footer-feature svg {
    color: #10b981;
    flex-shrink: 0;
}

.acces-footer-feature svg:nth-child(1) {
    color: #0066CC;
}

/* Tagline */
.acces-footer-tagline {
    color: #6b7280;
    font-size: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* Footer Title */
.acces-footer-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0 0 15px 0;
}

/* Footer List with Icons */
.acces-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.acces-footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d1d5db;
    font-size: 14px;
}

.acces-footer-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.acces-footer-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.acces-footer-list li strong {
    color: white;
    font-weight: 500;
}

.acces-footer-list li small {
    color: #9ca3af;
    font-size: 12px;
}

/* Footer Links */
.acces-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acces-footer-links li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.acces-footer-links li a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Services Section */
.acces-footer-services {
    background: #111827;
    padding: 50px 0;
}

.acces-footer-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.acces-footer-service {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.acces-footer-service-icon {
    width: 80px;
    height: 80px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.acces-footer-service-icon svg {
    color: #9ca3af;
}

.acces-footer-service h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.acces-footer-service p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    max-width: 250px;
}

/* Footer Bottom */
.acces-footer-bottom {
    background: #111827;
    border-top: 1px solid #1f2937;
    padding: 30px 0;
}

.acces-footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acces-footer-copyright {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.acces-footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.acces-footer-bottom-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.acces-footer-bottom-nav-secondary {
    padding-top: 12px;
    border-top: 1px solid #1f2937;
}

.acces-manage-cookies {
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .acces-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
    
    .acces-footer-col:last-child {
        grid-column: span 1;
    }
    
    .acces-footer-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .acces-footer-main {
        padding: 40px 0 30px;
    }
    
    .acces-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .acces-footer-services {
        padding: 40px 0;
    }
    
    .acces-footer-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .acces-footer-bottom-content {
        gap: 15px;
    }
    
    .acces-footer-bottom-nav {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .acces-footer-revente-btn {
        width: 100%;
        justify-content: center;
    }
    
    .acces-footer-service-icon {
        width: 70px;
        height: 70px;
    }
    
    .acces-footer-service-icon svg {
        width: 40px;
        height: 40px;
    }
}
