/* 
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
*/

/* Apply swipe to all buttons */
.elementor-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex !important;
  vertical-align: middle;
}

.elementor-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #2d4a3e;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  display: block;
  pointer-events: none;
	bottom:-1px;
}

.elementor-button:hover::before {
  transform: translateX(0);
}

.elementor-button:active::before {
  transform: translateX(0);
}

/* Style 2 variant */
.style-2 .elementor-button::before {
  background: #E3DE61;
}

.style-2 .elementor-button:hover {
  color: #2d4a3e !important;
}

/* Style 3 variant */
.style-3 .elementor-button::before, #style-3::before {
  background: white !important;
}

.style-3 .elementor-button:hover, #style-3:hover {
  color: #2d4a3e !important;
}

/* EXCLUDE simple-text — target parent widget */
.simple-text .elementor-button {
  overflow: visible;
  position: static;
}

.simple-text .elementor-button::before {
  display: none !important;
}

.simple-text .elementor-button:hover::before {
  display: none !important;
}