/* Products Section */
.products {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.products .section-title {
    margin-bottom: 1rem;
    color: #e0e7ff;
}

.products .section-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 32rem;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 212, 255, 0.2);
}

.product-card:hover .product-image,
.product-card:hover .product-info {
    opacity: 0;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #e0e7ff;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-image {
    height: 10rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 0.75rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e0e7ff;
    text-align: center;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.product-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e0e7ff;
}

.category {
    font-size: 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.product-info p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.brand {
    font-size: 0.8rem;
    background: rgba(0, 0, 0, 0.6);
    color: #e0e7ff;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-weight: normal;
    display: inline-block;
    margin-top: 0.25rem;
}

.marque {
    animation: marqueGlow 2s infinite;
}