/* Header */
.tm-header {
	
	.uk-navbar-right {
		flex-direction: row-reverse;
        margin-left: 5%;
        justify-content: space-between;
		width: 100%;
	}
	
	
	> .uk-sticky-fixed {
    	box-shadow: 0px 0px 13px hsl(0deg 0% 0% / 13%);
	}
}


/* Header -> Toolbar */
.tm-toolbar {
	
	.uk-grid {
		gap: 50px;
	}
}

/* Topbar Contact Details */
.topbar-contact {
	display: flex;
  	column-gap: 20px;
}

/* Borders */
:root {
  --cw-radius-sm: 8px;
  --cw-radius-md: 12px;
  --cw-radius-lg: 16px;
  --cw-radius-xl: 20px;
}

.cw-radius-sm,
.radius-sm,
.sm-border-radius {
  --cw-radius-current: var(--cw-radius-sm);
}

.cw-radius-md,
.radius-md,
.md-border-radius {
  --cw-radius-current: var(--cw-radius-md);
}

.cw-radius-lg,
.radius-lg,
.lg-border-radius {
  --cw-radius-current: var(--cw-radius-lg);
}

.cw-radius-xl,
.radius-xl,
.xl-border-radius {
  --cw-radius-current: var(--cw-radius-xl);
}

.cw-radius-sm,
.radius-sm,
.sm-border-radius,
.cw-radius-md,
.radius-md,
.md-border-radius,
.cw-radius-lg,
.radius-lg,
.lg-border-radius,
.cw-radius-xl,
.radius-xl,
.xl-border-radius,
.cw-radius-sm > :first-child,
.radius-sm > :first-child,
.sm-border-radius > :first-child,
.cw-radius-md > :first-child,
.radius-md > :first-child,
.md-border-radius > :first-child,
.cw-radius-lg > :first-child,
.radius-lg > :first-child,
.lg-border-radius > :first-child,
.cw-radius-xl > :first-child,
.radius-xl > :first-child,
.xl-border-radius > :first-child,
.cw-radius-sm.uk-grid-item-match > * > :first-child,
.radius-sm.uk-grid-item-match > * > :first-child,
.sm-border-radius.uk-grid-item-match > * > :first-child,
.cw-radius-md.uk-grid-item-match > * > :first-child,
.radius-md.uk-grid-item-match > * > :first-child,
.md-border-radius.uk-grid-item-match > * > :first-child,
.cw-radius-lg.uk-grid-item-match > * > :first-child,
.radius-lg.uk-grid-item-match > * > :first-child,
.lg-border-radius.uk-grid-item-match > * > :first-child,
.cw-radius-xl.uk-grid-item-match > * > :first-child,
.radius-xl.uk-grid-item-match > * > :first-child,
.xl-border-radius.uk-grid-item-match > * > :first-child,
.cw-radius-sm.uk-grid-match > * > :first-child,
.radius-sm.uk-grid-match > * > :first-child,
.sm-border-radius.uk-grid-match > * > :first-child,
.cw-radius-md.uk-grid-match > * > :first-child,
.radius-md.uk-grid-match > * > :first-child,
.md-border-radius.uk-grid-match > * > :first-child,
.cw-radius-lg.uk-grid-match > * > :first-child,
.radius-lg.uk-grid-match > * > :first-child,
.lg-border-radius.uk-grid-match > * > :first-child,
.cw-radius-xl.uk-grid-match > * > :first-child,
.radius-xl.uk-grid-match > * > :first-child,
.xl-border-radius.uk-grid-match > * > :first-child {
  border-radius: var(--cw-radius-current);
  overflow: clip;
}

.cw-radius-sm .uk-background-cover,
.radius-sm .uk-background-cover,
.sm-border-radius .uk-background-cover,
.cw-radius-md .uk-background-cover,
.radius-md .uk-background-cover,
.md-border-radius .uk-background-cover,
.cw-radius-lg .uk-background-cover,
.radius-lg .uk-background-cover,
.lg-border-radius .uk-background-cover,
.cw-radius-xl .uk-background-cover,
.radius-xl .uk-background-cover,
.xl-border-radius .uk-background-cover {
  border-radius: inherit;
}

/* Layout */
.minh-col {
  min-height: 400px;
}

@media (max-width: 980px) {
  .minh-col {
    min-height: 280px;
  }
}

/* Expandable Panels Element */
.el-expandable-panels {
  --el-expandable-panels-height: 226px;
  --el-expandable-panels-min-height: 0px;
  --el-expandable-panels-collapsed-width: 68px;
  --el-expandable-panels-gap: 16px;
  --el-expandable-panels-duration: 400ms;
  --el-expandable-panels-panel-count: 3;
  --el-expandable-panels-expanded-ratio: 1 / 1;
}

