:root {
    /* Premium Monochrome Palette (Vercel-inspired) */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-elevated: #111111;
    --bg-hover: #1a1a1a;

    --text-primary: #ededed;
    --text-secondary: #a1a1a1;
    --text-tertiary: #666666;

    --border-subtle: #222222;
    --border-main: #333333;
    --border-hover: #555555;

    --accent-primary: #ffffff;
    --accent-contrast: #000000;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 64px;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 24px 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-main);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--accent-contrast);
    border: 1px solid var(--accent-primary);
}

.btn-primary:hover {
    background: #e0e0e0;
    border-color: #e0e0e0;
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-main);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
}

.navbar-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Show Detail Page */
.show-hero {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    padding: 120px 0 80px;
    align-items: start;
}

.show-poster-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-main);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.show-poster-large {
    width: 100%;
    height: auto;
    display: block;
}

.show-hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 16px 0 24px;
    background: linear-gradient(180deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.show-meta-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: monospace;
    /* Technical feel */
}

.show-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.show-tag {
    padding: 6px 12px;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.2s;
}

.show-tag:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Score Cards (Monochrome) */
.score-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    /* Gap for border effect */
    background: var(--border-main);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 64px;
}

.score-card {
    background: var(--bg-primary);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.2s;
}

.score-card:hover {
    background: var(--bg-secondary);
}

.score-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.score-card-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

.score-card-meta {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Affiliate Overview (Table Style) */
.data-section {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    margin-bottom: 64px;
    overflow: hidden;
}

.data-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-main);
}

.data-title {
    font-size: 16px;
    font-weight: 600;
}

.data-row {
    display: grid;
    grid-template-columns: 1fr 120px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.data-desc {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.data-value {
    text-align: right;
    font-family: monospace;
    font-size: 14px;
    color: var(--text-primary);
}

.data-value.highlight {
    color: var(--accent-primary);
}

/* New Data Modules (Phase 6) */

/* 1. Trend/* Search Trend Graph */
.trend-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
}

.trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.trend-title {
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    font-weight: 600;
}

.trend-badge {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 100px;
    background: #22c55e;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
}

#trend-canvas {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. Related Queries (Breakout Items) */
.related-queries-container {
    padding: 0;
}

/* Homepage - Show Gallery (CRITICAL: Was missing) */
.show-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.show-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.show-card:hover {
    transform: translateY(-8px);
}

.show-poster {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-main);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.show-card:hover .show-poster {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.show-info {
    padding: 16px 4px;
}

.show-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.show-meta {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Hero Section */
.hero {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .show-gallery {
        grid-template-columns: 1fr;
    }
}


.query-row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 16px;
}

.query-row:last-child {
    border-bottom: none;
}

.query-rank {
    font-size: 12px;
    font-family: monospace;
    color: var(--text-tertiary);
    width: 24px;
}

.query-term {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.query-sparkline {
    width: 80px;
    height: 24px;
}

.query-stat {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-secondary);
    width: 80px;
    text-align: right;
}

.trend-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    background: #22c55e;
    color: #000;
}

.trend-badge.iconic {
    background: #fff;
    color: #000;
}

/* Episode Grid (Visual) */
.episode-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.episode-card {
    group: hover;
    cursor: pointer;
}

.episode-thumb-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin-bottom: 12px;
    border: 1px solid var(--border-subtle);
}

.episode-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.episode-card:hover .episode-thumb {
    transform: scale(1.05);
}

.episode-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-family: monospace;
    color: white;
}

.episode-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.episode-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Trend Page Specific Styles */
.trend-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.trend-filter-btn:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.trend-filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--accent-contrast);
}

.trend-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.trend-chart-title {
    font-size: 16px;
    font-weight: 600;
}

.trend-chart-filters {
    display: flex;
    gap: 6px;
}

.trend-chart-svg {
    width: 100%;
    height: 300px;
}

/* Trending Table Styles */
.trending-table {
    width: 100%;
    border-collapse: collapse;
}

.trending-table th {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--border-main);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    font-weight: 600;
}

.trending-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-subtle);
    vertical-align: middle;
}

.trending-table tr:hover {
    background: var(--bg-secondary);
}

.trend-rank {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-tertiary);
    font-family: monospace;
}

.trend-rank.top1 {
    color: #ffd700;
}

.trend-rank.top2 {
    color: #c0c0c0;
}

.trend-rank.top3 {
    color: #cd7f32;
}

.trend-show-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trend-show-poster {
    width: 48px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.trend-show-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.trend-show-meta {
    font-size: 12px;
    color: var(--text-tertiary);
}

.trend-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
}

.trend-change.up {
    color: #22c55e;
}

.trend-change.down {
    color: #ff4444;
}

.trend-change.neutral {
    color: var(--text-tertiary);
}

.trend-score {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: monospace;
}

