/* =================
   ENHANCED PRODUCT SLIDER STYLES
   ================= */

/* Product Badge Styling */
.product-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.95), rgba(16, 185, 129, 0.95));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    box-shadow: 
        0 8px 32px rgba(22, 163, 74, 0.4),
        0 0 60px rgba(22, 163, 74, 0.2);
    color: var(--white);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Product Features Tags */
.product-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.8s both;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

/* Enhanced Product Slide Styling */
.product-slide .slide-content h3 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.product-slide .slide-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    font-weight: 400;
}

/* CEO Slide Enhanced Styling */
.ceo-overlay {
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.ceo-slide-signature {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.signature-line {
    width: 350px;
    height: 40px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    margin-bottom: 15px;
}

.ceo-slide-signature strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.ceo-slide-signature span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    font-weight: 500;
}

/* Slider Container Enhancement */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    margin-top: 70px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

/* Enhanced Slide Animations */
.slide.active .product-features {
    animation: fadeInUp 1s ease 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Enhancements */
@media (max-width: 968px) {
    .hero-slider {
        height: 600px;
    }
    
    .product-slide .slide-content h3 {
        font-size: 3rem;
    }
    
    .product-slide .slide-content p {
        font-size: 1.2rem;
    }
    
    .product-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
        letter-spacing: 2px;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .product-features {
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .hero-slider {
        height: 550px;
    }
    
    .product-slide .slide-content h3 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .product-slide .slide-content p {
        font-size: 1rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        letter-spacing: 1.5px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .product-features {
        gap: 8px;
        margin-top: 20px;
    }
    
    .ceo-slide-signature strong {
        font-size: 1.1rem;
    }
    
    .ceo-slide-signature span {
        font-size: 0.9rem;
    }
    
    .signature-line {
        width: 80px;
        margin-bottom: 10px;
    }
}

/* Hover Effects for Product Slides */
.product-slide:hover .product-badge {
    transform: scale(1.1);
    box-shadow: 
        0 12px 40px rgba(22, 163, 74, 0.6),
        0 0 80px rgba(22, 163, 74, 0.3);
}

/* Enhanced Glow Effect */
.product-slide .slide-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(22, 163, 74, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 5s ease-in-out infinite;
    pointer-events: none;
}

/* Slide Content Wrapper Enhancement */
.slide-content {
    position: relative;
    z-index: 10;
}
