/* 

Theme Name: Hello Elementor Child

Theme URI: https://github.com/elementor/hello-theme/

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: 1.0.1

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

/* subscribe form footer  */
.subscribe_form form .mc4wp-form-fields button:hover{
  border: none;
  outline: none;
  background: var( --e-global-color-89a752e );
}
.subscribe_form form .mc4wp-form-fields input:focus,
.subscribe_form form .mc4wp-form-fields input:active,
.subscribe_form form .mc4wp-form-fields input:hover{
  outline: none;
}
.subscribe_form form .mc4wp-form-fields input{
    background: var( --e-global-color-secondary );
    border: 1px solid var( --e-global-color-text );
    border-radius: 10px 0px 0px 10px;
    flex: 1;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
}
.subscribe_form form .mc4wp-form-fields button{
  width: 60px;
  border: none;
  outline: none;
  background: var( --e-global-color-text );
  border-radius: 0px 10px 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subscribe_form form .mc4wp-form-fields{
  display: flex;
}

.homepage_designed_list ul{
  gap: 16px !important;
}
.homepage_designed_list li{
  padding: 4px 8px !important;
  border-radius: 24px;
background-color: transparent;
    background-image: linear-gradient(90deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
    border: 1px solid var( --e-global-color-text );
}
.page-header {
  display: none;
}
.header_menu .hfe-nav-menu .hfe-sub-menu-item:hover {
  color: var(--e-global-color-secondary) !important;
}
.header_menu .sub-menu {
  padding-top: 28px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

/* Global Font */
.insights-form-area,
.insights-form-area * {
  font-family: "gordita", Sans-serif !important;
  box-sizing: border-box;
}

/* Section Layout */
.insights-form-area {
  background: var(--e-global-color-primary);
  border-radius: 16px;
  color: var(--e-global-color-text);
}

/* Two Columns */
.insights-form-area .two-columns p {
  display: flex;
  gap: 20px;
}

.insights-form-area .two-columns .wpcf7-form-control-wrap {
  flex: 1;
}

/* Labels */
.insights-form-area label {
  display: block;
  margin: 16px 0 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--e-global-color-text);
}

/* Inputs & Fields */
.insights-form-area input[type="text"]::placeholder,
.insights-form-area input[type="email"]::placeholder,
.insights-form-area select::placeholder,
.insights-form-area textarea::placeholder {
  opacity: 1;
  color: var(--e-global-color-text);
}
/* Inputs & Fields */
.insights-form-area input[type="text"],
.insights-form-area input[type="email"],
.insights-form-area select,
.insights-form-area textarea {
  width: 100%;
  background: var(--e-global-color-accent);
  border: 1px solid transparent;
  color: var(--e-global-color-text);
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.25s ease;
}

/* Focus */
.insights-form-area input:focus,
.insights-form-area select:focus,
.insights-form-area textarea:focus {
  border-color: var(--e-global-color-text);
  box-shadow: 0 0 0 3px var(--e-global-color-text);
  outline: none;
}

/* RADIO + CHECKBOX WRAPPING (INLINE) */
.insights-form-area .wpcf7-checkbox .wpcf7-list-item,
.insights-form-area .wpcf7-radio .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}

/* Custom Inputs */
.insights-form-area input[name="baby-weight"] {
  margin-top: 16px;
}
.insights-form-area input[type="radio"],
.insights-form-area input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--e-global-color-text);
  border-radius: 4px;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  transition: 0.25s ease;
}

/* Radio Round */
.insights-form-area input[type="radio"] {
  border-radius: 50%;
}

/* Active State */
.insights-form-area input[type="radio"]:checked,
.insights-form-area input[type="checkbox"]:checked {
  background-color: var(--e-global-color-text);
  border-color: var(--e-global-color-accent);
}

/* Radio Dot */
.insights-form-area input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--e-global-color-text);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
}

/* Textarea */
.insights-form-area textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox & Radio Labels */
.insights-form-area .wpcf7-list-item-label {
  color: var(--e-global-color-text);
  font-size: 15px;
}

/* Submit Button */
.insights-form-area input[type="submit"] {
  background: none;
  color: var(--e-global-color-text);
  font-size: 17px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--e-global-color-text);
  cursor: pointer;
  margin-top: 20px;
  box-shadow: none;
  transition: 0.3s ease;
  width: fit-content;
}

