/* ============================================
   VAULT COLLECTIBLES — Premium Trading Card Store
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a28;
    --bg-card: #15151f;
    --bg-card-hover: #1c1c2e;
    --bg-elevated: #1e1e2e;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --accent: #c9a54e;
    --accent-light: #e0c06e;
    --accent-dark: #a07c2e;
    --accent-glow: rgba(201, 165, 78, 0.15);
    --accent-glow-strong: rgba(201, 165, 78, 0.3);
    --border: #2a2a3a;
    --border-light: #3a3a4e;
    --success: #4ade80;
    --danger: #f87171;
    --warning: #fbbf24;
    --info: #60a5fa;
    --pokemon-color: #ff6b35;
    --sports-color: #3b82f6;
    --tcg-color: #a855f7;
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(201, 165, 78, 0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.text-muted { color: var(--text-muted); }

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

/* --- Announcement Bar --- */
.announcement-bar {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
    color: #0a0a0f;
    padding: 8px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.announcement-separator { opacity: 0.5; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@media (max-width: 768px) {
    .announcement-content { gap: 32px; }
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon { width: 36px; height: 36px; color: var(--accent); }
.logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: 0.08em; display: block; line-height: 1; }
.logo-tagline { font-size: 9px; letter-spacing: 0.25em; color: var(--text-muted); text-transform: uppercase; display: block; }

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

.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: var(--accent-glow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-icon-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-icon-btn:hover { color: var(--text-primary); background: var(--accent-glow); }

.cart-count, .wishlist-count {
    position: absolute;
    top: 4px;
    right: 2px;
    background: var(--accent);
    color: #0a0a0f;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition);
}

.cart-count.visible, .wishlist-count.visible { opacity: 1; transform: scale(1); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 100;
}

.search-overlay.active { transform: translateY(0); opacity: 1; pointer-events: all; }

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-container input {
    flex: 1;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition);
    font-family: var(--font-body);
}

.search-container input:focus { border-color: var(--accent); }

.search-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
}

.search-results {
    max-width: 600px;
    margin: 12px auto 0;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
}

.search-result-item:hover { background: var(--bg-tertiary); }

.search-result-item .result-image {
    width: 48px;
    height: 64px;
    border-radius: 4px;
    object-fit: cover;
}

.search-result-item .result-info h4 { font-size: 14px; font-weight: 500; }
.search-result-item .result-info p { font-size: 12px; color: var(--text-muted); }
.search-result-item .result-price { margin-left: auto; font-weight: 600; color: var(--accent); font-size: 14px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 18px;
}

.mobile-menu-header button { background: none; border: none; color: var(--text-secondary); cursor: pointer; }

.mobile-menu-links { padding: 12px 0; }

.mobile-menu-links a {
    display: block;
    padding: 14px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}

.mobile-menu-links a:hover { background: var(--accent-glow); color: var(--text-primary); }

.mobile-menu-links hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
}

.cart-sidebar.active { right: 0; }

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

.cart-header h3 { font-size: 18px; font-weight: 600; }