.el-expandable-panels__gallery {
  width: 100%;
  height: var(--el-expandable-panels-height);
  min-height: var(--el-expandable-panels-min-height);
  display: flex;
  align-items: stretch;
  gap: var(--el-expandable-panels-gap);
}

.el-expandable-panels.is-full-height,
.el-expandable-panels.is-full-height .el-expandable-panels__gallery {
  height: 100%;
}

.el-expandable-panels__panel {
  position: relative;
  flex: 0 0 var(--el-expandable-panels-collapsed-width);
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  background: #d9d9d9;
  border: 0;
  padding: 0;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  transition: flex-basis var(--el-expandable-panels-duration) ease, flex-grow var(--el-expandable-panels-duration) ease;
  will-change: flex-basis, flex-grow;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.el-expandable-panels__panel.is-active {
  flex: 1 0 var(--el-expandable-panels-collapsed-width);
}

/* Fill Available Width mode: keep basis fixed and animate only growth */
.el-expandable-panels:not(.has-expanded-ratio) .el-expandable-panels__panel {
  flex-basis: var(--el-expandable-panels-collapsed-width);
  flex-shrink: 0;
  flex-grow: 0;
  transition: flex-grow var(--el-expandable-panels-duration) ease;
  will-change: flex-grow;
}

.el-expandable-panels:not(.has-expanded-ratio) .el-expandable-panels__panel.is-active {
  flex-grow: 1;
}

.el-expandable-panels.has-expanded-ratio .el-expandable-panels__panel.is-active {
  flex: 0 0 auto;
  width: auto;
  aspect-ratio: var(--el-expandable-panels-expanded-ratio);
  max-width: calc(100% - ((var(--el-expandable-panels-panel-count) - 1) * (var(--el-expandable-panels-collapsed-width) + var(--el-expandable-panels-gap))));
}

.el-expandable-panels__panel:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.55);
  outline-offset: 2px;
}

.el-expandable-panels__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.el-expandable-panels__text-expanded,
.el-expandable-panels__text-collapsed {
  position: absolute;
  z-index: 2;
  color: #111111;
  margin: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform var(--el-expandable-panels-duration) ease;
}

.el-expandable-panels__text-expanded {
  left: 12px;
  right: 12px;
  bottom: 12px;
  font-size: 15px;
  line-height: 1.15;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
}

.el-expandable-panels__panel.is-active .el-expandable-panels__text-expanded {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}

.el-expandable-panels__text-collapsed {
  top: 50%;
  left: 50%;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 1;
}

.el-expandable-panels__panel.is-active .el-expandable-panels__text-collapsed {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.96);
}

.quote-heading::before {
    content: '“';
    display: block;
    font-size: 72px;
    line-height: 1;
}

@media (max-width: 767px) {
  .el-expandable-panels__gallery {
    gap: min(var(--el-expandable-panels-gap), 12px);
  }

  .el-expandable-panels__panel {
    flex-basis: min(var(--el-expandable-panels-collapsed-width), 20vw);
  }
}

/* =============================================================================
   Consolidated Feldora CSS
   ============================================================================= */


/* === Feldora Product Slider (feldora-product-slider.css) === */
.cw-feldora-product-slider {
  --cw-fps-card-width: 29.18%;
  --cw-fps-image-height: 220px;
  --cw-fps-gap: 24px;
  --cw-fps-radius: 22px;
  --cw-fps-nav-offset: 20px;
  --cw-fps-dot-margin: 30px;
  --cw-fps-accent: #1f8a5b;
  position: relative;
  width: 100%;
}

.cw-feldora-product-slider__stage {
  overflow: visible;
}

.cw-feldora-product-slider__container {
  overflow: hidden;
  padding: 8px 2px;
}

.cw-feldora-product-slider--end-to-end .cw-feldora-product-slider__container {
  overflow: visible;
}

.cw-feldora-product-slider__items {
  display: flex;
  gap: var(--cw-fps-gap);
  align-items: stretch;
}

.cw-feldora-product-slider__item {
  width: var(--cw-fps-card-width);
  flex: 0 0 auto;
  max-width: calc(100vw - 48px);
  display: flex;
}