.insights-form-area input[type="submit"]:active,
.insights-form-area input[type="submit"]:focus,
.insights-form-area input[type="submit"]:hover {
  background: none;
  outline: none;
  color: var(--e-global-color-text);
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--e-global-color-text);
}

/* Spacing Cleanup */
.insights-form-area p {
  margin: 0 0 15px 0;
}

/* Response Message - Base */
.wpcf7-response-output {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  color: var(--e-global-color-text) !important;
  border: none !important;
}

/* Success Message */
.wpcf7-mail-sent-ok {
  background: rgba(33, 75, 156, 0.15); /* soft blue tint */
  border-left: 4px solid var(--e-global-color-primary) !important;
  color: var(--e-global-color-primary) !important;
}

/* Validation Error (Fields missing) */
.wpcf7-validation-errors {
  background: rgba(214, 69, 69, 0.15); /* light red background */
  border-left: 4px solid var(--e-global-color-accent) !important;
  color: var(--e-global-color-accent) !important;
}

/* Submission Failed (Server issue) */
.wpcf7-mail-sent-ng {
  background: rgba(214, 69, 69, 0.2);
  border-left: 4px solid var(--e-global-color-accent) !important;
  color: var(--e-global-color-accent) !important;
}

/* Spam Detected */
.wpcf7-spam-blocked {
  background: rgba(214, 69, 69, 0.2);
  border-left: 4px solid var(--e-global-color-accent) !important;
  color: var(--e-global-color-accent) !important;
}

@media (max-width: 768px) {
  .insights-form-area input[type="submit"] {
    width: 100%;
  }
}

/* [homepage_banner_slider] shortcode  */
.homepage_banner_slider_wrapper {
  width: 100%;
  position: relative;
}

/* Loader */
.homepage_banner_slider_loader {
  width: 100%;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--e-global-color-text);
  font-size: 20px;
  font-weight: 600;
  color: #555;
}

.homepage_banner_slider {
  display: none;
  /* Hidden until Slick loads */
}

.homepage_banner_slider_item::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #00000037;
  z-index: 2;
}
.homepage_banner_slider_item {
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center center;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.homepage_banner_slider_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 0 24px;
}

.homepage_banner_slider_content h1 {
  font-size: 48px;
  line-height: 60px;
  color: var(--e-global-color-text);
  font-family: "recoleta", Sans-serif;
  font-weight: 400;
  text-decoration: none !important;
  margin: 0;
}

.homepage_banner_slider_btn:hover {
  border-bottom: 2px solid var(--e-global-color-text);
  transform: scale(1.05);
}

