/* css/products.css */
.products-main {
    min-height: 100vh;
    padding: 100px 2rem 2rem;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.header-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid-section {
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-detailed-card {
    background: rgba(0, 168, 255, 0.05);
    border: 1px solid rgba(0, 168, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease backwards;
}

.product-detailed-card:nth-child(1) { animation-delay: 0.1s; }
.product-detailed-card:nth-child(2) { animation-delay: 0.2s; }
.product-detailed-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-detailed-card:hover {
    transform: translateY(-10px);
    border-color: var(--dark-sky-blue);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
}

.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--dark-sky-blue-dark), var(--dark-sky-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--accent-glow);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px var(--accent-glow);
    }
    50% {
        box-shadow: 0 0 50px var(--accent-glow);
    }
}

.product-header h2 {
    font-size: 2rem;
    color: var(--dark-sky-blue);
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--dark-sky-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-features li i {
    color: var(--dark-sky-blue);
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-actions .premium-btn {
    flex: 1;
    min-width: 150px;
}

/* CTA Section */
.products-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1), rgba(0, 0, 0, 0));
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.products-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.products-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .premium-btn {
        width: 100%;
    }
}