/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Tech Theme Colors */
    --bg-dark: #0a0e27;
    --bg-darker: #050812;
    --card-bg: #1a1f3a;
    --border: #2a2f4a;
    --text-primary: #e0e6ff;
    --text-secondary: #a0a6c3;
    --text-light: #7a7f96;
    
    /* Neon Colors */
    --neon-cyan: #00d9ff;
    --neon-magenta: #ff006e;
    --neon-purple: #b537f2;
    --neon-lime: #39ff14;
    --neon-orange: #ff6b35;
    
    /* Primary Colors */
    --primary: #00d9ff;
    --accent: #ff006e;
    --success: #39ff14;
    
    --radius: 8px;
    --shadow: 0 0 20px rgba(0, 217, 255, 0.1);
    --shadow-lg: 0 0 40px rgba(0, 217, 255, 0.2);
    --shadow-accent: 0 0 20px rgba(255, 0, 110, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== Button Styles ===== */
.btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--primary), 0 0 60px rgba(0, 217, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(0, 217, 255, 0.1);
    box-shadow: var(--shadow);
}

.btn-neon {
    background: linear-gradient(135deg, var(--neon-magenta) 0%, var(--neon-purple) 100%);
    color: white;
    border-color: var(--neon-magenta);
    box-shadow: var(--shadow-accent);
}

.btn-neon:hover {
    box-shadow: 0 0 30px var(--neon-magenta), 0 0 60px rgba(255, 0, 110, 0.3);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== Header Navigation ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 8, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.logo-text {
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.875rem;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn,
.cart-btn,
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.search-btn:hover,
.cart-btn:hover,
.menu-toggle:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 0 10px var(--neon-magenta);
}

.menu-toggle {
    display: block;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 2px solid var(--border);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    overflow: hidden;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Features Section ===== */
.features {
    background: rgba(26, 31, 58, 0.5);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    padding: 3rem 0;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

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

.feature-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(26, 31, 58, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== Products Section ===== */
.products {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Category Filter */
.category-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border);
    background-color: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(26, 31, 58, 0.4) 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px var(--neon-magenta);
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-tag {
    display: inline-block;
    width: fit-content;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    border: 1px solid var(--primary);
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.stars {
    font-size: 0.875rem;
}

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

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-small {
    margin-top: auto;
}

.view-all {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ===== Promo Section ===== */
.promo {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(181, 55, 242, 0.1) 100%);
    border: 2px solid var(--border);
    color: var(--text-primary);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.promo-content {
    text-align: center;
}

.promo-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* ===== Shopping Cart Sidebar ===== */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(5, 8, 18, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-left: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.cart-header h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

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

.empty-cart {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.item-details p {
    color: var(--primary);
    font-weight: 600;
}

.item-quantity {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 5px var(--primary);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--neon-magenta);
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    text-shadow: 0 0 10px var(--neon-magenta);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

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

/* ===== Product Detail Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 8, 18, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.modal-body {
    padding: 2rem;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
}

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

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-category {
    display: inline-block;
    width: fit-content;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--primary);
}

.detail-info h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.detail-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.savings {
    color: var(--success);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.detail-stock {
    color: var(--success);
    font-weight: 600;
    text-transform: uppercase;
}

.detail-description {
    color: var(--text-secondary);
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-selector label {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.quantity-control {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: fit-content;
}

.quantity-control input {
    width: 60px;
    padding: 0.5rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    text-align: center;
    background: rgba(26, 31, 58, 0.5);
    color: var(--text-primary);
    font-weight: 600;
}

.detail-buttons {
    display: flex;
    gap: 1rem;
}

.detail-buttons .btn {
    flex: 1;
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.feature {
    display: flex;
    gap: 1rem;
}

.feature span {
    font-size: 1.5rem;
}

.feature h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
    background: rgba(5, 8, 18, 0.95);
    border-top: 2px solid var(--border);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.social-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* ===== Notification ===== */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--neon-lime) 0%, var(--success) 100%);
    color: var(--bg-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: 2px solid var(--neon-lime);
    box-shadow: 0 0 20px var(--neon-lime);
    z-index: 3000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notification.show {
    transform: translateX(0);
}

@media (max-width: 640px) {
    .notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 1.875rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .product-image {
        height: 150px;
    }

    .modal-body {
        padding: 1rem;
    }

    .product-detail {
        gap: 1rem;
    }

    .detail-image {
        height: 250px;
    }

    .detail-info h2 {
        font-size: 1.5rem;
    }
}
