/* ShowFloorTips - Monochrome Design System */
/* Font loaded via <link> in HTML - removed @import to eliminate render-blocking chain */

/* Skip to Content - Accessibility */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: #0a0a0a; color: #fff; padding: 0.75rem 1.5rem; border-radius: 0 0 8px 8px; font-size: 0.9rem; font-weight: 600; text-decoration: none; z-index: 10000; transition: top 0.2s }
.skip-link:focus { top: 0 }

:root {
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #0a0a0a;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #eff6ff;

    --text: var(--gray-900);
    --text-secondary: var(--gray-500);
    --text-light: var(--gray-400);
    --bg: var(--white);
    --bg-alt: var(--gray-50);
    --border: var(--gray-200);
    --border-light: var(--gray-100);
    --radius: 8px;
    --radius-sm: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 8px 24px rgba(0,0,0,0.1);
    --transition: all 0.15s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

/* ─── Header ─────────────────────────────────────────────── */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.025em;
    margin-right: 2rem;
    flex-shrink: 0;
}

.logo span {
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    list-style: none;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--black);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.nav-cta:hover {
    background: var(--gray-800);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--gray-50);
    overflow: hidden;
    padding: 5rem 2rem 4rem;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.search-container {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.search-container input::placeholder {
    color: var(--gray-400);
}

.search-container input:focus {
    border-color: var(--gray-400);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ─── Category Filters ───────────────────────────────────── */
.filters-section {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding: 0 2rem;
}

.filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.filter-pill {
    padding: 0.6rem 1.25rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    border: 1px solid transparent;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}

.filter-pill:hover {
    background: var(--gray-200);
    color: var(--black);
}

.filter-pill.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ─── Shows Grid ─────────────────────────────────────────── */
.shows-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    scroll-margin-top: 80px;
}

.shows-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.shows-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg);
    cursor: pointer;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ─── Show Card ──────────────────────────────────────────── */
.show-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.show-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #1e293b;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--black) !important;
    z-index: 1;
}

.card-body {
    padding: 1.25rem;
}

.card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.card-meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.5;
}

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

.card-source {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.card-arrow {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.show-card:hover .card-arrow {
    color: var(--black);
    transform: translateX(4px);
}

/* ─── Load More Button ───────────────────────────────────── */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    padding: 0.75rem 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: var(--white);
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ─── No Results ─────────────────────────────────────────── */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* ─── Modal Overlay ──────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    animation: modalSlideUp 0.3s ease;
    overflow: hidden;
}

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

.modal-header {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(10,10,10,0.8));
}

.modal-header-content {
    position: relative;
    z-index: 1;
}

.modal-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--black);
    margin-bottom: 0.75rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.modal-header-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.modal-header-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
}

.modal-header-meta svg {
    width: 14px;
    height: 14px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0,0,0,0.7);
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    background: var(--white);
}

.modal-tab {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-family: inherit;
    transition: var(--transition);
}

.modal-tab:hover {
    color: var(--text);
}

.modal-tab.active {
    color: var(--black);
    border-bottom-color: var(--black);
    font-weight: 600;
}

/* Modal Content */
.modal-body {
    padding: 2rem;
}

.modal-tab-content {
    display: none;
}

.modal-tab-content.active {
    display: block;
}

/* Overview Tab */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-card {
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.detail-card h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.detail-card a {
    color: var(--accent);
    font-weight: 500;
}

.detail-card a:hover {
    text-decoration: underline;
}

.show-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Hotels Tab */
.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.hotel-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.hotel-info p {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.hotel-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

.hotel-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hotel-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.hotel-book-btn:hover {
    background: var(--gray-800);
}

.hotel-search-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.hotel-search-link:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Tips Tab */
.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.scannly-tip {
    background: #eef2ff;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    padding: 1.25rem !important;
    border-bottom: none !important;
}

.scannly-dl-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #6366f1;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.scannly-dl-btn:hover {
    background: #818cf8;
}

/* Modal Actions */
.modal-actions {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.btn-outline {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--black);
    background: var(--gray-50);
}

/* ─── Products Section ───────────────────────────────────── */
.products-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.product-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    display: block;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

/* ─── Tips Section ───────────────────────────────────────── */
.tips-section {
    background: var(--gray-50);
    padding: 2rem 2rem;
}

.tips-section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tip-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.tip-card:hover {
    box-shadow: var(--shadow);
}

.tip-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--gray-100);
}

.tip-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gray-700);
}

.tip-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Newsletter ─────────────────────────────────────────── */
.newsletter-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.newsletter-box {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 60%);
}

.newsletter-box > * {
    position: relative;
}

.newsletter-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    background: var(--gray-900);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    border-color: var(--gray-500);
}

.newsletter-form button {
    padding: 0.875rem 1.75rem;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gray-200);
}

/* ─── Industry Section ───────────────────────────────────── */
.industry-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.industry-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray-900);
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.industry-card:hover {
    border-color: var(--gray-900);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.industry-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .industry-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .industry-grid { grid-template-columns: 1fr; }
}

/* ─── CTA Section ────────────────────────────────────────── */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.cta-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-box-content {
    flex: 1;
}

.cta-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-box ul {
    list-style: none;
    margin-top: 1rem;
}

.cta-box ul li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cta-box ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
    background: var(--gray-50);
    color: var(--gray-500);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 0.5rem;
    color: var(--gray-500);
}

