/* Bremen Shop - Cyberpunk Theme (Root) */
:root {
    /* Cyberpunk Palette */
    --neon-cyan: #00f3ff;
    --neon-magenta: #ff00ff;
    --neon-yellow: #ffe600;
    --neon-purple: #bc13fe;
    --neon-green: #0aff00;
    
    --bg-primary: #181818;
    --bg-secondary: #181818;
    --bg-tertiary: #222222;
    --bg-card: rgba(30, 30, 30, 0.9);
    
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    --text-light: #ffffff;
    
    --border-color: #333344;
    --border-neon: rgba(0, 243, 255, 0.5);
    
    --shadow-glow: 0 0 10px rgba(0, 243, 255, 0.3);
    --shadow-glow-magenta: 0 0 10px rgba(255, 0, 255, 0.3);
    
    /* Font Families */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    
    --transition: all 0.2s ease;
    
    /* Legacy Compatibility Variables (mapped to Cyberpunk) */
    --primary-color: var(--neon-cyan);
    --secondary-color: var(--neon-purple);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.nav-menu a::after {
    display: none; /* Remove old underline */
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: var(--transition);
    box-shadow: none;
}

.cart-icon:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: none;
}

.cart-count {
    background: var(--neon-magenta);
    color: #fff;
    font-family: var(--font-mono);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 2rem;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #181818 70%);
    margin-top: 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(24, 24, 24, 0.8), rgba(24, 24, 24, 0.9));
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 1;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    margin-bottom: 2.5rem;
    border-left: 2px solid var(--neon-magenta);
    padding-left: 1rem;
}

.cta-button {
    background: var(--neon-cyan);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.cta-button:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: translateY(-2px);
}

.hero-image {
    z-index: 1;
}

.hero-tv {
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    border: 1px solid var(--neon-cyan);
}

/* Featured Products Section */
.products-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    background-image: none;
    border-bottom: 1px solid var(--border-color);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.products h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1400px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.product-info h3 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.product-info p {
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.product-badge {
    background: var(--neon-yellow);
    color: #000;
    font-family: var(--font-mono);
    border-radius: 0;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    box-shadow: none;
}

.product-badge.new { background: var(--neon-green); }
.product-badge.premium { background: var(--neon-purple); color: #fff; }

.variant-select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-mono);
    border-radius: 0;
}

.variant-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.quantity-selector {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.qty-btn {
    background: transparent;
    color: var(--neon-cyan);
    border-radius: 0;
}

.qty-btn:hover {
    background: var(--neon-cyan);
    color: #000;
}

.quantity {
    color: var(--text-light);
    font-family: var(--font-mono);
}

.add-to-cart-btn {
    background: var(--neon-cyan);
    color: #000;
    border-radius: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.add-to-cart-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: translateY(-2px);
}

.compare-btn {
    background: transparent;
    color: var(--neon-magenta);
    border: 1px solid var(--neon-magenta);
    border-radius: 0;
    font-family: var(--font-heading);
}

.compare-btn:hover {
    background: var(--neon-magenta);
    color: #000;
    box-shadow: 0 0 10px var(--neon-magenta);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #181818 0%, #1a1a2e 100%);
    border-top: 1px solid var(--border-color);
}

.about-text h2 {
    color: var(--text-light);
    border-left: 4px solid var(--neon-purple);
    padding-left: 1rem;
}

.about-text p {
    color: var(--text-secondary);
}

/* Clients Section */
.clients {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 0;
}

.client-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(10, 255, 0, 0.2);
}

.client-card h3 {
    color: var(--text-light);
    font-family: var(--font-heading);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-mono);
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.contact-form button {
    background: var(--neon-purple);
    color: #fff;
    font-family: var(--font-heading);
    text-transform: uppercase;
    border-radius: 0;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.contact-form button:hover {
    background: var(--neon-magenta);
    box-shadow: 0 0 20px var(--neon-magenta);
}

.form-legal-notice {
    background: rgba(0, 243, 255, 0.05);
    border-left: 3px solid var(--neon-cyan);
}

.form-legal-notice p {
    color: var(--text-secondary);
}

.form-legal-notice a {
    color: var(--neon-cyan);
}

/* Cyberpunk FX & Utilities */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.1)
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    animation: scanline 0.2s linear infinite;
    opacity: 0.6;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    opacity: 0.05;
    pointer-events: none;
    z-index: 9998;
    animation: noise 0.5s steps(5) infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@keyframes noise {
    0% { transform: translate(0,0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0,0); }
}