.cw-feldora-product-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: var(--cw-fpc-card-border, 1px solid rgba(17, 17, 17, 0.07));
  border-radius: var(--cw-fpc-card-radius, var(--cw-fps-radius));
  background: var(--cw-fpc-card-background, #fff);
  box-shadow: var(--cw-fpc-card-shadow, none);
  color: #111;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1), transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cw-feldora-product-card:hover,
.cw-feldora-product-card:focus {
  color: #111;
  text-decoration: none;
}

.cw-feldora-product-card:focus-visible {
  outline: 2px solid #1f8a5b;
  outline-offset: 4px;
}

.cw-feldora-product-card:hover {
  transform: translateY(calc(var(--cw-fpc-hover-lift, 6px) * -1));
}

.cw-feldora-product-card__media {
  position: relative;
  height: var(--cw-fpc-image-height, var(--cw-fps-image-height));
  flex: 0 0 auto;
  overflow: hidden;
}

.cw-feldora-product-card__media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cw-feldora-product-card:hover .cw-feldora-product-card__media img {
  transform: scale(1.04);
}

.cw-feldora-product-card__badge {
  position: absolute;
  z-index: 2;
  top: var(--cw-fpc-badge-top, 16px);
  left: var(--cw-fpc-badge-left, 16px);
  display: inline-flex;
  align-items: center;
  padding: var(--cw-fpc-badge-padding, 8px 13px);
  border: 1px solid var(--cw-fpc-badge-border-color, rgba(17, 17, 17, 0.08));
  border-radius: 50px;
  background: var(--cw-fpc-badge-background, #fff);
  color: var(--cw-fpc-badge-color, #111);
  font-family: var(--cw-fpc-badge-font-family, "Museo Sans", sans-serif);
  font-size: var(--cw-fpc-badge-font-size, 11px);
  font-weight: var(--cw-fpc-badge-font-weight, 500);
  line-height: 1;
  letter-spacing: var(--cw-fpc-badge-letter-spacing, 0.14em);
  text-transform: uppercase;
  pointer-events: none;
}

.cw-feldora-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--cw-fpc-content-padding, 26px 28px 30px);
}

.cw-feldora-product-card__kicker {
  display: flex;
  align-items: center;
  gap: var(--cw-fpc-kicker-gap, 12px);
  margin-bottom: var(--cw-fpc-kicker-margin-bottom, 14px);
}

.cw-feldora-product-card__icon {
  width: var(--cw-fpc-icon-size, 44px);
  height: var(--cw-fpc-icon-size, 44px);
  flex: 0 0 var(--cw-fpc-icon-size, 44px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--cw-fpc-icon-radius, 12px);
}

.cw-feldora-product-card__icon svg {
  width: var(--cw-fpc-icon-svg-size, 23px);
  height: var(--cw-fpc-icon-svg-size, 23px);
  display: block;
}

.cw-feldora-product-card__varieties {
  font-family: var(--cw-fpc-varieties-font-family, "Museo Sans", sans-serif);
  font-size: var(--cw-fpc-varieties-font-size, 11px);
  font-weight: var(--cw-fpc-varieties-font-weight, 500);
  line-height: 1;
  letter-spacing: var(--cw-fpc-varieties-letter-spacing, 0.16em);
  text-transform: uppercase;
}

.cw-feldora-product-card__title {
  margin: var(--cw-fpc-title-margin, 20px 0 10px);
  color: var(--cw-fpc-title-color, #111);
}

.cw-feldora-product-card__description {
  margin: 0 0 var(--cw-fpc-description-margin-bottom, 20px);
  color: var(--cw-fpc-body-color, #5c636b);
  font-family: var(--cw-fpc-body-font-family, "Museo Sans", sans-serif);
  font-size: var(--cw-fpc-body-font-size, 16px);
  font-weight: var(--cw-fpc-body-font-weight, 300);
  line-height: var(--cw-fpc-body-line-height, 24px);
  text-wrap: pretty;
}

.cw-feldora-product-card__description > :first-child {
  margin-top: 0;
}

.cw-feldora-product-card__description > :last-child {
  margin-bottom: 0;
}

.cw-feldora-product-card__link {
  margin-top: auto;
  color: var(--cw-fpc-link-color, #1f8a5b);
  font-family: var(--cw-fpc-link-font-family, "Museo Sans", sans-serif);
  font-size: var(--cw-fpc-link-font-size, inherit);
  font-weight: var(--cw-fpc-link-font-weight, 500);
}

.cw-feldora-product-card:hover .cw-feldora-product-card__link {
  gap: 13px;
  color: var(--cw-fpc-link-hover-color, #176e3a);
}

.cw-feldora-product-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.cw-feldora-product-slider__nav:hover,
.cw-feldora-product-slider__nav:focus-visible {
  border-color: var(--cw-fps-accent);
  color: var(--cw-fps-accent);
}

.cw-feldora-product-slider__nav--prev {
  left: calc(var(--cw-fps-nav-offset) * -1);
}

.cw-feldora-product-slider__nav--next {
  right: calc(var(--cw-fps-nav-offset) * -1);
}

.cw-feldora-product-slider .cw-feldora-product-slider__dotnav {
  gap: 8px;
  margin-left: 0 !important;
  margin-top: var(--cw-fps-dot-margin) !important;
}

.cw-feldora-product-slider .cw-feldora-product-slider__dotnav > * {
  padding-left: 0 !important;
}

.cw-feldora-product-slider .cw-feldora-product-slider__dotnav > * > * {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 9px;
  background: rgba(17, 17, 17, 0.16);
  transition: all 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cw-feldora-product-slider .cw-feldora-product-slider__dotnav > .uk-active > * {
  width: 28px;
  background: var(--cw-fps-accent);
}

@media (max-width: 959px) {
  .cw-feldora-product-slider__nav--prev {
    left: 8px;
  }

  .cw-feldora-product-slider__nav--next {
    right: 8px;
  }
}

@media (max-width: 639px) {
  .cw-feldora-product-slider {
    --cw-fps-image-height: min(220px, 58vw);
  }

  .cw-feldora-product-slider .cw-feldora-product-card__body {
    padding: var(--cw-fpc-content-padding, 22px 22px 26px);
  }

  .cw-feldora-product-slider__item {
    width: calc(100vw - 48px);
  }

  .cw-feldora-product-slider__nav {
    display: none;
  }
}
/* === End Feldora Product Slider === */


/* === Feldora Product Grid (feldora-product-grid.css) === */
.cw-feldora-product-grid {
  width: 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.cw-feldora-product-grid__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.cw-feldora-product-grid__toolbar .woocommerce-result-count {
  margin: 0;
  color: #5c636b;
  font-family: "Museo Sans", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.cw-feldora-product-grid__toolbar .woocommerce-ordering {
  position: relative;
  display: inline-flex;
  margin: 0;
  z-index: 20;
}

.cw-feldora-ordering__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #1f8a5b;
  border-bottom: 1.5px solid #1f8a5b;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.cw-feldora-ordering.is-open .cw-feldora-ordering__button::after {
  transform: translateY(-30%) rotate(225deg);
}

.cw-feldora-product-grid__toolbar .orderby,
.cw-feldora-ordering__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 282px;
  height: 46px;
  padding: 0 68px 0 20px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.04);
  color: #2b2f34;
  font-family: "Museo Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 46px;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.cw-feldora-ordering__button {
  justify-content: space-between;
}

.cw-feldora-product-grid__toolbar .orderby:hover,
.cw-feldora-ordering__button:hover,
.cw-feldora-ordering.is-open .cw-feldora-ordering__button {
  border-color: rgba(31, 138, 91, 0.36);
  box-shadow: 0 10px 26px rgba(31, 138, 91, 0.08);
  color: #111;
}

.cw-feldora-product-grid__toolbar .orderby:focus-visible,
.cw-feldora-ordering__button:focus-visible {
  outline: 0;
  border-color: #1f8a5b;
  box-shadow: 0 0 0 3px rgba(31, 138, 91, 0.14), 0 10px 26px rgba(31, 138, 91, 0.08);
}

.cw-feldora-ordering__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 282px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(31, 138, 91, 0.2);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.12);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.cw-feldora-ordering.is-open .cw-feldora-ordering__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cw-feldora-ordering__item {
  margin: 0;
  padding: 0;
}

.cw-feldora-ordering__option {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  color: #2b2f34;
  font-family: "Museo Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.cw-feldora-ordering__option:hover,
.cw-feldora-ordering__option:focus-visible {
  outline: 0;
  background: rgba(31, 138, 91, 0.08);
  color: #176e3a;
}

.cw-feldora-ordering__option.is-current {
  background: #1f8a5b;
  color: #fff;
}

.cw-feldora-product-grid .woocommerce-pagination {
  margin-top: 34px;
}

.cw-feldora-product-grid .woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 !important;
  padding: 0;
  border: 0;
  list-style: none;
}

.cw-feldora-product-grid .woocommerce-pagination li {
  margin: 0;
  padding: 0 !important;
  border: 0;
}

.cw-feldora-product-grid .woocommerce-pagination li > a,
.cw-feldora-product-grid .woocommerce-pagination li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: "Museo Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.cw-feldora-product-grid .woocommerce-pagination li > a.prev,
.cw-feldora-product-grid .woocommerce-pagination li > a.next {
  width: 42px;
  min-width: 42px;
  padding: 0;
}

.cw-feldora-product-grid .woocommerce-pagination li > a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  line-height: 1;
}

.cw-feldora-product-grid .woocommerce-pagination li > a:hover,
.cw-feldora-product-grid .woocommerce-pagination li > a:focus-visible,
.cw-feldora-product-grid .woocommerce-pagination li > .current {
  border-color: #1f8a5b;
  background: #1f8a5b;
  color: #fff;
}

.cw-feldora-product-grid .woocommerce-pagination li > .current {
  min-width: 42px;
  width: 42px;
  padding: 0;
}

main #products .fd-kicker-line-both.fd-kicker-line-both {
  display: flex !important;
  width: fit-content;
  max-width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
}

.cw-feldora-product-grid__items {
  display: grid;
  grid-template-columns: repeat(var(--cw-fpg-columns-desktop, 3), minmax(0, 1fr));
  column-gap: var(--cw-fpg-column-gap, 24px);
  row-gap: var(--cw-fpg-row-gap, 24px);
  align-items: var(--cw-fpg-align-items, stretch);
  border: 0;
  outline: 0;
  box-shadow: none;
}

.cw-feldora-product-grid__item {
  min-width: 0;
  display: flex;
}

.cw-feldora-product-grid__item > .cw-feldora-product-card {
  height: 100%;
}

.cw-feldora-product-grid .cw-feldora-product-card__title {
  font-family: var(--cw-fpc-title-font-family);
  font-size: var(--cw-fpc-title-font-size);
  font-weight: var(--cw-fpc-title-font-weight);
  line-height: var(--cw-fpc-title-line-height);
}

.cw-feldora-product-grid .cw-feldora-product-card__icon {
  display: none;
}

.cw-feldora-product-grid .cw-feldora-product-card__varieties {
  color: var(--cw-fpc-accent, #1F8A5B);
  font-size: 14px;
  letter-spacing: 0.12em;
}

@media (max-width: 959px) {
  .cw-feldora-product-grid__items {
    grid-template-columns: repeat(var(--cw-fpg-columns-tablet, 2), minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .cw-feldora-product-grid__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .cw-feldora-product-grid__toolbar .orderby {
    width: 100%;
  }

  .cw-feldora-product-grid__toolbar .woocommerce-ordering,
  .cw-feldora-ordering__button,
  .cw-feldora-ordering__menu {
    width: 100%;
  }

  .cw-feldora-product-grid__items {
    grid-template-columns: repeat(var(--cw-fpg-columns-mobile, 1), minmax(0, 1fr));
  }
}

#produkt-anfrage.uk-section {
  background-color: #f3f3f4 !important;
  padding-top: 0;
}

#zusage.uk-section-large {
  padding-bottom: 40px;
}

@media (min-width: 960px) {
  #zusage.uk-section-large {
    padding-bottom: 70px;
  }
}
/* === End Feldora Product Grid === */


/* === Feldora Process Timeline (feldora-process-timeline.css) === */
.fd-process-timeline {
  width: 100%;
  max-width: var(--fd-pt-max-width);
  margin-right: auto;
  margin-left: auto;
  padding: var(--fd-pt-padding-top) var(--fd-pt-padding-x) var(--fd-pt-padding-bottom);
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

.fd-process-timeline__inner {
  position: relative;
  padding-left: var(--fd-pt-gutter);
}

.fd-process-timeline__rail {
  position: absolute;
  left: var(--fd-pt-rail-left);
  top: var(--fd-pt-rail-top);
  bottom: var(--fd-pt-rail-bottom);
  width: var(--fd-pt-rail-width);
  background: linear-gradient(180deg, var(--fd-pt-accent), var(--fd-pt-rail-fade));
  pointer-events: none;
}

.fd-process-step {
  position: relative;
  padding-bottom: var(--fd-pt-item-gap);
  border: 0;
  outline: 0;
}

.fd-process-step:last-child {
  padding-bottom: 0;
}

.fd-process-step__icon {
  position: absolute;
  left: calc(var(--fd-pt-gutter) * -1);
  top: var(--fd-pt-icon-top);
  width: var(--fd-pt-icon-size);
  height: var(--fd-pt-icon-size);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid var(--fd-pt-step-icon-border-color, var(--fd-pt-icon-border-color));
  border-radius: 50%;
  background: var(--fd-pt-step-icon-background, var(--fd-pt-icon-background));
  box-shadow: var(--fd-pt-step-icon-shadow, var(--fd-pt-icon-shadow));
  color: var(--fd-pt-step-icon-color, var(--fd-pt-accent));
}

.fd-process-step__icon svg,
.fd-process-step__icon img {
  width: var(--fd-pt-icon-graphic-size);
  height: var(--fd-pt-icon-graphic-size);
  display: block;
}

.fd-process-step__icon img {
  object-fit: contain;
}

.fd-process-step__content {
  max-width: var(--fd-pt-content-max-width);
}

.fd-process-step__meta {
  margin: 0 0 var(--fd-pt-meta-margin-bottom);
  color: var(--fd-pt-meta-color);
  font-family: var(--fd-pt-meta-font-family);
  font-size: var(--fd-pt-meta-font-size);
  font-weight: var(--fd-pt-meta-font-weight);
  line-height: var(--fd-pt-meta-line-height);
  letter-spacing: var(--fd-pt-meta-letter-spacing);
  text-transform: uppercase;
}

.fd-process-step__title {
  margin: 0 0 var(--fd-pt-title-margin-bottom);
  color: var(--fd-pt-title-color);
  font-family: var(--fd-pt-title-font-family);
  font-size: var(--fd-pt-title-font-size);
  font-weight: var(--fd-pt-title-font-weight);
  line-height: var(--fd-pt-title-line-height);
  letter-spacing: 0;
  text-wrap: pretty;
}

.fd-process-step__body {
  color: var(--fd-pt-body-color);
  font-family: var(--fd-pt-body-font-family);
  font-size: var(--fd-pt-body-font-size);
  font-weight: var(--fd-pt-body-font-weight);
  line-height: var(--fd-pt-body-line-height);
  text-wrap: pretty;
}

.fd-process-step__body > :first-child {
  margin-top: 0;
}

.fd-process-step__body > :last-child {
  margin-bottom: 0;
}

@media (max-width: 639px) {
  .fd-process-timeline {
    padding: var(--fd-pt-mobile-padding-top) var(--fd-pt-mobile-padding-x) var(--fd-pt-mobile-padding-bottom);
  }

  .fd-process-timeline__inner {
    padding-left: var(--fd-pt-mobile-gutter);
  }

  .fd-process-timeline__rail {
    left: var(--fd-pt-mobile-rail-left);
  }

  .fd-process-step {
    padding-bottom: var(--fd-pt-mobile-item-gap);
  }

  .fd-process-step__icon {
    left: calc(var(--fd-pt-mobile-gutter) * -1);
    top: var(--fd-pt-mobile-icon-top);
    width: var(--fd-pt-mobile-icon-size);
    height: var(--fd-pt-mobile-icon-size);
  }

  .fd-process-step__icon svg,
  .fd-process-step__icon img {
    width: var(--fd-pt-mobile-icon-graphic-size);
    height: var(--fd-pt-mobile-icon-graphic-size);
  }

  .fd-process-step__title {
    font-size: var(--fd-pt-mobile-title-font-size);
  }

  .fd-process-step__body {
    font-size: var(--fd-pt-mobile-body-font-size);
    line-height: var(--fd-pt-mobile-body-line-height);
  }
}
/* === End Feldora Process Timeline === */


/* === Feldora Mobile Dialog (feldora-mobile-dialog.css) === */
html.uk-offcanvas-page,
body.uk-offcanvas-container,
#tm-dialog-mobile.uk-open {
    width: calc(100vw + 15px) !important;
    max-width: none !important;
}

#tm-dialog-mobile.uk-open,
#tm-dialog-mobile .uk-offcanvas-bar {
    left: 0 !important;
    right: auto !important;
}

#tm-dialog-mobile .uk-offcanvas-bar {
    width: calc(100vw + 15px) !important;
    max-width: none !important;
    padding: 28px 24px 24px;
    background: #fffaf4;
    color: #111111;
    box-shadow: -20px 0 50px rgba(17, 17, 17, 0.16);
}

