:root {
    --primary: #00ff88;
    --secondary: #2b2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #2b2a2a;
    color: white;
}

/* Glowing Header Section */
.header-section {
    border-bottom: 2px solid var(--primary);
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6),
                   0 0 30px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 136, 0.8),
                   0 0 45px rgba(0, 255, 136, 0.6);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.6),
                   0 0 30px rgba(0, 255, 136, 0.4);
    }
}

.navbar {
    padding: 1.5rem 5%;
    background: rgba(43, 42, 42, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Rest of the CSS remains same */
.container {
    padding: 3rem 5%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(43, 42, 42, 0.5);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,255,136,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary);
}

.product-info {
    padding: 1.5rem;
}

.camera-button {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: #2b2a2a;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.camera-button:hover {
    background: #00cc6a;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