.homepage_banner_slider_btn {
  font-size: 16px;
  line-height: 22px;
  color: var(--e-global-color-text) !important;
  border-bottom: 1px solid var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  padding: 6px 3px;
  font-weight: 400;
  text-decoration: none !important;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

@media (max-width: 1024px) {
  .homepage_banner_slider_item {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .homepage_banner_slider_item {
    height: 400px;
  }

  .homepage_banner_slider_content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

/* [product_slick_slider] shortcode  */
.product_slider_wrapper .slick-track {
  display: flex !important;
}

.product_slider_wrapper .slick-list {
  overflow: visible !important;
}

.product_slider_wrapper {
  position: relative;
}

.product_slider_wrapper .slick-slider {
  margin: 0 -20px;
}

.product_slider_wrapper .slick-slide {
  margin: 0 20px;
}

.product_slider_arrows .slick-arrow:focus,
.product_slider_arrows .slick-arrow:active,
.product_slider_arrows .slick-arrow:hover {
  border: none;
}

.product_slider_arrows .slick-arrow {
  background: transparent !important;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  border: none;
  outline: none;
  border: none;
}

.product_slider_arrows {
  position: absolute;
  top: -86px;
  right: 24px;
  width: 30px;
  display: flex;
  gap: 20px;
}

.product_slider_arrows .slick-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.product_slider_arrows .slick-arrow::before {
  display: none !important;
}

/* .product_slider_item::before {
  content: '';
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.2;
  top: 0;
  left: 0;
} */
.product_slider_item {
  height: auto;
  display: flex !important;
  background: var(--e-global-color-text);
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 24px;
  flex-direction: column;
  position: relative;
  padding: 24px;
  height: 400px;
}

.product_slider_box:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product_slider_image {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.product_slider_image img:hover {
  transform: scale(1.05);
}

.product_slider_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.product_slider_rating {
  margin-top: 20px;
  font-size: 14px;
  line-height: 24px;
  z-index: 5;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  font-weight: 400;
  padding: 0 24px;
}

.product_slider_rating_count {
  display: block;
  font-size: 14px;
  line-height: 24px;
  z-index: 5;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  font-weight: 400;
}

.product_slider_title {
  font-size: 20px;
  line-height: 25px;
  width: 100%;
  z-index: 5;
  position: relative;
  display: flex;
  color: var(--e-global-color-secondary) !important;
  font-family: "gordita", Sans-serif;
  font-weight: 400;
  text-decoration: none !important;
  text-align: start;
}

.product_slider_price {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  z-index: 5;
  color: var(--e-global-color-secondary);
  font-family: "gordita", Sans-serif;
  font-weight: 400;
  margin: 8px 0 16px;
  opacity: 0.8;
  width: 100%;
  text-align: start;
}

.product_slider_button img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.product_slider_button:hover {
  border: 1px solid var(--e-global-color-89a752e);
}
.product_slider_button {
  z-index: 5;
  margin-top: auto;
  position: relative;
  background: var(--e-global-color-secondary);
  padding: 14px;
  border-radius: 50%;
  width: fit-content;
  display: flex;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: all 0.3 ease;
}

/* ================================
   TABLET – 1024px
   ================================ */
@media (max-width: 1024px) {
  .product_slider_wrapper .slick-slide {
    margin: 0 12px;
  }

  .product_slider_wrapper .slick-slider {
    margin: 0 -12px;
  }

  .product_slider_arrows {
    right: 24px;
  }
}

/* ================================
                MOBILE – 768px
                ================================ */
@media (max-width: 768px) {
  .product_slider_title {
    font-size: 16px;
    line-height: 21px;
  }

  .product_slider_price {
    font-size: 14px;
  }

  .product_slider_rating,
  .product_slider_rating_count {
    font-size: 12px;
    line-height: 20px;
  }
  .product_slider_item {
    height: 300px;
  }
  .product_slider_arrows {
    display: none;
  }

  .product_slider_arrows .slick-arrow {
    width: 26px;
    height: 26px;
  }

  .product_slider_arrows .slick-arrow img {
    width: 100%;
    height: 100%;
  }
}

/* [product_features_tabview] shortcode  */
.features_tabview_wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 40px;
}

/* ------------------ TOP TABS ------------------- */
.features_tabview_tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  flex-direction: column;
  width: 300px;
  gap: 16px;
  height: fit-content;
  position: sticky;
  top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge Legacy */
}

.features_tabview_content {
  flex: 1;
}

.features_tabview_tab {
  padding: 0 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--e-global-color-text);
  border-top: none;
  cursor: pointer;
  border-left: none;
  width: fit-content;
  text-wrap-mode: nowrap;
  text-align: center;
  border-right: none;
  border-bottom: 1px solid var(--e-global-color-text);
  font-family: "recoleta";
  outline: none;
  opacity: 0.5;
}

.features_tabview_tabs::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

.features_tabview_tab:hover {
  border-bottom: 1px solid var(--e-global-color-text);
  opacity: 1;
  outline: none;
}

.features_tabview_active {
  border-bottom: 1px solid var(--e-global-color-text);
  opacity: 1;
  outline: none;
}

/* ------------------ CONTENT AREA ------------------- */
.features_tabview_content_item {
  display: none;
  animation: fadeIn 0.8s ease;
}

.pfs-image-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features_tabview_desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  text-align: start;
}

/* ------------------ FEATURES LIST ------------------- */
.features_tabview_features {
  display: flex;
  flex-wrap: wrap;
  gap: 110px;
  justify-content: center;
  margin-bottom: 40px;
}

.features_tabview_feature_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 125px;
  justify-content: start;
}