#tm-dialog-mobile .uk-offcanvas-close {
    top: 28px;
    right: 24px;
    color: #111111;
}

.admin-bar #tm-dialog-mobile .uk-offcanvas-bar {
    padding-top: 120px;
}

.admin-bar #tm-dialog-mobile .uk-offcanvas-close {
    top: 120px;
}

.admin-bar #tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 {
    min-height: calc(100vh - 160px);
}

#tm-dialog-mobile .uk-margin-auto-bottom {
    margin-bottom: 0 !important;
}

#tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 {
    display: flex;
    min-height: calc(100vh - 76px);
    flex-direction: column;
    gap: 22px;
    margin-left: 0;
    margin-top: 0;
}

#tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 > * {
    width: 100%;
    padding-left: 0;
}

#tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 > div:has(#builderwidget-3) {
    order: 1;
}

#tm-dialog-mobile #builderwidget-3 {
    padding-right: 58px;
}

#tm-dialog-mobile #builderwidget-3 .uk-margin {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
}

#tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 > div:has(#nav_menu-2) {
    order: 2;
}

#tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 > div:has(#builderwidget-4) {
    order: 4;
    margin-top: auto;
}

#tm-dialog-mobile .uk-margin-auto-bottom > .uk-grid.uk-child-width-1-1 > div:has(#builderwidget-6) {
    order: 3;
}

