@charset "utf-8";

:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    --accent: #c89b3c;
    --accent-dark: #9c7a30;
    --text: #333333;
    --light-text: #777777;
    --light-border: #e0e0e0;
    --spacing: 1rem;
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --error: #d32f2f;
    --success: #2e7d32;
    --warning: #f57c00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* ====================
   HEADER
   ==================== */

header {
    background-color: var(--primary);
    padding: var(--spacing) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100px;
    display: block;
    transition: var(--transition);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-btn:hover span {
    background: var(--accent);
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.user-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    transition: var(--transition);
    border-radius: 50%;
}

.user-btn:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

/* ====================
   HERO
   ==================== */

.hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3),
        rgba(26, 26, 26, 0.5)
    );
    z-index: 1;
}

/* ==========================
   HERO ACTIONS (QR + Search)
   ========================== */

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center; /* ← Asegura alineación vertical */
    margin-top: 1.5rem;
}

.hero-qr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0; /* Elimina padding extra */
    line-height: 1; /* Evita desalineaciones por texto */
}

.hero-qr-btn:hover {
    background: var(--accent);
    border-color: var(--accent-dark);
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(200, 155, 60, 0.5);
}

.hero-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
}

.hero-search-btn:hover {
    background: var(--accent);
    border-color: var(--accent-dark);
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(200, 155, 60, 0.5);
}

/* ====================
   SEARCH PANEL
   ==================== */

.search-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    max-height: 70vh;
    overflow-y: auto;
}

.search-panel.open {
    transform: translateY(0);
}

.search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.search-panel-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.search-panel-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--light-text);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.search-panel-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--error);
}

.search-panel-body {
    padding: 1rem 1.5rem 2rem 1.5rem;
}

.search-panel .minimal-search {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.6rem;
    background: var(--secondary);
    border-radius: 50px;
    padding: 0.3rem 1.2rem;
    border: 1px solid var(--light-border);
    margin-bottom: 1rem;
}