.features_tabview_feature_item img {
  width: 100%;
  height: 125px;
  object-fit: contain;
  border-radius: 16px;
  padding: 36px;
  background-image: url("/wp-content/uploads/2025/12/heart-1.png");
  object-position: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.features_tabview_feature_name {
  font-size: 16px;
  line-height: 24px;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  text-align: center;
}

.features_tabview_comparison {
  margin-bottom: 32px;
}
.features_tabview_comparison p {
  margin: 0;
}

.features_tabview_comparison {
  font-size: 16px;
  line-height: 20px;
  opacity: 0.8;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  text-align: start;
}

@media (max-width: 1340px) {
  .product-features-section {
    max-width: calc(100% - 48px) !important;
  }
}
@media (max-width: 1024px) {
  .features_tabview_features {
    gap: 24px;
  }
  .pfs-content-text {
    width: 100% !important;
  }
  .features_tabview_tabs {
    justify-content: flex-start;
    width: 100%;
    position: static;
  }
  .features_tabview_wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .product-features-section {
    max-width: 100% !important;
  }
  .features_tabview_features {
    justify-content: space-between;
  }
}

/* [homepage_videos_slider] shortcode  */
.hv_slider_wrapper {
  position: relative;
}

.hv_slider_loader {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.hv_spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.15);
  border-top-color: var(--e-global-color-text);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hv_videos_slider .hv_slide {
  display: flex;
  height: 400px;
}

.hv_videos_slider .slick-track {
  display: flex;
  gap: 24px;
}

.hv_video_preview {
  position: relative;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.hv_video_preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  object-position: center;
}

.hv_play_icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv_play_icon div {
  width: 58px;
  height: 58px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hv_play_icon div:before {
  content: "";
  border-left: 18px solid var(--e-global-color-secondary);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.hv_modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hv_modal.open {
  display: flex;
}

.hv_modal_inner {
  width: 100%;
  max-width: 1200px;
  height: 75vh;
  background: #000;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hv_modal_close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  color: var(--e-global-color-secondary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hv_modal_video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* keep body width while position fixed so no layout shift */
body.hv_fixed {
  width: 100%;
}

.hv_noscroll {
  /* kept for compatibility if you want to use it elsewhere */
  overflow: hidden !important;
}

.hv_modal_video {
  width: 100%;
  height: 100%;
}

/* ============== 1024px ============== */
@media (max-width: 1024px) {
  .hv_videos_slider .hv_slide {
    height: 320px;
  }

  .hv_video_preview video {
    object-fit: cover;
  }

  .hv_modal_inner {
    max-width: 900px;
    height: 70vh;
  }
}

/* ============== 768px ============== */
@media (max-width: 768px) {
  .hv_videos_slider .slick-track {
    gap: 16px;
  }

  .hv_videos_slider .hv_slide {
    height: 260px;
  }

  .hv_video_preview {
    border-radius: 10px;
  }

  .hv_play_icon div {
    width: 52px;
    height: 52px;
  }

  .hv_play_icon div:before {
    border-left-width: 16px;
    border-top-width: 10px;
    border-bottom-width: 10px;
  }

  .hv_modal_inner {
    width: 100%;
    height: 65vh;
    max-width: 100%;
    border-radius: 6px;
  }

  .hv_modal_close {
    width: 40px;
    height: 40px;
    top: 8px;
    right: 8px;
    font-size: 16px;
  }
}

/* [insights_latest_posts] shortcode  */
.Insights_wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.Insights_item {
  flex: 1;
  background: var(--e-global-color-8ff7b62);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.Insights_item:hover {
  transform: translateY(-4px);
}

.Insights_item a {
  text-decoration: none;
}

.Insights_item_img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.Insights_item_content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Insights_item_title {
  font-size: 16px;
  line-height: 24px;
  color: var(--e-global-color-text);
  margin: 0;
  font-family: "gordita", Sans-serif;
  margin: 0;
}

.Insights_item_excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--e-global-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  height: 42px;
  /* 2 lines approx */
}

.Insights_item_link {
  color: var(--e-global-color-text) !important;
  border-bottom: 2px solid var(--e-global-color-text);
}

.Insights_item_link {
  font-size: 16px;
  line-height: 20px;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  font-weight: 400;
  background: transparent;
  padding: 6px 3px;
  width: fit-content;
  text-decoration: none !important;
  border-bottom: 1px solid var(--e-global-color-text);
  transition: all 0.3 ease;
}

@media (max-width: 768px) {
  .Insights_wrapper {
    flex-direction: column;
  }
}

/* [insights_latest_posts_loadmore] shortcode  */
.insightsLM_wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.insightsLM_item {
  width: calc(25% - 18px);
  background: var(--e-global-color-8ff7b62);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.insightsLM_item:hover {
  transform: translateY(-4px);
}

.insightsLM_item a {
  text-decoration: none;
  display: block;
  height: 100%;
}

.insightsLM_item_img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.insightsLM_item_content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insightsLM_item_title {
  font-size: 16px;
  line-height: 24px;
  color: var(--e-global-color-text);
  margin: 0;
  font-family: "gordita", Sans-serif;
}

.insightsLM_item_excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--e-global-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: "gordita", Sans-serif;
  overflow: hidden;
  margin: 0;
  opacity: 0.8;
  height: 42px;
}

.insightsLM_item_link {
  font-size: 16px;
  color: var(--e-global-color-text);
  font-family: "gordita", Sans-serif;
  border-bottom: 1px solid var(--e-global-color-text);
  width: fit-content;
  text-decoration: none !important;
  padding-bottom: 3px;
}

@media (max-width: 1024px) {
  .insightsLM_item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .insightsLM_wrapper {
    flex-direction: column;
  }

  .insightsLM_item {
    width: 100%;
  }
}

/* Load More Button */
.insightsLM_loadmore_btn:hover,
.insightsLM_showless_btn:hover {
  border-bottom: 2px solid var(--e-global-color-text) !important;
  background: none !important;
}

.insightsLM_loadmore_btn,
.insightsLM_showless_btn {
  margin: 40px auto 0;
  display: flex;
  padding: 12px 30px !important;
  font-size: 16px !important;
  color: var(--e-global-color-text) !important;
  background: none;
  border-radius: 0px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid var(--e-global-color-text) !important;
  text-align: center;
  font-family: "gordita", Sans-serif !important;
}

/* Loader */
.insightsLM_loader {
  display: none;
  margin: 20px auto;
  border: 4px solid var(--e-global-color-text);
  border-top: 4px solid transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  animation: spinLM 0.8s linear infinite;
}

@keyframes spinLM {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* [usage_guide_section] shortcode  */

.usage-guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 24px;
}
.usage-guide-list li .ug-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.usage-guide-list li .ug-content p {
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-line-height);
  color: var(--e-global-color-text);
}
.usage-guide-list li .ug-content .ug-title {
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: 20px;
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: 30px;
  margin: 0;
  color: var(--e-global-color-text);
}
.usage-guide-list li .ug-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.usage-guide-list li .ug-image {
  height: 62px;
  width: 62px;
  display: flex;
  position: sticky;
  top: 10px;
}
.usage-guide-list li {
  display: flex;
  align-items: start;
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--e-global-color-text);
  gap: 24px;
}

.ug-inline-btn {
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .usage-guide-list li {
    flex-direction: column;
    gap: 16px;
  }
  .usage-guide-list li .ug-image {
    height: 42px;
    width: 42px;
  }
  .usage-guide-list {
    gap: 16px;
  }
  .usage-guide-list li {
    padding-bottom: 8px;
  }
  .usage-guide-list li .ug-image {
    position: static;
  }
}

/* [shop_products_grid] shortcode  */
.shop_filters {
  margin-bottom: 32px;
}

.shop_filters_row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.shop_filter_group label {
  margin-bottom: 6px;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-line-height);
  color: var(--e-global-color-text);
}

.shop_filter_group select:focus {
  border: 1px solid var(--e-global-color-89a752e);
}
.shop_filter_group select {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--e-global-color-text);
  min-width: 160px;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-line-height);
  color: var(--e-global-color-text);
}

