.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-7cce9ab:#FFFFFF;--e-global-color-efa5494:#000000;--e-global-color-060c366:#402E32;--e-global-color-4abc01e:#241818;--e-global-color-cde570d:#495338;--e-global-color-331ab2a:#1D2115;--e-global-color-447e642:#8E7676;--e-global-color-2385df4:#968888;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#02010100;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* SKU ausblenden */
.product_meta .sku_wrapper {
  display: none !important;
}
.custom-cart-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Unterstreichungslinie 1: animiert beim Hover, verschwindet */
.custom-cart-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  opacity: 0;
  transition: none;
}

/* Unterstreichungslinie 2: bleibt stehen */
.custom-cart-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #000;
  opacity: 0;
  transition: none;
}

/* Animation auslösen beim Hover */
.custom-cart-btn:hover::before {
  animation: underline-move 0.25s linear forwards, underline-fade 0.18s 0.25s linear forwards;
}

.custom-cart-btn:hover::after {
  animation: underline-show 0.25s 0.43s linear forwards;
}

/* Keyframes für die Animation */
@keyframes underline-move {
  from { width: 0; opacity: 1; }
  to   { width: 100%; opacity: 1; }
}
@keyframes underline-fade {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes underline-show {
  from { width: 0; opacity: 0; }
  to   { width: 100%; opacity: 1; }
}/* End custom CSS */