:root {
  --e-global-color-primary: var(--brand-primary);
  --e-global-color-secondary: var(--brand-secondary);
}


.woocommerce ul.products li.product.ls-product-item {
  position: relative;
  overflow: hidden
}

.ls-product-img-wrap {
  position: relative
}

/* Zweites Bild */
.ls-product-img-wrap.ls-has-hover .ls-secondary-image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .25s ease;
  z-index: 1
}

.ls-product-img-wrap.ls-has-hover:hover .ls-secondary-image {
  opacity: 1
}

.woocommerce ul.products li.product a img {
  margin: 0;
}

/* Größe-Swatches */
.ls-size-swatches {

  padding: 4px 6px;
  display: flex;
  gap: 4px;
  position: absolute;
  left: 8px;
  background: rgba(255, 255, 255, .45);
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 600;
  transition: opacity .15s ease;
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  padding: 16px !important;
  margin: 0px !important;
  border-radius: 0px !important;
  font-family: var(--e-global-typography-accent-font-family);
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  flex-direction: column;
}

.ls-size-swatches-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.ls-swatches-hr {
  width: 200px;
  color: var(--e-global-color-primary);
  opacity: 0.1;
  border-width: 1px;
}

.ls-size-swatches li {
  padding: 0 4px
}

.ls-product-img-wrap.ls-has-hover .ls-size-swatches {
  opacity: 0
}

.ls-product-img-wrap.ls-has-hover:hover .ls-size-swatches {
  opacity: 1
}


/* Container positionieren */
.ls-badges {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  /* Abstand zwischen mehreren Badges */
  z-index: 3;
}

.ls-badge-new,
.ls-badge-bestseller {
  /* Basis-Styles, Farben später im Child-Theme anpassen */
  background: #fff;
  color: var(--e-global-color-primary);
  font: 600 12px/1 var(--e-global-typography-primary-font-family);
  padding: 2px 6px;
  border-radius: 3px;
}

.ls-sale-badge {
  /* Basis-Styles, Farben später im Child-Theme anpassen */
  background: var(--e-global-color-accent);
  color: #fff;
  font: 500 12px/1 var(--e-global-typography-primary-font-family);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Wishlist-Icon */
.ls-wishlist-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: .8;
  transition: opacity .15s ease;
  z-index: 3
}

.ls-product-img-wrap:hover .ls-wishlist-icon {
  opacity: 1
}

.ls-wishlist-icon .ti-heart {
  color: var(--e-global-color-primary);
}

.ls-product-info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 !important;
}

/* Titel */
.ls-title-truncate {
  color: var(--e-global-color-primary);
  font-family: var(--e-global-typography-primary-font-family), sans-serif;
  font-size: clamp(14px, 1rem, 18px);
  line-height: 1.3;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

/* Preis */
.ls-price {
  font-weight: 500 !important;
  display: block;
  color: var(--e-global-color-accent) !important;
  font-family: var(--e-global-typography-primary-font-family), sans-serif;
}

.ls-price ins {
  font-weight: 500 !important;
  text-decoration: none;
  color: var(--e-global-color-accent)
}

.ls-price del {
  color: var(--e-global-color-497f867) !important;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 1 !important;
  margin-left: 4px;
}

/* Sicherheit: Quick‑Add‑Buttons ausblenden */
.ls-product-item .add_to_cart_button {
  display: none !important
}

/*Product Archive*/

/* --- WooCommerce-Produktgrid: exakt 10 px Abstand zwischen allen Kacheln --- */

/* Außenränder kompensieren – dadurch entsteht real 10 px zwischen zwei Items */
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: -5px;
  /* gleiche Zahl wie unten, aber negativ */
}

/* Jeweils 5 px rundherum → 5 px + 5 px = 10 px Distanz */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 5px;
}

.woocommerce ul.products li.product {
  width: calc(25% - 10px);
  /* Spaltenbreite um die 2 × 5 px Margins kürzen */
}


/*-----------------------------------------------------------------------SINGLE PRODUCT----------------------------------------------------------------------------------------------------------*/