#tm-dialog-mobile .widget_nav_menu .uk-nav {
    display: grid;
    gap: 10px;
    margin: 10px 0 0;
}

#tm-dialog-mobile .widget_nav_menu .uk-nav > li > a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 16px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.7);
    color: #111111;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

#tm-dialog-mobile .widget_nav_menu .uk-nav > li > a::after {
    color: #1f8a5b;
    content: "->";
    font-size: 17px;
}

#tm-dialog-mobile .widget_nav_menu .uk-nav > li.uk-active > a,
#tm-dialog-mobile .widget_nav_menu .uk-nav > li > a:hover {
    border-color: rgba(46, 158, 91, 0.34);
    color: #176e3a;
}

#tm-dialog-mobile #builderwidget-6 {
    margin-top: -8px;
}

#tm-dialog-mobile #builderwidget-6 .uk-button {
    width: 100%;
    min-height: 58px;
    justify-content: center;
    border-radius: 16px;
    background: #2e9e5b;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(31, 138, 91, 0.18);
}

#tm-dialog-mobile #builderwidget-6 .uk-button:hover {
    background: #23884d;
    color: #ffffff;
}

#tm-dialog-mobile #builderwidget-4 {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
    padding-top: 20px;
}

#tm-dialog-mobile #builderwidget-4 .uk-text-meta {
    color: #1f8a5b !important;
}

