/* --- Анимации --- */

/* Hover Scale для карточек */
.product-card, .social-proof__item {
    transition: transform 0.3s ease;
}

.product-card:hover, .social-proof__item:hover {
    transform: scale(1.05);
}

/* Button Glow */
.button {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px 5px rgba(200, 155, 60, 0.4);
}

/* Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateX(0);
}