.cart-close { background: none; border: none; color: var(--text-muted); cursor: pointer; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    color: var(--text-muted);
    text-align: center;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

.cart-item-image {
    width: 72px;
    height: 96px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image .product-image-placeholder {
    width: 100%;
    height: 100%;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-info .cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-info .cart-item-price { font-weight: 600; color: var(--accent); font-size: 15px; }

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}

.cart-item-remove:hover { color: var(--danger); }

.cart-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-qty button {
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    width: 28px;
    height: 28px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cart-qty button:hover { background: var(--accent-glow); color: var(--text-primary); }

.cart-qty span { font-size: 13px; font-weight: 500; width: 28px; text-align: center; }

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-subtotal span:last-child { color: var(--accent); }

.cart-shipping-note { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0a0f;
    box-shadow: 0 2px 10px rgba(201, 165, 78, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 4px 20px rgba(201, 165, 78, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

.btn-social {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border);
    width: 100%;
}

.btn-social:hover { border-color: var(--border-light); background: var(--bg-elevated); }

.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; }

.btn-icon {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-icon:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn-icon.active { border-color: var(--danger); color: var(--danger); background: rgba(248, 113, 113, 0.1); }

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 165, 78, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(201, 165, 78, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-line { display: block; }
.hero-title-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Floating Cards */
.hero-card-display {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 500px;
    z-index: 1;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover { transform: scale(1.05) !important; z-index: 10; }

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.card-content-display {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
}

.pokemon-card {
    background: linear-gradient(145deg, #1a0a2e 0%, #3d1a70 30%, #ff6b35 70%, #ffab00 100%);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.3);
}

.sports-card {
    background: linear-gradient(145deg, #0a1628 0%, #1a3a5c 30%, #3b82f6 70%, #60a5fa 100%);
    box-shadow: 0 8px 40px rgba(59, 130, 246, 0.3);
}

.tcg-card {
    background: linear-gradient(145deg, #1a0a1e 0%, #2d1a4e 30%, #a855f7 70%, #c084fc 100%);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.3);
}

.card-label {
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-grade {
    font-size: 12px;
    font-weight: 600;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 6px;
    width: fit-content;
}

.card-1 { top: 10%; left: 0; transform: rotate(-8deg); animation: float-1 6s ease-in-out infinite; z-index: 3; }
.card-2 { top: 5%; right: 0; transform: rotate(5deg); animation: float-2 7s ease-in-out infinite; z-index: 2; }
.card-3 { bottom: 5%; left: 15%; transform: rotate(-3deg); animation: float-3 8s ease-in-out infinite; z-index: 1; }

@keyframes float-1 { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-15px); } }
@keyframes float-2 { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-20px); } }
@keyframes float-3 { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Categories Section --- */
.categories-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.section-tabs {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.category-bg {
    position: absolute;
    inset: 0;
    transition: transform var(--transition);
}

.category-card:hover .category-bg { transform: scale(1.05); }

.pokemon-bg { background: linear-gradient(145deg, #1a0a2e, #3d1a70, #5c2d91); }
.sports-bg { background: linear-gradient(145deg, #0a1628, #1a3a5c, #2563eb); }
.tcg-bg { background: linear-gradient(145deg, #1a0a1e, #2d1a4e, #7c3aed); }

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.7));
    z-index: 1;
}

.category-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-content p { color: var(--text-secondary); font-size: 14px; margin-bottom: 12px; }

.category-cta {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    transition: gap var(--transition);
    display: inline-block;
}

.category-card:hover .category-cta { letter-spacing: 0.02em; }

/* --- Products Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 16px;
}

.product-image-placeholder .card-emoji { font-size: 48px; margin-bottom: 4px; }
.product-image-placeholder .card-set { font-size: 11px; font-weight: 400; opacity: 0.7; }

.product-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-graded { background: var(--accent); color: #0a0a0f; }
.badge-sale { background: var(--danger); color: white; }
.badge-new { background: var(--info); color: white; }
.badge-sealed { background: var(--tcg-color); color: white; }

.product-card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { background: rgba(248, 113, 113, 0.3); }
.product-card-wishlist.active { opacity: 1; color: var(--danger); background: rgba(248, 113, 113, 0.2); }
.product-card-wishlist.active svg { fill: var(--danger); }

.product-card-body { padding: 16px; }

.product-card-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.cat-pokemon { color: var(--pokemon-color); }
.cat-sports { color: var(--sports-color); }
.cat-tcg { color: var(--tcg-color); }

.product-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.product-price-original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.product-card-atc {
    background: var(--accent-glow);
    border: 1px solid rgba(201, 165, 78, 0.3);
    color: var(--accent);
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
}

.product-card-atc:hover { background: var(--accent); color: #0a0a0f; }

/* Product card in list view */
.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 12px;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 120px 1fr;
}

.products-grid.list-view .product-card-image { aspect-ratio: auto; height: 160px; }
.products-grid.list-view .product-card-body { display: flex; flex-direction: column; justify-content: center; }

/* --- Featured Section --- */
.featured-section { padding: 80px 0; }

/* --- Deals Banner --- */
.deals-banner {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.deals-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.deals-badge {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.deals-text h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 8px;
}

.deals-text p { color: var(--text-secondary); margin-bottom: 20px; }

.deals-timer { display: flex; gap: 8px; }

.timer-block {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    min-width: 70px;
}

.timer-block span { font-size: 28px; font-weight: 700; display: block; color: var(--accent); font-variant-numeric: tabular-nums; }
.timer-block small { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.timer-sep { font-size: 28px; font-weight: 700; color: var(--text-muted); display: flex; align-items: center; padding-bottom: 16px; }

/* --- Social Proof --- */
.social-proof { padding: 80px 0; }

.sold-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.sold-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    animation: fadeIn 0.5s ease;
}

.sold-item-image {
    width: 44px;
    height: 58px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.sold-item-image .product-image-placeholder { font-size: 8px; padding: 4px; }
.sold-item-image .product-image-placeholder .card-emoji { font-size: 20px; margin: 0; }

.sold-item-info h4 { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.sold-item-info p { font-size: 11px; color: var(--text-muted); }
.sold-item-price { margin-left: auto; font-weight: 600; font-size: 14px; color: var(--accent); white-space: nowrap; }

/* --- Trust Section --- */
.trust-section { padding: 60px 0; border-top: 1px solid var(--border); }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item svg { color: var(--accent); margin: 0 auto 12px; }
.trust-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: var(--text-muted); }

/* --- Newsletter --- */
.newsletter-section { padding: 80px 0; }

.newsletter-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter-card h2 { font-family: var(--font-display); font-size: 32px; margin-bottom: 12px; }
.newsletter-card p { color: var(--text-secondary); margin-bottom: 28px; }
.newsletter-card small { display: block; margin-top: 16px; color: var(--text-muted); font-size: 12px; }

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    font-family: var(--font-body);
}

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

/* --- Shop Page --- */
.shop-hero {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--border);
    margin-top: 0;
}

.deals-hero-bg { background: linear-gradient(135deg, #1a0a0a, #2d1a1a); }

.shop-hero h1 { font-family: var(--font-display); font-size: 36px; margin-bottom: 8px; }
.shop-hero p { color: var(--text-secondary); }

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding-top: 32px;
    padding-bottom: 80px;
}

.shop-filters {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    align-self: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    max-height: calc(100vh - var(--nav-height) - 48px);
    overflow-y: auto;
}

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

.filter-header h3 { font-size: 16px; font-weight: 600; }

.filter-clear {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 13px;
    cursor: pointer;
    font-family: var(--font-body);
}

.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-bottom: 12px; }

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px 0;
    transition: color var(--transition);
}

.filter-checkbox:hover { color: var(--text-primary); }

.filter-checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    flex-shrink: 0;
}

.filter-checkbox input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
    font-size: 12px;
    font-weight: 700;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-range input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
    font-family: var(--font-body);
}

.price-range input:focus { border-color: var(--accent); }
.price-range span { color: var(--text-muted); }

#sortSelect {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.filter-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.filter-toggle:hover { border-color: var(--accent); color: var(--accent); }

.results-count { font-size: 13px; color: var(--text-muted); flex: 1; }

.view-toggle { display: flex; gap: 4px; }

.view-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.view-btn.active, .view-btn:hover { border-color: var(--accent); color: var(--accent); }

.load-more { text-align: center; padding: 40px 0; }

/* --- Product Detail Page --- */
.breadcrumb {
    padding: 20px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.product-detail-image {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.product-detail-image .product-image-placeholder {
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.product-detail-image .product-image-placeholder .card-emoji { font-size: 80px; }

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-detail-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-detail-meta span {
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 4px 12px;
    border-radius: 100px;
}

.product-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.product-detail-original-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 20px;
    display: block;
}

.product-detail-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 15px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.product-detail-features {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.product-detail-features h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-list { list-style: none; }

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li svg { color: var(--accent); flex-shrink: 0; }

/* --- Deals Page --- */
.deals-page-content { padding: 40px 0 80px; }

.product-card .sale-percentage {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(10px);
    transition: transform var(--transition);
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-lg { max-width: 800px; }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.modal-header h3 { font-size: 20px; font-weight: 600; }

.modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; }
.modal-close:hover { color: var(--text-primary); }

.modal-body { padding: 24px 28px 28px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }

.form-group input, .form-group select {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    font-family: var(--font-body);
}

.form-group input:focus, .form-group select:focus { border-color: var(--accent); }

.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-link { font-size: 13px; color: var(--accent); }

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.modal-footer-text {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* Account Dashboard */
.account-dash { text-align: center; }

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0a0a0f;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.account-dash h4 { font-size: 18px; margin-bottom: 4px; }
.account-dash .text-muted { margin-bottom: 24px; }

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.account-menu button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
    font-family: var(--font-body);
}

.account-menu button:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.account-menu .sign-out-btn:hover { color: var(--danger); }

/* Checkout */
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }

.checkout-summary {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 24px;
    align-self: start;
}

.checkout-summary h4 { margin-bottom: 16px; font-size: 16px; }

.checkout-item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
}

.checkout-item-image {
    width: 48px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-item-image .product-image-placeholder { font-size: 8px; padding: 4px; }
.checkout-item-image .product-image-placeholder .card-emoji { font-size: 20px; margin: 0; }

.checkout-item-info { flex: 1; }
.checkout-item-info h5 { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.checkout-item-info p { font-size: 12px; color: var(--text-muted); }
.checkout-item-price { font-weight: 600; color: var(--accent); font-size: 13px; white-space: nowrap; }

.checkout-totals { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 16px; }
.checkout-line { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; color: var(--text-secondary); }
.checkout-line-total { font-weight: 700; font-size: 16px; color: var(--text-primary); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }

/* Wishlist */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.wishlist-item {
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.wishlist-item:hover { transform: translateY(-2px); }

.wishlist-item-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.wishlist-item-info { padding: 10px; }
.wishlist-item-info h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-item-info .wishlist-price { color: var(--accent); font-weight: 600; font-size: 14px; }
.wishlist-item-actions { display: flex; gap: 8px; margin-top: 8px; }

.wishlist-item-actions button {
    flex: 1;
    padding: 6px 8px;
    font-size: 11px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.wishlist-atc { background: var(--accent); color: #0a0a0f; border: none; }
.wishlist-atc:hover { background: var(--accent-light); }
.wishlist-remove { background: none; border: 1px solid var(--border); color: var(--text-muted); }
.wishlist-remove:hover { border-color: var(--danger); color: var(--danger); }

/* --- Toast --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: toast-in 0.3s ease;
    font-size: 14px;
}

.toast.toast-out { animation: toast-out 0.3s ease forwards; }

.toast-success { border-left: 3px solid var(--success); }
.toast-error { border-left: 3px solid var(--danger); }
.toast-info { border-left: 3px solid var(--info); }

@keyframes toast-in { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toast-out { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(40px); } }

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

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

.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-top: 0; }

.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text-primary); }

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    padding: 4px 0;
    transition: color var(--transition);
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .hero-card-display { display: none; }
    .hero { min-height: 70vh; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .category-grid { grid-template-columns: 1fr; gap: 16px; }
    .category-card { height: 280px; }

    .shop-layout { grid-template-columns: 1fr; }
    .shop-filters { display: none; position: fixed; inset: 0; z-index: 1500; max-height: 100vh; border-radius: 0; }
    .shop-filters.active { display: block; }
    .filter-toggle { display: flex; }

    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .checkout-layout { grid-template-columns: 1fr; }

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

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { min-height: 60vh; padding: 80px 0 60px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card-body { padding: 12px; }
    .product-card-title { font-size: 13px; }
    .product-price { font-size: 15px; }

    .deals-content { flex-direction: column; text-align: center; }
    .deals-timer { justify-content: center; }
    .timer-block { min-width: 56px; padding: 10px 12px; }
    .timer-block span { font-size: 22px; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .newsletter-card { padding: 40px 24px; }
    .newsletter-form { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .sold-ticker { grid-template-columns: 1fr; }

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

    .modal-body { padding: 20px; }
    .modal-header { padding: 20px 20px 0; }
}

@media (max-width: 480px) {
    .announcement-bar { font-size: 11px; padding: 6px 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card-atc { width: 32px; height: 32px; }
    .product-card-atc svg { width: 16px; height: 16px; }
    .btn-lg { padding: 12px 24px; font-size: 14px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* --- Selection --- */
::selection { background: var(--accent); color: #0a0a0f; }