.shop_filter_actions {
  margin-left: auto;
}

.shop_load_more:focus,
.shop_load_more:active,
.shop_load_more:hover,
.shop_btn_reset:focus,
.shop_btn_reset:active,
.shop_btn_reset:hover {
  background: none;
  border-bottom: 1px solid var(--e-global-color-89a752e) !important;
  color: var(--e-global-color-89a752e) !important;
  transform: scale(1.1);
}

.shop_btn_reset {
  font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
  font-size: var(--e-global-typography-text-font-size) !important;
  font-weight: var(--e-global-typography-text-font-weight) !important;
  line-height: var(--e-global-typography-text-line-height) !important;
  color: var(--e-global-color-text) !important;
  transition-duration: 0.3s;
  transition-property: transform;
  padding: 6px 12px !important;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--e-global-color-text) !important;
  outline: none;
  background: none;
  cursor: pointer;
}

.shop_results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* fixed 3 columns */
  gap: 24px;
  transition: opacity 0.28s ease;
}

.shop_item:hover {
  transform: translateY(-10px);
}

.shop_item:hover .shop_item_image {
  transform: scale(1.1);
}

.shop_item {
  display: flex !important;
  background: var(--e-global-color-text);
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 24px;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 24px;
  text-decoration: none !important;
  height: 400px;
  gap: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shop_item_image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0.5;
  left: 0;
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
  z-index: 1;
}

