/* Enhanced CTA Buttons */

/* 1. Base Gradient & Shape */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #7c3aed, #4f46e5, #7c3aed);
    background-size: 200% auto;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* 2. Hover Effect: Gradient Move */
.btn-enhanced:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.6);
}

/* 3. Shine Effect Animation */
.btn-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-enhanced:hover::after {
    left: 100%;
    transition: 0.7s ease-in-out;
}

/* 4. Pulse Animation for Primary CTAs */
.cta-pulse {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(124, 58, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

/* 5. WhatsApp Specific Style */
.btn-whatsapp-enhanced {
    background: linear-gradient(90deg, #25D366, #128C7E, #25D366);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-enhanced:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 6. Gold/Premium Style (For Best Seller) */
.btn-gold-enhanced {
    background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
    color: #fff;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-gold-enhanced:hover {
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5);
}

/* 7. Icon Animation on Hover */
.btn-enhanced i {
    transition: transform 0.3s ease;
}

.btn-enhanced:hover i {
    transform: rotate(15deg) scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .btn-enhanced {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        /* Full width on mobile often converts better */
    }
}