@keyframes glitch {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -2px); }
}

.glitch:hover, h1:hover, h2:hover, .nav-brand h1:hover {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-cyan);
    cursor: default;
    transition: var(--transition);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }
    .nav-toggle span { background: var(--neon-cyan); }
    
    .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content p { border-left: none; border-bottom: 2px solid var(--neon-magenta); padding-bottom: 1rem; }
}

/* Cart Sidebar - Cyberpunk Fixed */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Hidden by default */
    width: 400px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-neon);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
    box-shadow: var(--shadow-glow);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 243, 255, 0.05);
}

.cart-header h3 {
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--neon-magenta);
    text-shadow: 0 0 5px var(--neon-magenta);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--neon-cyan);
    color: #000;
    border: none;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--neon-magenta);
    box-shadow: 0 0 15px var(--neon-magenta);
    color: white;
}

.checkout-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}


/* Clients Grid - Cyberpunk Fixed */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.client-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.3));
    transition: var(--transition);
}

.client-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-card:hover .client-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px var(--neon-magenta));
}

.client-card h3 {
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

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


/* Checkout Modal - Cyberpunk Fixed */
.checkout-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.checkout-modal.open {
    display: flex;
}

.checkout-content {
    background: var(--bg-card);
    border: 1px solid var(--neon-cyan);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.checkout-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--neon-cyan);
}

.close-checkout {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.close-checkout:hover {
    color: var(--neon-magenta);
}

.checkout-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .checkout-body {
        grid-template-columns: 1fr;
    }
}

.checkout-section h3 {
    color: var(--text-light);
    border-bottom: 1px solid var(--neon-purple);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-mono);
}

.checkout-form input:focus,
.checkout-form select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    outline: none;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.05);
}

.payment-option input[type='radio'] {
    width: auto;
    margin: 0;
}


/* Comparison System Styles */
.product-comparison {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--neon-cyan);
}

.comparison-header h2 {
    color: var(--neon-cyan);
    font-family: var(--font-display);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    margin: 0;
}

.close-comparison {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-comparison:hover {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta);
    transform: rotate(90deg);
}

.comparison-table {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-neon);
    border-radius: 10px;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.comparison-grid {
    display: grid;
    gap: 1px;
    background: var(--border-color); /* Lines between cells */
}

.comparison-row, .comparison-header-row {
    display: grid;
    grid-template-columns: 150px repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--bg-card);
}

.comparison-header .product-header {
    position: relative;
    padding: 1rem;
    background: rgba(0, 243, 255, 0.05);
    text-align: center;
}

.comparison-header h4 {
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.remove-comparison-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: var(--neon-magenta);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.remove-comparison-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.spec-label {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-cyan);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.spec-value {
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Comparison Button */
.comparison-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Left side to avoid cart/chat overlap */
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none; /* JS toggles flex */
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1500;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.comparison-floating-btn:hover {
    transform: scale(1.1) rotate(180deg);
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--neon-cyan);
}

#comparisonCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--neon-magenta);
    color: white;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-primary);
}

@media (max-width: 768px) {
    .comparison-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .comparison-row {
        display: flex;
        flex-direction: column;
    }
}

/* --- Category Filter Buttons (Cyberpunk Style) --- */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transform: translateY(-2px);
}

.filter-btn:focus {
    outline: none;
}

/* Footer */
.footer {
    background-color: var(--bg-secondary);
    background-image: none;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-top: auto;
}

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

.footer-section h3 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

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

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
}

.social-links a:hover {
    color: var(--neon-magenta);
    border-color: var(--neon-magenta);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--neon-cyan);
}

/* Cookie Banner */