.search-panel .search-icon {
    color: var(--light-text);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-panel .search-input-minimal {
    flex: 1;
    min-width: 0;
    width: 100%;
    border: none;
    padding: 0.7rem 0;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.search-panel .search-input-minimal::placeholder {
    color: var(--light-text);
    font-weight: 300;
}

.search-panel .filters-container {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.search-panel .filter-select {
    padding: 0.7rem 1.2rem;
    border: 1px solid var(--light-border);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
    flex: 1;
    min-width: 140px;
}

.search-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================
   LOADING / ERROR / EMPTY STATES
   ==================== */

.loading-state,
.error-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.loading-state i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.error-state i {
    font-size: 3rem;
    color: var(--error);
    margin-bottom: 1rem;
}

.error-state h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.error-state p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--light-text);
    background: white;
    border-radius: 8px;
    margin: 2rem 0;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ====================
   SHOWS SECTION
   ==================== */

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.shows-section {
    margin-bottom: 3rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* SHOW CARDS */
.show-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.show-card.past-show {
    opacity: 0.7;
    cursor: default;
}

.show-card.past-show:hover {
    opacity: 0.85;
}

.show-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: linear-gradient(180deg, #f8f8f8 0%, #eaeaea 100%);
    padding: 8px;
}

.show-content {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.show-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.show-info {
    color: var(--light-text);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.show-price {
    font-weight: bold;
    color: var(--accent);
    margin: 0.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.show-prices {
    margin: 12px 0;
    padding: 10px 0;
    border-top: 1px dashed var(--light-border);
    border-bottom: 1px dashed var(--light-border);
    background: rgba(200, 155, 60, 0.03);
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0;
    font-size: 0.9rem;
    padding: 0 2px;
}

.price-label {
    color: var(--light-text);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.price-value {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.show-card:hover .show-prices {
    border-top-color: var(--accent);
    border-bottom-color: var(--accent);
    transition: var(--transition);
}

.show-card:hover .price-value {
    color: var(--accent-dark);
}

/* Badges */
.sold-out-badge {
    color: var(--error);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.availability-badge {
    color: var(--success);
    font-weight: 500;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

/* NUEVO: Badge para shows finalizados */
.ended-badge {
    background-color: #6b7280;
    color: white;
    text-align: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.25rem 0;
}

/* Botones */
.show-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.show-buttons .info-btn,
.show-buttons .buy-btn {
    flex: 1;
}

/* ====================
   CATEGORIES
   ==================== */

.categories-section {
    margin-bottom: 3rem;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.category {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 1.2rem 1rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 0 1 auto;
    min-width: 140px;
    max-width: 180px;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.category-name {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

.category-count {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 0.25rem;
}

/* ====================
   BUTTONS
   ==================== */

.buy-btn,
.info-btn,
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.buy-btn {
    background-color: var(--accent);
    color: white;
}

.buy-btn:hover:not(:disabled) {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-btn {
    background-color: var(--secondary);
    color: var(--text);
    border: 1px solid var(--light-border);
    box-shadow: none;
}

.info-btn:hover {
    background-color: var(--light-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: var(--accent);
}

/* ====================
   MOBILE SIDEBAR (Left)
   ==================== */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-logo {
    width: 80px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-sidebar-logo:hover {
    transform: scale(1.05);
}

.mobile-sidebar-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.mobile-sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link i {
    width: 20px;
    font-size: 1rem;
    color: var(--accent);
    text-align: center;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-left-color: var(--accent);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================
   USER SIDEBAR (Right)
   ==================== */

.user-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

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

.user-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-sidebar-header h3 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
}

.user-sidebar-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.user-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.user-sidebar-nav {
    flex: 1;
    padding: 1rem 0;
}

.user-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-right: 3px solid transparent;
}

.user-nav-link i {
    width: 20px;
    font-size: 1rem;
    color: var(--accent);
    text-align: center;
}

.user-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-right-color: var(--accent);
}

.user-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.user-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====================
   FOOTER
   ==================== */

footer {
    background-color: var(--primary);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-links-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 2rem;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Montserrat', sans-serif;
}

/* ====================
   ACCESSIBILITY
   ==================== */

button:focus,
.category:focus,
.show-card:focus,
.filter-select:focus,
.search-input-minimal:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ====================
   DESKTOP: Oculta sidebars
   ==================== */

@media (min-width: 769px) {
    .mobile-sidebar,
    .mobile-sidebar-overlay,
    .user-sidebar,
    .user-sidebar-overlay {
        display: none;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* ====================
   TABLET (≤768px)
   ==================== */

@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .hero {
        height: 60vh;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
	
    .hero-actions {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }

    .hero-qr-btn,
    .hero-search-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .search-panel-body {
        padding: 1rem 1.2rem 1.5rem 1.2rem;
    }

    .search-panel .filter-select {
        min-width: 130px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .shows-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0 2.5rem 0;
    }
    
    .category {
        max-width: 100%;
        min-width: auto;
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-link:hover {
        transform: none;
    }
	
    .show-image {
        height: 300px;
    }
}

/* ====================
   MOBILE (≤480px)
   ==================== */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 50vh;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-search-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .hero-actions {
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .hero-qr-btn,
    .hero-search-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
	
    .search-panel-header {
        padding: 1.2rem 1.2rem 0.3rem 1.2rem;
    }

    .search-panel-body {
        padding: 0.8rem 1rem 1.5rem 1rem;
    }

    .search-panel .filters-container {
        flex-direction: column;
    }

    .search-panel .filter-select {
        width: 100%;
        min-width: auto;
    }
    
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .show-card {
        border-radius: 8px;
    }
    
    .show-image {
        height: 300px;
        width: 100%;
        object-fit: contain;
        background: linear-gradient(180deg, #f8f8f8 0%, #eaeaea 100%);
        padding: 0;
    }
    
    .show-content {
        padding: 1rem;
    }
    
    .show-buttons {
        flex-direction: column;
    }
    
    .categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .category {
        max-width: 100%;
        min-width: auto;
        padding: 0.6rem 0.4rem;
    }
    
    .category-icon {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .category-name {
        font-size: 0.7rem;
    }
    
    .category-count {
        font-size: 0.6rem;
    }
    
    .price-option {
        font-size: 0.85rem;
    }
    
    .price-label {
        font-size: 0.8rem;
    }
    
    .price-value {
        font-size: 0.95rem;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .loading-state,
    .error-state,
    .no-results {
        padding: 2rem 1rem;
    }
	
	.platform-fee-note {
        font-size: 0.65rem;
    }
}


/* ====================
   SMALL MOBILE (≤360px)
   ==================== */

@media (max-width: 360px) {
    .categories {
        grid-template-columns: 1fr;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}