#tm-dialog-mobile #builderwidget-4 a {
    color: #111111;
}

#tm-dialog-mobile #builderwidget-4 .uk-icon {
    color: #1f8a5b;
}

@media (max-width: 380px) {
    #tm-dialog-mobile .widget_nav_menu .uk-nav > li > a {
        min-height: 54px;
        font-size: 18px;
    }
}
/* === End Feldora Mobile Dialog === */


/* === Feldora Home Hero (feldora-home-hero.css) === */
/* Feldora home hero image repair */
body.home main > .uk-section:first-of-type .uk-grid.tm-grid-expand > .uk-grid-item-match:has(.fd-cert-badge) {
  min-height: min(620px, calc(100vh - 120px));
}

body.home main > .uk-section:first-of-type .uk-grid.tm-grid-expand > .uk-grid-item-match:has(.fd-cert-badge) > .uk-flex,
body.home main > .uk-section:first-of-type .uk-background-cover[data-src="/wp-content/uploads/feldora-hero/ph-wheat.jpg"]:has(.fd-cert-badge) {
  min-height: inherit;
}

body.home main > .uk-section:first-of-type .uk-background-cover[data-src="/wp-content/uploads/feldora-hero/ph-wheat.jpg"]:has(.fd-cert-badge) > .uk-position-cover {
  background-image: linear-gradient(90deg, #fffaf4 0%, rgba(255, 250, 244, 0.16) 22%, rgba(255, 250, 244, 0) 46%) !important;
}

@media (max-width: 959px) {
  body.home main > .uk-section:first-of-type {
    padding-top: 0;
  }

  body.home main > .uk-section:first-of-type .uk-grid.tm-grid-expand > .uk-grid-item-match:has(.fd-cert-badge) {
    order: -1;
    flex: 0 0 100vw;
    width: 100vw;
    max-width: 100vw;
    min-height: 360px;
    margin-left: 16px;
    padding-left: 0;
  }

  body.home main > .uk-section:first-of-type .uk-grid.tm-grid-expand > .uk-grid-item-match:has(.fd-cert-badge) > .uk-flex,
  body.home main > .uk-section:first-of-type .uk-background-cover[data-src="/wp-content/uploads/feldora-hero/ph-wheat.jpg"]:has(.fd-cert-badge) {
    min-height: 360px;
  }

  body.home main > .uk-section:first-of-type .uk-background-cover[data-src="/wp-content/uploads/feldora-hero/ph-wheat.jpg"]:has(.fd-cert-badge) > .uk-position-cover {
    background-image: linear-gradient(180deg, rgba(255, 250, 244, 0) 48%, rgba(255, 250, 244, 0.72) 82%, #fffaf4 100%) !important;
  }

  body.home main > .uk-section:first-of-type .fd-cert-badge {
    left: 24px !important;
    right: 24px;
    bottom: 24px !important;
    width: auto !important;
    max-width: calc(100vw - 48px);
  }

  body.home main > .uk-section:first-of-type .fd-cert-badge .uk-button {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }
}

body.home main > .uk-section:first-of-type .uk-button-secondary {
  background-color: #FFFAF4 !important;
  color: #1F8A5B !important;
  border-color: #1F8A5B !important;
  border-style: solid !important;
  border-width: 2px !important;
}

body.home main > .uk-section:first-of-type .uk-button-secondary:hover,
body.home main > .uk-section:first-of-type .uk-button-secondary:focus {
  background-color: #F7EFE6 !important;
  color: #1F8A5B !important;
  border-color: #1F8A5B !important;
}

body.home #closing-cta .uk-button-secondary {
  background-color: #2E9E5B !important;
  color: #FFFAF4 !important;
  border-color: #2E9E5B !important;
}

body.home #closing-cta .uk-button-secondary:hover,
body.home #closing-cta .uk-button-secondary:focus {
  background-color: #FFFAF4 !important;
  color: #1F8A5B !important;
  border-color: #FFFAF4 !important;
}
/* === End Feldora Home Hero === */