/* ------------------------------------------------------------------
   Single Product – Base Layout (aligned to v3 template)
   ------------------------------------------------------------------ */

.custom-single-product {
  --gap: 2rem;
}

.custom-single-product .product-grid {
  display: flex;
  gap: var(--gap);
  min-height: auto;
}

/* Gallery 60% – Info 40% (Desktop) */
.custom-single-product .product-gallery {
  flex: 0 0 60%;
}

.custom-single-product .product-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-family: var(--e-global-typography-text-font-family), sans-serif !important;
  align-items: center;
}

/* Mobile ≤ 768 px → Stack */
@media (max-width: 768px) {

  .custom-single-product .product-gallery,
  .custom-single-product .product-info {
    flex: 0 0 100%;
    gap: 1rem;
  }

  .product-utils {
    display: none !important;
  }

  .custom-single-product .product-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .product-utils {
    display: none;
  }

  p.price {
    margin: 0;
  }

  .rtwpvs-product .variations {
    margin: -18px 0 5px !important;
  }

  .variations td {
    padding: 0.75rem;
  }



  .rtwpvs-button-term span {
    font-size: 14px;
  }

  .rtwpvs .rtwpvs-terms-wrapper {
    gap: 2px;
  }

  .rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term:not(.rtwpvs-radio-term).rtwpvs-button-term {
    padding: 4px 8px !important;
    min-width: unset !important;
  }
  aside.ls-offcanvas__panel {
    padding: 1rem;
}
}
 .rtwpvs-product .variations {
    margin: -12px 0 0px !important;
  }
/* ------------------------------------------------------------------
   Labels / Badges
   ------------------------------------------------------------------ */
.product-labels {
  display: flex;
  gap: 4px;
}

