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

/* Add your custom styles here */
html {
  scroll-behavior: smooth;
}
/* Applies to Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0B2545; /* Dark background */
}

::-webkit-scrollbar-thumb {
  background-color: #F97316; /* Orange thumb */
  border-radius: 6px;
  border: 2px solid #0B2545; /* Border to blend with track */
}

div#button-icon .elementor-button-icon svg {
    height: 32px;
    width: 32px;
    line-height: 1 !important;
}
span.elementor-button-content-wrapper {
    justify-content: center;
    align-items: center;
}
div#faqs-wrapper-style .e-n-accordion-item {
    border-radius: 20px !important;
box-shadow: 1px 2px 5px rgb(0 0 0 / 7%);
}
div#faqs-wrapper-style span.e-n-accordion-item-title-header {
    padding-right: 20px;
}

// ACCORDING PROGRESS BAR CSS//
/* Make accordion + progress align */
#progress-according {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: relative;
}

/* Progress bar wrapper */
#progress-according::before {
  content: "";
  display: block;
  width: 6px;
  background: #EEEEEE;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
}


#progress-according::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: var(--progress-height, 0%);
  border-radius: 5px;
  background: linear-gradient(180deg, #f97316, #ffae42);
  transition: height 0.3s ease-in-out;
} 


// END//

#button-icon .elementor-button-icon {
  display: inline-block;
  transition: transform 6s ease-in !important;
}

#button-icon:hover .elementor-button-icon {
  transform: rotate(45deg);
}


/*// PRODDUCT TAB CODE///*/
@media (max-width: 768px) {
  #description-tab .e-n-tabs-heading {
    display: flex !important;

    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
	          padding: 0px !important;
        margin: 0px;
  }

  #description-tab .e-n-tabs-heading .e-n-tab-toggle {
    display: none !important;
  }

  #description-tab .e-n-tab-title {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
	  padding:0px !important;
	  margin:0px !important;
  }
}
.e-n-tabs-heading {
    border-bottom: 2px solid rgba(216, 216, 216, 1);
}
/*/// END////*/


#product-container img {
  display: block;
  position: relative;
  z-index: 1; 
}


.model-section {
  position: relative;
  overflow: hidden;
}

.generator-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: auto;
}

.model-section .elementor-widget-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hidden-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.model-section:hover .hidden-container {
  max-height: 300px;
}

.model-section:hover {
  transition: all 0.6s ease;
}