/* === Feldora About Timeline (feldora-about-timeline.css) === */
@media (max-width: 959px) {
    #weg .uk-grid.tm-grid-expand.uk-margin-remove-vertical .uk-width-1-1 > .uk-margin-remove-vertical > .uk-grid {
        position: relative;
    }

    #weg .uk-grid.tm-grid-expand.uk-margin-remove-vertical .uk-width-1-1 > .uk-margin-remove-vertical > .uk-grid::before {
        content: "";
        position: absolute;
        top: 7px;
        bottom: 86px;
        left: 26px;
        width: 2px;
        background: rgba(46, 158, 91, 0.28);
    }

    #weg .uk-grid.tm-grid-expand.uk-margin-remove-vertical .uk-width-1-1 > .uk-margin-remove-vertical > .uk-grid > * {
        position: relative;
        z-index: 1;
    }

    #weg .uk-grid.tm-grid-expand.uk-margin-remove-vertical .el-meta,
    #weg .uk-grid.tm-grid-expand.uk-margin-remove-vertical .el-title,
    #weg .uk-grid.tm-grid-expand.uk-margin-remove-vertical .el-content {
        margin-left: 44px;
    }
}

#about-cta.uk-section {
    padding-top: 0;
}
/* === End Feldora About Timeline === */


