/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/* Breadcrumb */

.rank-math-breadcrumb a {
	color: #FFFFFF;
}

.rank-math-breadcrumb a:hover {
	text-decoration: underline;
}

.rank-math-breadcrumb .last, .rank-math-breadcrumb .separator {
	color: #FFFFFF99;
}



/* Ripple ефект */
.ripple {
    position: relative;
    overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
    .ripple:after {
        content: "";
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        width: 100%;
        aspect-ratio: 1;
        background: url('https://igel.ua/wp-content/uploads/2026/03/ripple.png') 
                    center / contain no-repeat;
        mix-blend-mode: multiply !important;
		will-change: transform, opacity;
        scale: 0;
        opacity: 0;
        pointer-events: none;
    }
    
    .ripple:hover:after {
        animation: ripple 0.8s ease-out forwards;
    }
}

@keyframes ripple {
    0% {
        opacity: 0.6;
        scale: 1;
    }
    100% {
        opacity: 0;
        scale: 3;
    }
}

.other-products .ripple:after {
	content: none;
	display: none;
}


.elementor-swiper-button.elementor-swiper-button-next:not(.swiper-button-disabled):hover,
.elementor-swiper-button.elementor-swiper-button-prev:not(.swiper-button-disabled):hover {
    background-color: #D9E9F5;
}