.products-section {
    background-color: var(--background-color);
    position: relative;
    z-index: 20;
    margin-top: -1px;
}


.product-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 250px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.3s ease;
}

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

.product-content h3 {
    font-family: 'Orbitron', sans-serif;
}

.product-price {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.product-card .btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid #333;
    width: 100%;
    margin-top: 1rem;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.product-card .btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}