.trend-products {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Trend Stats Bar (Hero Section) */
.trend-stat {
    text-align: center;
}

.trend-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.trend-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Newsletter Minimal */
.newsletter-minimal {
    border-top: 1px solid var(--border-main);
    padding: 80px 0;
    text-align: center;
}

.newsletter-input-group {
    display: flex;
    max-width: 400px;
    margin: 32px auto 0;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    background: var(--bg-hover);
    border: 1px solid var(--border-main);
    color: var(--text-primary);
    padding: 0 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

@media (max-width: 768px) {
    .show-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .score-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

/* Market Intelligence (Phase 7 - Super Hybrid) */
.market-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Regional Heatmap */
.region-list {
    padding: 0 24px 24px;
}

.region-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.region-row:last-child {
    border-bottom: none;
}

.region-info {
    width: 140px;
}

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

.region-area {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.region-bar-container {
    flex: 1;
    height: 6px;
    background: var(--bg-elevated);
    border-radius: 100px;
    overflow: hidden;
}

.region-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--text-secondary), var(--text-primary));
    border-radius: 100px;
}

.region-value {
    width: 40px;
    text-align: right;
    font-family: monospace;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Revenue Matrix */
.score-card-simple {
    padding: 32px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.score-card-sub {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #22c55e;
    margin-top: 12px;
    font-weight: 600;
}

/* Breakout Grid */
.breakout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 16px;
    padding: 24px;
}

.breakout-item {
    background: var(--bg-elevated);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breakout-name {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.breakout-stat {
    font-size: 13px;
    font-family: monospace;
    font-weight: 600;
}

/* Viewership Stats */
.viewership-stats {
    padding: 0 24px 24px;
}

.viewership-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.viewership-row:last-child {
    border-bottom: none;
}

.viewership-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
}

.viewership-value {
    font-size: 16px;
    font-family: monospace;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
}

/* Slide-Over Panel */
.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.panel-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-over-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 40vw;
    min-width: 500px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-subtle);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.slide-over-panel.active {
    transform: translateX(0);
}

.panel-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-char-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.panel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
}

.panel-char-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.panel-char-role {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.close-panel-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

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

.panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.panel-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

/* History Items */
.history-item {
    margin-bottom: 32px;
    position: relative;
    padding-left: 16px;
    border-left: 1px solid var(--border-subtle);
}

.history-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 6px;
    width: 5px;
    height: 5px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.history-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 11px;
}

.history-ep {
    color: var(--text-primary);
    font-weight: 600;
}

.history-scene {
    color: var(--text-secondary);
}

.history-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.history-img-box {
    width: 100%;
    height: 200px;
    background: #222;
    position: relative;
}

.history-images-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.history-images-link:hover {
    transform: scale(1.02);
}

.history-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    height: 180px;
}

.scene-thumb {
    background-size: cover;
    background-position: center;
    position: relative;
}

.scene-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-secondary);
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    border-radius: 2px;
}

.product-thumb {
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.product-thumb .history-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111, #222);
}

.history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-info {
    padding: 16px;
}

.history-product {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.history-action {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.2s;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.history-action:hover {
    color: #00ff88;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-over-panel {
        width: 50vw;
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .slide-over-panel {
        width: 100vw;
        min-width: unset;
    }

    .history-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .scene-thumb {
        height: 200px;
    }

    .product-thumb {
        height: 200px;
    }

    .market-data-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .panel-header {
        padding: 16px;
    }

    .panel-content {
        padding: 16px;
    }

    .history-item {
        margin-bottom: 24px;
    }
}

/* Aura-style Product Page */
.aura-product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 40px;
}

.aura-scene-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
}

.aura-scene-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.aura-scene-info {
    padding: 24px;
}

.aura-scene-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.aura-scene-meta {
    display: flex;
    gap: 16px;
    color: #888;
    font-size: 13px;
    align-items: center;
}

.aura-badge-trending {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}

.aura-shop-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aura-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aura-product-display {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.aura-product-display img {
    max-width: 80%;
    max-height: 400px;
    object-fit: contain;
}

.aura-product-details-stack {
    padding: 24px 0;
}

.aura-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 8px;
}

.aura-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.aura-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.aura-badge-stock {
    font-size: 10px;
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.aura-brand {
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aura-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #222;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin: 32px 0;
}

.aura-stat-item {
    background: #000;
    padding: 16px 0;
}

.aura-stat-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.aura-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.aura-stat-value i {
    margin-right: 6px;
}

.aura-stat-value.white {
    color: #fff;
}

.aura-trend-section {
    margin-bottom: 32px;
}

.aura-trend-header {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.aura-chart-container {
    height: 80px;
    width: 100%;
}

.aura-price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aura-price-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.aura-price-card:hover {
    border-color: #444;
    transform: translateX(4px);
}

.aura-store-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aura-store-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.aura-store-match {
    font-size: 12px;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aura-price-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aura-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.aura-shipping {
    font-size: 12px;
    color: #888;
}

@media (max-width: 1024px) {
    .aura-product-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

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

.modal-content {
    background: #111;
    border: 1px solid #333;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
    color: #fff;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
}

.btn-primary:hover {
    background: #e0e0e0;
}