.shop_item_image img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  display: block;
}

.shop_item_title {
  font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
  font-size: 24px;
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: 30px;
  color: var(--e-global-color-secondary) !important;
  z-index: 5;
  margin: 0;
}

.shop_item_desc,
.shop_item_price {
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-line-height);
  color: var(--e-global-color-secondary) !important;
  margin: 0;
  z-index: 5;
}

.shop_item_btn img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.shop_item_btn {
  z-index: 5;
  margin-top: auto;
  position: relative;
  background: var(--e-global-color-secondary);
  padding: 14px;
  border-radius: 50%;
  width: fit-content;
  display: flex;
  border: 1px solid transparent;
  text-decoration: none !important;
}

.shop_loader {
  text-align: center;
  padding: 40px 0;
  color: #666;
}

.shop_loadrow {
  text-align: center;
  margin-top: 32px;
}

.shop_load_more {
  font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
  font-size: var(--e-global-typography-text-font-size) !important;
  font-weight: var(--e-global-typography-text-font-weight) !important;
  line-height: var(--e-global-typography-text-line-height) !important;
  color: var(--e-global-color-text) !important;
  transition-duration: 0.3s;
  transition-property: transform;
  padding: 6px 12px !important;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--e-global-color-text) !important;
  outline: none;
  background: none;
  cursor: pointer;
}

.shop_no_results {
  padding: 28px;
  text-align: center;
  color: #666;
}

/* small animations */
.shop_fade_out {
  opacity: 0.35;
  transform: scale(0.995);
}

.shop_item.enter {
  animation: shop_item_in 0.28s ease both;
}

@keyframes shop_item_in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* responsive tweaks */
@media (max-width: 1024px) {
  .shop_results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .shop_results {
    grid-template-columns: repeat(1, 1fr);
  }
  .shop_filters_row {
    flex-direction: column-reverse;
    gap: 4px;
  }
  .shop_filter_group {
    flex: 1;
    width: 100%;
  }
}

/* contact us form  */

.contact_form textarea::placeholder ,
.contact_form input::placeholder {
  opacity: 0.3;
  color: var(--e-global-color-text);
}
.contact_form .form-row p span{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
      font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
}
.contact_form .form-row p{
  display: flex;
  gap: 24px;
}


/* Contact Form 7 Radio Buttons */
.contact_form input[type="radio"] {
    appearance: none; /* Remove default style */
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: var( --e-global-color-secondary );
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.contact_form input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: var( --e-global-color-text );
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 3px;
}

/* Contact Form 7 Checkboxes */
.contact_form input[type="checkbox"] {
    appearance: none; /* Remove default style */
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    background-color: var( --e-global-color-secondary );
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    border-radius: 0 !important;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.contact_form input[type="checkbox"]:checked::before {
    content: '✔'; /* Checkmark symbol */
    color: #000;
    font-size: 16px;
    line-height: 16px;
    position: absolute;
    top: 0;
    left: 2px;
}



/* Universal Select Styling – fully cross-browser */
.contact_form select {
    appearance: none !important;
    -webkit-appearance: none !important; /* Safari, iOS */
    -moz-appearance: none !important; /* Firefox */
    background-color: var( --e-global-color-secondary );
    background-image: url('https://koalahug.com.au/wp-content/uploads/2025/12/arrow-down-sign-to-navigate.png');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    border: 1px solid var( --e-global-color-secondary );
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    cursor: pointer;
}
/* Style dropdown options */
.contact_form select option {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);   
    padding: 10px 12px;
    border: none;
}