/* === Feldora Footer (feldora-footer.css) === */
#contact .uk-text-muted.uk-light {
  color: rgba(255, 250, 244, 0.7) !important;
}
/* === End Feldora Footer === */


/* === Feldora Woo (feldora-woo.css) === */
.wc-block-cart .wc-block-cart-items__header th,
.wc-block-cart .wc-block-cart-items__header span,
.wp-block-woocommerce-cart .wc-block-cart-items__header th,
.wp-block-woocommerce-cart .wc-block-cart-items__header span {
    font-weight: 700 !important;
}

.wc-block-cart .wc-block-components-totals-coupon .wc-block-components-panel__button,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-panel__button {
    font-size: 16px;
    line-height: 24px;
}

.wc-block-cart .wc-block-cart__totals-title,
.wp-block-woocommerce-cart .wc-block-cart__totals-title,
.wc-block-cart .wc-block-components-totals-coupon__input label,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon__input label {
    font-size: 16px;
    line-height: 24px;
}

.wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 16px;
    line-height: 24px;
}

.wc-block-checkout .wc-block-components-totals-coupon .wc-block-components-panel__button,
.wp-block-woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__button,
.wc-block-checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block,
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block,
.wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-size: 16px;
    line-height: 24px;
}

.woocommerce-cart .uk-article-title,
.woocommerce-checkout .uk-article-title,
.woocommerce-account .uk-article-title {
    color: #111111;
    font-family: "Museo Sans", sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0;
}

.single-product #tm-main > .woocommerce-notices-wrapper {
    box-sizing: border-box;
    width: 100%;
    max-width: 1320px;
    margin-top: 28px;
    margin-bottom: 18px;
    margin-right: auto;
    margin-left: auto;
}

.wp-block-woocommerce-empty-cart-block {
    max-width: 100%;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    margin-bottom: 54px;
}

.wp-block-woocommerce-empty-cart-block .fd-empty-cart-products__title {
    margin: 0 0 24px;
    color: #111111;
    font-family: "Museo Sans", sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid {
    margin-top: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    text-align: left;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image {
    position: relative;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #edf2ee;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product:hover .wc-block-grid__product-image img {
    transform: scale(1.035);
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
    margin-left: 26px;
    margin-right: 26px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
    margin-top: 28px;
    margin-bottom: 12px;
    color: #171717;
    font-family: "Museo Sans", sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price {
    order: -1;
    margin-top: 24px;
    margin-bottom: 0;
    color: #1f8a5b;
    font-family: "Museo Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart {
    margin-top: auto;
    margin-bottom: 28px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1f8a5b;
    font-family: "Museo Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link::after {
    content: " →";
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:focus-visible {
    color: #176e3a;
}

@media (max-width: 959px) {
    .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 960px) {
    .woocommerce-cart .uk-article-title,
    .woocommerce-checkout .uk-article-title,
    .woocommerce-account .uk-article-title {
        font-size: 40px;
    }
}
/* === End Feldora Woo === */