.product-labels .label {
  font: 600 12px/1 var(--e-global-typography-primary-font-family, sans-serif);
  padding: 2px 6px;
  border-radius: 3px;
  background: #fff;
  color: var(--e-global-color-primary, #000);
  text-transform: uppercase;
  letter-spacing: .2px;
}

.label.sale {
  background: var(--e-global-color-accent, #e60023);
  color: #fff;
}

/* ------------------------------------------------------------------
   Title / Subtitle / Price
   ------------------------------------------------------------------ */
.product-title {
  color: var(--e-global-color-primary, #000);
  font-family: var(--e-global-typography-primary-font-family, sans-serif);
  font-size: clamp(20px, 2vw + 1rem, 32px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

.product-subtitle {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: var(--e-global-color-497f867, #777);
}

/* price shown above utils */
.product-price-top {
  text-align: center;
}

.product-price-top .amount {
  font-weight: 500;
  color: var(--e-global-color-accent, #e60023);
}

.product-price-top del {
  margin-left: 4px;
  color: var(--e-global-color-497f867, #777);
}

/* ------------------------------------------------------------------
   Rating / Wishlist / Share row
   ------------------------------------------------------------------ */
.product-utils {
  display: flex;
  gap: .75rem;
  justify-content: center;
  align-items: center;
}

.product-rating {
  display: flex;
  align-items: center;
}

.btn-wishlist,
.btn-share {
  background: var(--e-global-color-764183d);
  color: var(--e-global-color-text);
  border: none;
  border-radius: 50%;
  padding: 8px;
  line-height: 1;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .05);
  transition: filter .15s ease;
}

.btn-wishlist:hover,
.btn-share:hover,
.btn-wishlist:active,
.btn-share:active,
.btn-wishlist:focus,
.btn-share:focus {
  background: var(--e-global-color-764183d);
  color: var(--e-global-color-text);
  filter: brightness(0.97);
}

/* ------------------------------------------------------------------
   Variant thumbnails (color choices)
   ------------------------------------------------------------------ */
.product-variant-thumbs {
  display: flex;
  gap: .5rem;
  justify-content: center;
}

.product-variant-thumbs img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid transparent;
}

.product-variant-thumbs img.selected {
  border-color: var(--e-global-color-primary, #000);
}

.product-color-name {
  font-size: 14px;
  text-align: center;
  margin: .25rem 0 0;
}

/* ------------------------------------------------------------------
   Attributes / Add-to-Cart
   ------------------------------------------------------------------ */
.product-purchase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.single_variation_wrap {
  margin-bottom: 1rem;
}

.variations tbody {
  display: flex;
  flex-direction: column;
  gap: 1rem;

}

.variations tr {
  display: flex;
  flex-direction: column;
}

.variations th.label {
  padding: 0px;
}

.variations th,
.variations td {
  background-color: transparent !important;
  justify-content: center;
  display: flex;
  border: none !important;
  flex-direction: column;
  align-items: center;
}

/* Add to cart button center align */
.single_add_to_cart_button {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------
   Payment messages & icons
   ------------------------------------------------------------------ */
.payment-message,
.klarna-message {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: 14px;
  text-align: center;
}

.payment-icons {
  display: flex;
  gap: .5rem;
  justify-content: center;
  align-items: center;
}

.payment-icons img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: .9;
  transition: opacity .2s ease;
}

.payment-icons img:hover {
  opacity: 1;
}

/* ------------------------------------------------------------------
   Shipping Carousel
   ------------------------------------------------------------------ */
.shipping-carousel {
  position: relative;
  overflow: hidden;
  background: #F9FAFD;
  border-radius: 4px;
  padding: .75rem 1rem;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  max-width: 380px;
  width: 100%;

  /* Tweaks */
  --transition-ms: 500;

  /* Dots (kannst du pro Breakpoint überschreiben) */
  --dot-min: 6px;
  /* Größe der inaktiven Dots (Höhe = Breite) */
  --dot-max: 20px;
  /* Breite des aktiven Dots */
  --dot-idle: #D0D4DD;
  /* Farbe inaktiver Dots */
  --dot-active: #D0D4DD;
  /* Hintergrund aktiver Dot */
  --dot-fill: rgb(51, 51, 51);
  /* Füllfarbe (läuft von links nach rechts) */
}

/* Viewport / Track */
.shipping-carousel__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.shipping-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.shipping-carousel__track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform calc(var(--transition-ms) * 1ms) ease;
}

.shipping-carousel__track.is-dragging {
  transition: none !important;
}

/* Slides */
.shipping-carousel .slide,
.shipping-carousel .shipping-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Pagination Dots */
.shipping-carousel__bullets {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1rem;
}

.shipping-carousel__dot {
  position: relative;
  height: var(--dot-min);
  width: var(--dot-min);
  border-radius: 999px;
  background: var(--dot-idle) !important;
  /* Elementor-Override */
  overflow: hidden;
  transition: width 140ms linear, background-color 140ms linear;
}

.shipping-carousel__dot.is-active {
  width: var(--dot-max);
  background: var(--dot-active) !important;
}

/* Zeit-Füllung im aktiven Dot */
.shipping-carousel__dot-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--dot-fill);
  opacity: 1;
  /* leicht transparent über dem Dot */
  animation-name: none;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.shipping-carousel__dot-fill.is-animating {
  animation-name: sc-dot-fill;
}

/* Füllanimation */
@keyframes sc-dot-fill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Pause-Status (Hover/Focus/Drag) */
.shipping-carousel.is-paused .shipping-carousel__dot-fill {
  animation-play-state: paused;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shipping-carousel__track {
    transition: none !important;
  }
}

/* ------------------------------------------------------------------
   Look section (upsells)
   ------------------------------------------------------------------ */
.product-look {
  margin-top: 1.5rem;
}

/* ------------------------------------------------------------------
   Tabs
   ------------------------------------------------------------------ */
.product-tabs-buttons {
  display: flex;
  gap: .5rem;
  margin-top: 2rem;
}

.product-tabs-buttons .tab-btn {
  flex: 1;
  background: #fff;
  border: 1px solid var(--e-global-color-primary, #000);
  padding: .65rem 1rem;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.product-tabs-buttons .tab-btn.active,
.product-tabs-buttons .tab-btn:hover {
  background: var(--e-global-color-primary, #000);
  color: #fff;
}

.product-tabs-content {
  margin-top: 1.5rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.product-info-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .product-info-header {
    margin-top: 0rem;
  }
}

.rtwpvs .rtwpvs-terms-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.rtwpvs-terms-wrapper.button-variable-wrapper {
  padding: 0.5rem !important;
  border: 1px solid #ebebeb;
  border-radius: 3px;
}

.selected span.rtwpvs-term-span.rtwpvs-term-span-button {
  color: white !important;
}

.rtwpvs-term.rtwpvs-button-term.selected,
.rtwpvs-term.rtwpvs-button-term.selected:hover {
  background-color: #333333 !important;
  box-shadow: none !important;
}

.rtwpvs-term.rtwpvs-button-term:hover {
  background-color: #333333 !important;
  box-shadow: none !important;
}

.rtwpvs-term.rtwpvs-button-term {
  width: 3rem !important;
  padding: 0.5rem 1rem !important;
}


.rtwpvs .rtwpvs-terms-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.rtwpvs-term.rtwpvs-button-term {
  box-shadow: none !important;
}

a.reset_variations {
  display: none!important;
}

th.label {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 8em;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled .quantity {
  display: none;
}

button.single_add_to_cart_button.button.alt {
  background-color: var(--e-global-color-accent);
  border-radius: 4px;
}

button.single_add_to_cart_button.button.alt:hover {
  background-color: var(--e-global-color-primary);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled {
  background-color: var(--e-global-color-accent);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover {
  background-color: var(--e-global-color-primary);
}

button.single_add_to_cart_button.button.alt {
  background-color: var(--e-global-color-accent);
  border-radius: 4px;
  padding: 16px 24px;
  font-size: 18px;
}

/* Mehr Spezifität: Klasse verdoppeln + Kontext */
.single-product .custom-single-product .rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term.rtwpvs-term.rtwpvs-button-term:hover,
.single-product .custom-single-product .rtwpvs .rtwpvs-terms-wrapper .rtwpvs-term.rtwpvs-term.rtwpvs-button-term.selected:hover {
  background-color: black !important;
  box-shadow: 0 0 0 3px #000 !important;
}

.ls-related-container {
  display: flex;
  justify-content: center;
  background-color: white;
  border-top: 1px solid #ebebeb;
  margin-top: 64px;
}

section.ls-related {
  margin-bottom: 64px;
margin-top: 32px;
  max-width: 1440px;
}

.ls-related__title {
  font-size: 32px;
  font-family: var(--e-global-typography-primary-font-family);
  color: var(--e-global-color-primary, #000);
  font-weight: 600;
}

del span.woocommerce-Price-amount.amount bdi {
  color: var(--e-global-color-497f867, #777);
}

ins {
  text-decoration: none;
}

img.pbdruckbar {
  height: 50px !important;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .ls-related-container {
    padding: 1rem;
  }

  .ls-related__title {
    font-size: 18px;
    margin-bottom: 2rem !important;
  }
}


.ls-payments-wrapper {
  border: 1px solid #ebebeb;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

@media (max-width: 768px) {
  .ls-payments-wrapper {
    padding: 0.5rem;
    width: 100%;
  }
}

.ls-payments-message {
  font-weight: 500;
  font-size: 14px;
  margin-top: -1.25rem;
  background-color: white;
  padding: 0px 16px;
  color: #939393;
}
.ls-payments__icon {
    display: block;
    height: 30px !important;
    width: auto;
}
ul.ls-payments {
  margin-top: -10px;
}
h3.wc-gzd-product-manufacturer-heading.variation_modified.variation_gzd_modified {
    font-size: 16px;
    font-weight: 600;
}
.price-tax-info {
  font-size: 12px;
}
p.price {
    margin: 0;
}
/* ------------------------------------------------------------------
   Checkout Template Styles
   ------------------------------------------------------------------ */

/* ===== Global ===== */
.wc-block-checkout,
.wc-block-checkout * {
  font-family: "Sashimi", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
/*PayPal Express Buttons Fix*/
iframe#jsx-iframe-d0eb4646dd, iframe#jsx-iframe-18d6df0963 {
    z-index: 1 !important;
}

/* ===== Headings ===== */
.wc-block-checkout .wc-block-components-checkout-step__title,
.wc-block-checkout .wc-block-components-checkout-order-summary__title-text {
  color: var(--e-global-color-primary);
}

/* ===== Inputs (Wrapper stylen – nicht das Input selbst) ===== */
.wc-block-checkout .wc-block-components-text-input,
.wc-block-checkout .wc-block-components-country-input,
.wc-block-checkout .wc-blocks-components-select__container {
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
  background-clip: padding-box;
}

.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea,
.wc-block-checkout .wc-blocks-components-select__select {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent;
}

.wc-block-checkout .wc-block-components-text-input:focus-within,
.wc-block-checkout .wc-blocks-components-select__container:focus-within {
  border-color: #ebebeb !important;
  box-shadow: none !important;
}

/* ===== Shipping: "Kostenlos" Badge ===== */
.wc-block-components-local-pickup-select .wc-block-components-radio-control__secondary-label em,
.wc-block-checkout .wc-block-checkout__shipping-option--free {
  color: var(--e-global-color-dc44792) !important;
  text-transform: capitalize !important;
}

/* ===== Radio/Checkbox/Option-Karten (Versand & Zahlung) ===== */
.wc-block-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option {
  border: 1px solid #ebebeb !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Letztes Element: unten rund */
.wc-block-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option:last-child,
.wc-block-checkout .wc-block-checkout__shipping-method-option:last-child {
  border-bottom-left-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

/* Inputs selbst ohne Border */
.wc-block-checkout .wc-block-components-radio-control__input,
.wc-block-checkout .wc-block-components-checkbox__input {
  border: 1px solid #d3d3d3 !important;
  box-shadow: none !important;
}

/* Accordion-Content ohne eigenen Rahmen */
.wc-block-checkout .wc-block-components-radio-control-accordion-content {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* ===== Address Cards / Panel Buttons ===== */
.wc-block-checkout .wc-block-components-address-card {
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
}

/* ===== Order Summary / Totals ===== */

.wc-block-checkout .wc-block-components-order-summary__content,
.wc-block-checkout .wc-block-components-order-summary-item,
.wc-block-checkout .wc-block-components-totals-item,
.wc-block-checkout .wc-block-components-totals-footer-item {
  border: 0 !important;
}

.wc-block-checkout .wc-block-components-order-summary-item+.wc-block-components-order-summary-item {
  border-top: 1px solid #ebebeb !important;
}

.wc-block-checkout .wc-block-components-totals-wrapper .wc-block-components-totals-item+.wc-block-components-totals-item {
  border-top: 1px solid #ebebeb !important;
}

/* ===== Tabellen (Fallback) ===== */
.wc-block-checkout table {
  border: 1px solid #ebebeb;
  border-radius: 3px;
  border-collapse: separate;
  border-spacing: 0;
}

.wc-block-checkout th,
.wc-block-checkout td {
  border: 0;
}

.wc-block-checkout tr+tr td,
.wc-block-checkout tr+tr th {
  border-top: 1px solid #ebebeb;
}

.wc-block-components-address-card__edit:hover,
.wc-block-components-address-card__edit:focus,
.wc-block-components-address-card__edit:active {
  background-color: transparent;
  color: unset;
}

.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border: 1px solid var(--e-global-color-primary);
}

.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  box-shadow: none !important;
}

.wc-block-components-checkout-step__content .wc-block-components-radio-control-accordion-option {
  border-radius: 0px 0px 0px 0px;
}

/* Erstes Element: oben rund */
.wc-block-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option:first-child,
.wc-block-checkout .wc-block-checkout__shipping-method-option:first-child {
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
}

.wc-block-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option:last-child,
.wc-block-checkout .wc-block-checkout__shipping-method-option:last-child {
  border-bottom-left-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.wp-block-woocommerce-checkout-order-summary-shipping-block.wc-block-components-totals-wrapper.wc-gzd-show-total-wrapper {
  border: none !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
  border: none !important;
}

.wc-block-components-order-summary.is-large {
  border: none !important;
  padding: 0px 0px 16px 0px !important;
}

.wc-block-components-checkout-order-summary__title {
  display: none !important;
}

h3.wc-block-components-product-name {
  color: var(--e-global-color-primary) !important;
  font-weight: 600 !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  color: white !important;
  border: none !important;
  background: var(--e-global-color-primary) !important;
}

li.wc-block-components-product-details__farbe.wc-not-gzd-summary-item-first {
  margin: 0px !important;

}

.wc-block-components-product-details {
  font-weight: 400;
  color: #555555;
}

.wc-block-checkout .wc-block-checkout__shipping-method-option {
  border: none !important;
}

.wc-block-components-totals-coupon.wc-block-components-panel {
  padding: 0px !important;
}

.wc-block-checkout .wc-block-components-panel__button {
  border: none !important;
  border-radius: 3px !important;
}

.wc-block-components-totals-item {
  padding: 0px !important;
}


button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
  background-color: var(--e-global-color-primary) !important;
  color: white;
  border: none !important;
}

.wc-block-components-totals-item__value strong {
  text-transform: capitalize !important;
}

p.wc-block-components-totals-footer-item-tax {
  color: #555555;
  font-weight: 400 !important;
  font-size: 0.85rem !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:focus,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:active {
  background-color: var(--e-global-color-accent) !important;
  color: white;
  border: none !important;
  font-weight: 600 !important;
}

a.wc-block-components-checkout-return-to-cart-button {
  display: none !important;
}

button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  width: 100%;
}

.wc-block-components-totals-discount .wc-block-components-totals-item__value {
  color: var(--e-global-color-dc44792) !important;
}

label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked.wc-block-components-radio-control__option--checked-option-highlighted {
  border: 1px solid var(--e-global-color-primary) !important;
  border-radius: 3px !important;
}

.wc-block-components-radio-control-accordion-content {
  margin-top: 8px;
}

.wp-block-woocommerce-checkout.wc-gzd-checkout.wc-gzd-checkout-has-custom-submit.alignwide.wc-block-checkout {
  margin-bottom: 5rem;
}

/*Notices*/

.woocommerce-info {
  font-weight: 400;
  border-top-color: var(--e-global-color-accent);
  border-radius: 0px 0px 4px 4px;
}

.woocommerce-info::before {
  color: var(--e-global-color-accent);
}

/*Register*/

/* My Account > Login & Registrierung */

/* Text- und E-Mail-Felder */
.woocommerce-account .woocommerce-form-login input.input-text,
.woocommerce-account .woocommerce-form-register input.input-text {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Passwort-Feld: Wrapper rahmen */
.woocommerce-account .woocommerce-form-login .password-input {
  position: relative;
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
}

.woocommerce-account .woocommerce-form-login .password-input input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Pflichtstern */
.woocommerce-account .required {
  color: var(--e-global-color-dc44792, #d33) !important;
}

/* Buttons Login + Registrieren */
.woocommerce-account .woocommerce-form-login button.woocommerce-form-login__submit,
.woocommerce-account .woocommerce-form-register button.woocommerce-form-register__submit {
  background-color: var(--e-global-color-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  padding: 12px 16px;
  cursor: pointer;
}

.woocommerce-account .woocommerce-form-login button.woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce-form-register button.woocommerce-form-register__submit:hover {
  filter: brightness(0.95);
}

/* My Account > Passwort zurücksetzen */

/* Eingabefeld */
.woocommerce-account .woocommerce-ResetPassword input.input-text {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Pflichtstern */
.woocommerce-account .woocommerce-ResetPassword .required {
  color: var(--e-global-color-dc44792, #d33) !important;
}

/* Button */
.woocommerce-account .woocommerce-ResetPassword button.woocommerce-Button {
  background-color: var(--e-global-color-accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 3px !important;
  font-weight: 600 !important;
  padding: 12px 16px;
  cursor: pointer;
}

.woocommerce-account .woocommerce-ResetPassword button.woocommerce-Button:hover {
  filter: brightness(0.95);
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #ebebeb;
}

/************* Wishlist ***********************/

/* === Toggle Pill clean === */
.lsw-toggle-wrap {
  display: flex;
  justify-content: flex-end;
}

/* Container */
.lsw-toggle-ui {
  --pill-w: 96px;
  --pill-h: 36px;
  --thumb-w: 48px;
  --thumb-pad: 2px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: var(--pill-w);
  height: var(--pill-h);
  padding: 0 var(--thumb-pad);
  background: #efefef;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
}

.lsw-toggle-input {
  position: absolute;
  left: -9999px;
}

/* Icons */
.lsw-icon {
  position: relative;
  z-index: 2;
  line-height: 0;
  display: flex;
  align-items: center;
}

.lsw-toggle-ui i {
  font-size: 16px;
  color: #111;
}

/* Thumb */
.lsw-thumb {
  position: absolute;
  top: var(--thumb-pad);
  left: var(--thumb-pad);
  width: var(--thumb-w);
  height: calc(var(--pill-h) - var(--thumb-pad)*2);
  background: var(--e-global-color-primary);
  border-radius: 999px;
  z-index: 1;
  transform: translateX(0);
  transition: transform .18s ease;
}

/* === Aktiver Zustand über Klasse .checked === */

/* Thumb nach rechts */
.lsw-toggle-ui.checked .lsw-thumb {
  transform: translateX(calc(var(--pill-w) - (var(--thumb-pad)*2 + var(--thumb-w))));
}

/* Icons einfärben */
.lsw-toggle-ui:not(.checked) .lsw-icon-cart i {
  color: #fff;
}

.lsw-toggle-ui.checked .lsw-icon-heart i {
  color: #fff;
}

/* Count im Herz sichtbar */
.lsw-toggle-ui .lsw-count {
  display: none;
}

.lsw-toggle-ui.checked .lsw-count {
  display: block;
  position: absolute;
  right: calc(var(--thumb-pad) + 10px);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
}


/* Falls du den Count auch im inaktiven Zustand neben dem Herz sehen willst, lösche die beiden display-Regeln oben
   und nutze stattdessen:
   .lsw-toggle-input:not(:checked) + .lsw-toggle-ui .lsw-count{ position:static; margin-left:4px; color:#111; } */

/* Safety: Views sicher verstecken */
.lsw-views [hidden],
.lsw-views .is-hidden {
  display: none !important;
}

span.lsw-count {
  display: none !important;
}

span.lsw-icon.lsw-icon-cart {
  margin-left: 15px;
}

span.lsw-icon.lsw-icon-heart {
  margin-right: 16px;
}

.lsw-header {
  display: flex;
  justify-content: space-between;
  margin-right: 40px;
  margin-top: -49px;
  margin-bottom: 24px;
}


span.lsw-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--e-global-color-primary);
}

.js-lsw-view-cart {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 88dvh;
}

/* Herz-Buttons im aktiven Zustand */
.btn-wishlist.is-active,
.ls-wishlist-icon.is-active {
  background: var(--e-global-color-primary);
  /* oder #ff0000 */
}

.btn-wishlist.is-active i,
.ls-wishlist-icon.is-active i {
  color: #ffffff;
}

/* Standard Herz aktiv */
.ls-wishlist-icon.is-active i.ti-heart,
.btn-wishlist.is-active i.ti-heart {
  display: inline-block;
}

/* Auf Hover → Icon austauschen */
.ls-wishlist-icon.is-active:hover i.ti-heart::before,
.btn-wishlist.is-active:hover i.ti-heart::before {
  content: "\e635";
  /* Unicode für ti-heart-broken */
}

/* Optional: Basis-Style + Transition (falls du noch keinen hast) */
.btn-wishlist,
.ls-wishlist-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  /* anpassen, falls nötig */
  transition: background-color .15s ease, color .15s ease;
}

a.button.lsw-register,
a.button.lsw-register:hover {
  background-color: #083F499E;
  color: white;
}

a.button.lsw-login,
a.button.lsw-login:hover {
  background-color: var(--e-global-color-primary);
  color: #ffffff;
}

.lsw-actions a {
  padding: 16px 24px !important;
  text-align: center;
}

.lsw-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


button.single_add_to_cart_button.button.alt {
    max-width: 380px;
}


.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
    display: flex;
    justify-content: center;
}

button.ls-info-btn {
    width: 100%;
    min-width: 360px;
}

td.value {
    padding: 1rem 0px;
    width: 380px;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
td.value {

    width: unset;

}
}

.rtwpvs-term.rtwpvs-button-term {
    width: 100%!important;
}
.rtwpvs-terms-wrapper.button-variable-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 420px;
  justify-content: flex-start!important;
}

.rtwpvs-terms-wrapper.button-variable-wrapper > * {
  flex: 1 1 calc((100% - 50px) / 6); /* Standard: 6 Items */
}

/* 1 Element */
.rtwpvs-terms-wrapper.button-variable-wrapper > *:only-child {
  flex: 1 1 100%;
}

/* 2 Elemente */
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(2),
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(2) ~ * {
  flex: 1 1 calc((100% - 10px) / 2);
}

/* 3 Elemente */
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(3),
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(3) ~ * {
  flex: 1 1 calc((100% - 20px) / 3);
}

/* 4 Elemente */
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(4),
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(4) ~ * {
  flex: 1 1 calc((100% - 30px) / 4);
}

/* 5 Elemente */
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(5),
.rtwpvs-terms-wrapper.button-variable-wrapper > *:first-child:nth-last-child(5) ~ * {
  flex: 1 1 calc((100% - 40px) / 5);
}


.rtwpvs-terms-wrapper.color-variable-wrapper {
    justify-content: start;
}

.ls-payments-wrapper {
    width: 100%;
    max-width: 380px;
}


/*Thank you page*/

table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    border: 0px;
}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    padding: 0;
}
.woocommerce-order {
    margin-top: 2rem;
    font-family: 'Sashimi', sans--serif;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ebebeb;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details th,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td {
  border: 1px solid #ebebeb;
  padding: 10px;
  text-align: left;
}

/* Ecken abrunden */
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr:last-child th:first-child {
  border-bottom-left-radius: 8px;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details td {
  background-color: white;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr:first-child th,
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot tr:first-child td {
  border-top: 1px solid #ebebeb; /* stärkere Trennung */
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot {
  position: relative;
}

.woocommerce-table.woocommerce-table--order-details.shop_table.order_details tfoot::before {
  content: "";
  display: block;
  height: 1rem;          /* Abstand */
}

section.woocommerce-customer-details h2 {
    font-size: 24px;
}

.woocommerce .woocommerce-customer-details address {
    border: 0px;
    padding: 0px;
}

p.woocommerce-customer-details--phone:before, p.woocommerce-customer-details--email:before{
    display: none!important;
}
p.woocommerce-customer-details--phone, p.woocommerce-customer-details--email {
    padding: 0 !important;
}

p.woocommerce-customer-details--phone {
  margin:0;
}
@media (max-width: 768px) {
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    display: flex
;
    flex-direction: column;
    gap: 1rem;
}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
    border: 0;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    margin-bottom: 0rem;
}
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    margin-bottom: 2rem;
}

p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color:var(--e-global-color-primary)
}

.wc-gzd-checkout .is-large .wc-gzd-checkout-submit {
    margin-top: 1em;
    position: sticky;
    top: 150px!important;
}


.wp-block-woocommerce-checkout.wc-gzd-checkout.wc-gzd-checkout-has-custom-submit.alignwide.wc-block-checkout {
    padding: 1rem;
}