.footer-col h4 {
    color: var(--gray-900);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.footer-bottom a {
    color: var(--gray-600);
}

.footer-bottom a:hover {
    color: var(--black);
}

/* ─── Article Pages (SEO Show Pages) ─────────────────────── */
.article-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(10,10,10,0.85));
}

.article-hero-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.article-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.article-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin: 2.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .nav-links a:hover {
        background: var(--gray-50);
    }

    .nav-links .nav-cta {
        margin-top: 0.5rem;
        text-align: center;
    }

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

    .hero {
        padding: 3rem 1rem 2.5rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .stats-inner {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .modal {
        margin: 0;
        border-radius: var(--radius) var(--radius) 0 0;
        max-height: 95vh;
        overflow-y: auto;
    }

    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-header {
        height: 200px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
        padding: 1.25rem;
    }

    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-box {
        padding: 2rem 1.5rem;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .article-hero h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .stats-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .hotel-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* 375px - Small phone screens */
@media (max-width: 375px) {
    .hero h1 { font-size: 1.4rem; }
    .hero { padding: 6rem 0.75rem 2rem; }
    .card-grid { grid-template-columns: 1fr; }
    .filter-bar { gap: 0.35rem; }
    .cta-section { padding: 2rem 1rem; }
    .cta-section h3 { font-size: 1.1rem; }
    .footer-grid { gap: 1.5rem; }
}

/* ─── Filter Controls (updated) ──────────────────────────── */
.filter-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-dropdowns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg);
    cursor: pointer;
    min-width: 160px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--black);
}

/* ─── Card Attendees Badge ───────────────────────────────── */
.card-attendees {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: var(--gray-100);
    border-radius: 4px;
}

.card-attendees svg {
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .filter-dropdowns {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-select {
        min-width: unset;
    }
}


/* Skeleton Loading */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton-shimmer 1.5s infinite; border-radius: 8px }
@keyframes skeleton-shimmer { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }
.skeleton-card { height: 280px; margin-bottom: 1rem }
.skeleton-text { height: 1rem; margin-bottom: 0.5rem }
.skeleton-text.short { width: 60% }
.skeleton-title { height: 1.5rem; margin-bottom: 0.75rem; width: 80% }

/* Print Styles - see consolidated block at end of file */

/* Scroll to Top Button */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: #0a0a0a; color: #fff; border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 999; transition: opacity 0.3s }
.scroll-top:hover, .scroll-top:active { background: #1e293b }
.scroll-top.visible { display: flex }

/* Reading Time */
.reading-time { font-size: 0.82rem; color: var(--gray-400); font-weight: 500 }

/* Breadcrumb UI */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem; font-size: 0.82rem; color: var(--gray-400); background: var(--gray-50); border-bottom: 1px solid var(--gray-200) }
.breadcrumb a { color: var(--gray-500); text-decoration: none }
.breadcrumb a:hover { color: var(--black) }
.breadcrumb .sep { color: var(--gray-300) }

/* ─── Auth Overlay Styles ─────────────────────────────────── */
.nav-auth-item { display: flex; align-items: center; gap: 0.5rem; margin-left: auto }
.nav-user-avatar { width: 32px; height: 32px; border-radius: 50%; background: #6366f1; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0 }
.nav-user-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: inherit; font-size: 0.9rem; font-weight: 500 }
.nav-user-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap }
.nav-signout-btn { background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.35rem 0.75rem; font-size: 0.8rem; color: var(--text-secondary); cursor: pointer; font-family: inherit; transition: border-color 0.2s, color 0.2s }
.nav-signout-btn:hover { border-color: var(--gray-400); color: var(--text) }
.nav-signin-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; background: var(--black); color: #fff; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: background 0.2s }
.nav-signin-btn:hover { background: #1e293b }
.nav-fav-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; background: #ef4444; color: #fff; border-radius: 50%; font-size: 0.7rem; font-weight: 700; padding: 0 4px }


/* Print Styles (consolidated) */
@media print {
    header, footer, nav, .header, .footer, .mobile-menu-btn, .nav-cta,
    .newsletter-section, .mega-bundle-cta, .scannly-cta, .newsletter-cta,
    .exit-intent-overlay, .sponsored-banner, .content-gate-overlay, .email-popup,
    .nav-links, .hero-cta, .sticky-cta, .back-to-top, .social-share,
    #similar-shows-container, #related-articles-container,
    .product-cta-section, .tool-cross-links, .social-proof-section,
    button, .btn, .btn-visit, .share-btn, .save-btn, .dark-toggle,
    .load-more, .pagination, .skip-link,
    script, iframe, .cookie-banner,
    .filter-bar, .search-section, .category-filters { display: none !important }
    body { background: #fff !important; color: #000 !important; font-size: 12pt; line-height: 1.5 }
    * { box-shadow: none !important; text-shadow: none !important }
    a { color: #000 !important; text-decoration: underline }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555 }
    a[href^="/"]::after { content: " (showfloortips.com" attr(href) ")"; font-size: 9pt; color: #555 }
    h1, h2, h3, h4, h5, h6 { page-break-after: avoid; color: #000 !important }
    img { max-width: 100% !important; page-break-inside: avoid }
    .show-card, .news-card, .article-card { break-inside: avoid; border: 1px solid #ccc; box-shadow: none }
    table { border-collapse: collapse }
    table td, table th { border: 1px solid #ccc; padding: 4px 8px }
    .show-body, .article-content, main { max-width: 100% !important; padding: 0 !important; margin: 0 !important }
}