/* Hover effect inside dropdown – works on most modern browsers */
.contact_form select option:hover {
    background-color: #ddd; /* or any color */
}

/* Selected option styling (when selected in dropdown) */
.contact_form select option:checked {
    background-color: #ccc; /* highlight selected */
    color: var(--e-global-color-text);
}
.contact_form select ,
.contact_form textarea ,
.contact_form input {
  border-radius: 16px;
  border: 1px solid var(--e-global-color-text);
  outline: none;
  background-color: var(--e-global-color-secondary); 
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  line-height: var(--e-global-typography-text-line-height);
}
.form-row.accept a:hover{
  color: var(--e-global-color-text);
}
.form-row.accept .wpcf7-form-control-wrap{
  flex: unset !important;
}
.form-row.accept a{
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  align-content: center;
  margin-left: -18px;
  line-height: var(--e-global-typography-text-line-height);
}
.form-row.accept .wpcf7-list-item-label{
  width: fit-content;
  flex: unset !important;
}
.contact_form input[type='submit']:hover {
    background-color: var(--e-global-color-89a752e);
    color: var(--e-global-color-secondary);
    border-color: var(--e-global-color-89a752e);
    border-radius: 16px 16px 16px 16px;
}
.contact_form input[type='submit'] {
  width: 100%;
  background-color: var(--e-global-color-8ff7b62);
    font-family: var(--e-global-typography-d335737-font-family), Sans-serif;
    font-size: var(--e-global-typography-d335737-font-size);
    line-height: var(--e-global-typography-d335737-line-height);
    fill: var(--e-global-color-text);
    color: var(--e-global-color-text);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-text);
    border-radius: 16px 16px 16px 16px;
    padding: 12px 24px 12px 24px;
}


/* File field wrapper */
.form-row.file-field {
  margin: 24px 0;
}

/* Hide default ugly input */
.form-row.file-field input[type="file"] {
  position: relative;
  width: 100%;
  padding: 18px 16px;
  font-size: 14px;
  color: #111111;
  background-color: #FAFAFA;
  border: 1px dashed #E5DFD7;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover */
.form-row.file-field input[type="file"]:hover {
  border-color: #FFCDB8;
  background-color: #ffffff;
}

/* Focus */
.form-row.file-field input[type="file"]:focus {
  outline: none;
  border-color: #111111;
}

/* Custom button inside file input */
.form-row.file-field input[type="file"]::file-selector-button {
  padding: 10px 16px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background-color: #111111;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease;
}

/* Hover button */
.form-row.file-field input[type="file"]::file-selector-button:hover {
  background-color: #FFCDB8;
  color: #111111;
}

/* Help text (optional) */
.form-row.file-field .file-hint {
  margin-top: 6px; 
  font-size: 12px;
  color: #666;
}


.form-row.accept p .wpcf7-list-item{
  flex-direction: row;
  align-items: center;
}
.form-row.file-field p{
  flex-direction: column;
  gap: 10px;
}
.form-row.feedback .wpcf7-form-control .wpcf7-list-item{ 
  margin: 0;
}
.form-row.feedback .wpcf7-form-control{ 
  display: flex;
  flex-direction: row;
}


.form-row.platform .wpcf7-checkbox .wpcf7-list-item{
  margin: 0;
  flex-direction: row;
  align-items: center;
}
.form-row.platform .wpcf7-checkbox{
  flex-direction: row;
}


@media(max-width: 768px){
  .contact_form .form-row p span{
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .form-row.feedback p{
    flex-direction: column;
  }
  .form-row.feedback .wpcf7-form-control{
    flex-direction: column !important;
  } 
  .form-row.feedback .wpcf7-form-control .wpcf7-list-item{
    flex-direction: row !important;
    align-items: center;
  }
  .contact_form .form-row p{
    gap: 16px !important;
  }
  .form-row.accept a{
        font-size: 12px !important;
        line-height: 16px !important; 
        margin-left: -10px !important;
  }
}