/* ============================
   PRODUCTS PAGE STYLES
   ============================ */

/* Products Hero */
.products-hero {
    background: linear-gradient(135deg, #26225e 0%, #1b1847 30%, #2d1f6e 60%, #26225e 100%);
    margin-top: -180px;
    padding-top: 180px;
    position: relative;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 30px 30px;
}

.products-hero-particles .p-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: heroFloat 12s ease-in-out infinite;
}

.p-particle.p-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3a86ff 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-duration: 14s;
}

.p-particle.p-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f7b731 0%, transparent 70%);
    bottom: 10%;
    left: -3%;
    animation-duration: 18s;
    animation-delay: -4s;
}

.p-particle.p-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-duration: 10s;
    animation-delay: -6s;
}

.products-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.products-wave svg {
    width: 100%;
    height: 80px;
}

/* Product Cards */
.products-section {
    background: #f8fafc;
}

.product-card-full {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Product Visual Panel */
.product-visual {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: heroPulse 6s ease-in-out infinite;
}

.product-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.product-card-full:hover .product-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.product-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Product Content */
.product-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: #f1f5f9;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s ease;
}

.product-feature:hover {
    background: #e8edf5;
    transform: translateX(4px);
}

.product-feature i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #26225e 0%, #2d1f6e 50%, #26225e 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .product-visual {
        min-height: 250px;
    }

    .product-icon-large {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .products-hero {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .product-visual {
        min-height: 200px;
    }

    .product-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        border-radius: 20px;
    }

    .product-content h3 {
        font-size: 1.3rem;
    }
}