/*
Theme Name: Tecnoshop Child
Version: 1.0
Description: A child theme of tecnoshop
Author: admin
Template: tecnoshop
*/

@import url("../tecnoshop/style.css");



.btn-buy-original-new{
    display: inline-block;
    margin-top: 12px;
    padding: 14px 28px;
    animation: glowPulse 1.6s infinite ease-in-out;
    transition: all 0.25s ease;
    border: 1px solid #16a34a;
}

.btn-buy-original-new:hover{
    transform: scale(1.05);
    box-shadow: 0 0 16px rgba(24,179,75,0.9), 0 0 34px rgba(24,179,75,0.6);
    background: linear-gradient(135deg, #1ccf57, #128b37);
}

@keyframes glowPulse{
    0%{
        transform: scale(1);
        box-shadow: 0 0 8px rgba(24,179,75,0.45), 0 0 18px rgba(24,179,75,0.25);
    }
    50%{
        transform: scale(1.04);
        box-shadow: 0 0 16px rgba(24,179,75,0.9), 0 0 30px rgba(24,179,75,0.65);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 0 8px rgba(24,179,75,0.45), 0 0 18px rgba(24,179,75,0.25);
    }
}
 