/*
Theme Name: Hello Elementor Child
Theme URI: https://blumen-zovko.de/
Description: Child theme for Hello Elementor
Author: Einzelwerk
Author URI: https:/blumen-zovko.de/
Template: hello-elementor
Version: 1.0.0
*/

/* New Style */

#content {
	padding: 10px;
}

.horizontalList ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.horizontalList ul li {
    position: relative;
    padding-left: 10px;
}

.horizontalList ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 3px;
    height: 3px;
    background-color: #393A37;
    border-radius: 50%;
}

.horizontalList ul li:first-child::before {
    content: none;
}
.horizontalList ul li:first-child {
    padding-left: 0px;
}
.elementor-button-link .elementor-button-icon svg {
    width: 0.7em;
}

/* Kontact Form */
 
/* ===== CF7 FORM — STYLES ===== */

/* Row (два поля рядом) */
.cf7-form-wrapper .cf7-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.cf7-form-wrapper .cf7-row .cf7-field-group {
  flex: 1;
  min-width: 0;
}

/* Убираем лишние отступы у <p> внутри формы */
.cf7-form-wrapper p {
  margin: 0;
}

/* ===== FIELD GROUP ===== */
.cf7-form-wrapper .cf7-field-group {
  margin-bottom: 20px;
}

.cf7-form-wrapper .cf7-field-group > p,
.cf7-form-wrapper .cf7-select-wrapper > p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== LABELS ===== */
.cf7-form-wrapper label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.01em;
	margin-bottom: 8px;
}

/* ===== INPUTS & TEXTAREA ===== */
.cf7-form-wrapper .wpcf7-form-control.wpcf7-text,
.cf7-form-wrapper .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
  transition: box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  box-sizing: border-box;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-text::placeholder,
.cf7-form-wrapper .wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #aaa;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-text:focus,
.cf7-form-wrapper .wpcf7-form-control.wpcf7-textarea:focus {
  box-shadow: 0 0 0 2px rgba(138, 170, 40, 0.35);
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-textarea {
  resize: vertical;
  min-height: 120px;
  rows: unset;
}

/* ===== SELECT ===== */
.cf7-form-wrapper .cf7-select-wrapper {
  position: relative;
}

.cf7-form-wrapper .cf7-select-wrapper > p {
  position: relative;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-select {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 44px 14px 16px;
  font-size: 14px;
  color: #333;
  outline: none;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  display: block;
  box-sizing: border-box;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-select option[value=""] {
  color: #aaa;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-select:focus {
  box-shadow: 0 0 0 2px rgba(138, 170, 40, 0.35);
}

.cf7-form-wrapper .cf7-select-arrow {
  position: absolute;
  right: 16px;
  bottom: 14px;
  pointer-events: none;
  color: #555;
  font-size: 16px;
  line-height: 1;
}

/* ===== CHECKBOX GROUP ===== */
.cf7-form-wrapper .cf7-checkbox-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.cf7-form-wrapper .cf7-checkbox-group .wpcf7-form-control-wrap {
  flex-shrink: 0;
  margin-top: 1px;
}

.cf7-form-wrapper .cf7-checkbox-group .wpcf7-list-item {
  margin: 0;
}

.cf7-form-wrapper .cf7-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  display: block;
}

.cf7-form-wrapper .cf7-checkbox-group input[type="checkbox"]:checked {
  background: #8aaa28;
  border-color: #8aaa28;
}

.cf7-form-wrapper .cf7-checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.cf7-form-wrapper .cf7-checkbox-group label {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}

/* ===== SUBMIT ===== */
.cf7-form-wrapper .wpcf7-form-control.wpcf7-submit {
  width: 100%;
  background: #8aaa28;
  color: #1A1A1A;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.1s ease;
  display: block;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-submit:hover:not([disabled]) {
  background: #7a9822;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-submit:active:not([disabled]) {
  transform: scale(0.99);
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-submit:hover {
      background-color: #EEEEEA!important;
    color: #AFBC21!important;
    border: 1px solid #8aaa28;
}

.zovko-cart-totals .checkout-button:hover, .custom-checkout-wrapper .custom-order-btn:hover {
  background-color: #EEEEEA!important;
    color: #AFBC21!important;
    border: 1px solid #8aaa28!important;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-submit[disabled] {
  opacity: 1;
  cursor: default;
}

/* Spinner рядом с кнопкой */
.cf7-form-wrapper .wpcf7-spinner {
  display: none;
}

/* ===== VALIDATION ERRORS ===== */
.cf7-form-wrapper .wpcf7-not-valid-tip {
  color: #e05252;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.cf7-form-wrapper .wpcf7-form-control.wpcf7-not-valid {
  box-shadow: 0 0 0 2px rgba(224, 82, 82, 0.4);
}

/* ===== RESPONSE OUTPUT ===== */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: #edf5d0;
  color: #4a6b0a;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: #fdecea;
  color: #c0392b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
  .cf7-form-wrapper .cf7-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ===== CF7 SUCCESS MESSAGE ===== */
.wpcf7-response-output {
  display: none !important;
}

.wpcf7-form.sent .cf7-form-wrapper {
  display: none;
}

.cf7-success {
  display: none;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 16px;
}

.wpcf7-form.sent .cf7-success {
  display: block;
}

.cf7-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #edf5d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cf7-success__title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 8px;
}

.cf7-success__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


.elementor-post__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
	padding-bottom: 5px;
	border-bottom: 1px solid #DBDBD6;
}

a.elementor-post__read-more:hover {
	color: #AFBC21!important;
}
.elementor-post__read-more::after {
    content: '';
    width: 11px;
    height: 11px;
    
    background-image: url('/wp-content/uploads/2026/05/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;

    display: inline-block;
}
.elementor-menu-cart__toggle_button {
	padding: 0px!important;
	border: none!important;
}

.elementor-menu-cart__toggle_button .e-font-icon-svg.e-eicon-cart-medium {
	width: 24px;
    height: 24px;
    fill: #1A1A1A;
}
.elementor-menu-cart__toggle_button .elementor-button-icon-qty {
	background-color: #1A1A1A!important;
	font-family: sans-serif!important;
}

.woocommerce .woocommerce-breadcrumb {
	margin: 0!important
}

.listPadding_none ul {
	margin: 0;
    padding: 0px;
    padding-left: 20px;
}



.hidden-select {
	display: none !important; 
}

.custom-size-swatches {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.size-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #f0f0f0;
  cursor: pointer;
  min-width: 110px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid #DBDBD6;
}

.size-card:hover,
.size-card.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.size-card .size-label,
.size-card .size-meta,
.size-card .size-meta strong {
  transition: color 0.2s;
}
.size-label {
	font-weight: 600;
	font-size: 17px;
	line-height: 1;
}
.size-meta {
	font-size: 12px;
	line-height: 1.6;
	opacity: 0.5;
	font-weight: 400;
}
.size-meta strong {
	font-size: 14px;
	font-weight: 500;
	opacity: 1;
	display: block;
}
.size-card.active .size-meta { 
	opacity: 0.6; 
}
.size-card.active .size-meta strong { 
	opacity: 1; 
}

.single-product .variations .value select {
	appearance: none !important;
	-webkit-appearance: none !important;
	background-color: #f0f0f0 !important;
	border: 1px solid #DBDBD6!important;
	border-radius: 20px !important;
	padding: 14px 48px 14px 20px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	min-width: 200px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	color: #111 !important;
	box-shadow: none !important;
	outline: none !important;
	width: auto !important;
	
}
.single-product .quantity {
	display: inline-flex !important;
	align-items: center !important;
	background: #f0f0f0 !important;
	border-radius: 50px !important;
	border: 1px solid #DBDBD6!important;
	padding: 0 4px !important;
	gap: 0 !important;
	height: 56px;
	box-shadow: none !important;
}
.single-product .quantity input.qty {
	border: none!important;
	background: transparent !important;
	width: 36px !important;
	text-align: center !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	box-shadow: none !important;
	padding: 0 !important;
	height: auto !important;
	-moz-appearance: textfield !important;
}
.single-product .quantity input.qty::-webkit-outer-spin-button,
.single-product .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}
.qty-btn {
	background: none !important;
	border: none !important;
	font-size: 22px !important;
	font-weight: 300 !important;
	cursor: pointer !important;
	padding: 10px 14px !important;
	line-height: 1 !important;
	color: #111 !important;
	user-select: none !important;
	box-shadow: none !important;
}
.quantity button {
	height: 100%;
}
.quantity button:focus {
	background-color: transparent!important;
}
.qty-btn:hover { opacity: 0.5 !important; }

.single-product .woocommerce-variation-add-to-cart {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	margin-top: 48px !important;
	flex-wrap: wrap !important;
}

.single-product .single_add_to_cart_button.button {
	background-color: #AFBC21 !important;
	color: #1A1A1A !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 16px 24px !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	cursor: pointer !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	height: auto !important;
	line-height: 1.4 !important;
	box-shadow: none !important;
}
.single-product .single_add_to_cart_button.button:hover {
	background-color: #7aa334 !important;
}

.variations .variation-row {
	display: flex !important;
	flex-direction: column !important;
	gap: 10px !important;
	margin-bottom: 20px !important;
}
.variations .label label {
	font-weight: 400!important;
	font-size: 16px!important;
	line-height: 24px!important;
}
.single_add_to_cart_button.button {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px !important;
}
.cart-btn-price {
	font-weight: 400;
}
:is(.elementor-widget-woocommerce-product-add-to-cart,.woocommerce div.product .elementor-widget-woocommerce-product-add-to-cart,.elementor-widget-wc-add-to-cart,.woocommerce div.product .elementor-widget-wc-add-to-cart) form.cart .button:where(:not(:first-child)), :is(.elementor-widget-woocommerce-product-add-to-cart,.woocommerce div.product .elementor-widget-woocommerce-product-add-to-cart,.elementor-widget-wc-add-to-cart,.woocommerce div.product .elementor-widget-wc-add-to-cart) form.cart button:where(:not(:first-child)) {
	margin-inline-start: var(--button-spacing, 0px)!important;
}

.reset_variations {
    display: none;
}

.reset_variations[style*="visibility: visible"] {
    display: inline-block;
}



.hidden-native-select {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.custom-select-wrapper {
  position: relative;
  width: fit-content;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 20px;
  background: #EEEEEA;
  border-radius: 999px;
  font-size: 14px;
  color: #393A37;
  cursor: pointer;
  transition: background 0.15s;
  border: 1px solid #DBDBD6;
  white-space: nowrap; 
}

.custom-select-trigger:hover { background: #e0e0e0; }

.custom-select-trigger::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg) translateY(-3px);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  transform: rotate(-135deg) translateY(-3px);
}

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%; 
  width: max-content;
  background: #EEEEEA;
  border-radius: 20px;
  border: 1px solid #DBDBD6;
  z-index: 100;
  padding: 16px;
}

.custom-select-wrapper.open .custom-select-dropdown { display: block; }

.custom-select-option {
  font-size: 15px;
  color: #393A37;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 12px;
}

.custom-select-option:last-child {
    margin-bottom: 0;
}

.custom-select-option:hover {color: #9FA19B;}
.custom-select-option.active {color: #9FA19B;}

.custom-select-option[data-value=""] {
  display: block !important;
  color: #999;
}
.product-template-default .product {
	padding-left: 10px;
	padding-right: 10px;
}
.elementor-menu-cart__main {
	margin: 10px;
}
.elementor-menu-cart__product-price.product-price .quantity {
	    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
	height: 0 !important;
}
.elementor-menu-cart__product-image.product-thumbnail img {
	border-radius: 20px;
}



.cf7-select-wrapper {
    position: relative;
}

.cf7-select-wrapper .custom-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    width: max-content;
    z-index: 200;
}

.cf7-select-wrapper .custom-select-dropdown.open {
    display: block;
}

/* Grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
@media (max-width: 900px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
}

/* Karte */
.bz-produktkarte {
    display: flex !important;
    flex-direction: column !important;
    overflow: visible !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Bild */
.bz-produktkarte__bild-link { display: block; text-decoration: none; }
.bz-produktkarte__bild {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
}
.bz-produktkarte__bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.bz-produktkarte:hover .bz-produktkarte__bild img { transform: scale(1.03); }

/* Info */
.bz-produktkarte__info {
    padding: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bz-produktkarte__kategorie { 
  font-size: 14px; 
  
  color: #393A37; 
}
.bz-produktkarte__titel {
    font-size: 40px !important;
    font-weight: 400 !important;
    margin: 0 0 4px !important;
    line-height: 1.2 !important;
}
.bz-produktkarte__titel a { text-decoration: none; color: #111; }

/* Attribute Container */
.bz-karte-attribute {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
    flex-wrap: wrap;
}

/* Größe Buttons */
.bz-karte-attribut {
    display: inline-flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    width: auto !important;
    background: #EEEEEA;
    border-radius: 24px;
    padding: 4px;
    border: 1px solid #DBDBD6
}
.bz-karte-attribut_wrapper {
    display: flex;
    min-width: fit-content; 
    flex-shrink: 0; 
}
.bz-karte-option {
    background: #f0f0f0!important;
    border: none!important;
    border-radius: 50px!important;
    padding: 8px 18px!important;
    font-size: 14px!important;
    font-weight: 500!important;
    cursor: pointer!important;
    transition: background 0.2s, color 0.2s!important;
    color: #111!important;
    line-height: 1!important;
}
.bz-karte-option.aktiv {
    background: #111!important;
    color: #fff!important;
}
.bz-karte-option:hover:not(.aktiv) { background: #e0e0e0!important; }

/* Select */
.bz-karte-attribut-select { 
  width: 100%; 
  flex: 1;
}

.bz-karte-attribut-select .custom-select-wrapper {
    width: 100% !important;
}

.bz-karte-attribut-select .custom-select-trigger {
    width: 100% !important;
    box-sizing: border-box;
}

.bz-karte-attribut-select select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-color: #f0f0f0 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 40px 10px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    color: #111 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100% !important;
}

/* Kaufzeile */
.bz-karte-kaufzeile {
    margin-top: 8px;
}

.bz-karte-kaufen {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    justify-content: center !important;
    background: #8db63c !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 22px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    white-space: nowrap !important;
    width: 100% !important;
    height: auto !important;
}

.bz-karte-kaufen:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.bz-karte-kaufen:not(:disabled):hover {
    background: #7aa334 !important;
}

.bz-karte-preis {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
/* Einfaches Produkt */
.bz-karte-einfach {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.products.columns-3::before {
  display: none!important;
}




/* Filterleiste */
.bz-shop-wrapper {
    width: 100%;
}

.bz-filterleiste {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Kategorien */
.bz-filter-kategorien {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
    border: 1px solid #DBDBD6;
}

.bz-filter-btn {
    display: inline-flex;
    align-items: center;
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    color: #111;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.bz-filter-btn.aktiv {
    background: #111;
    color: #fff;
}

.bz-filter-btn:hover:not(.aktiv) {
    background: #e0e0e0;
    color: #111;
}

/* Attribute Selects */
.bz-filter-attribute {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.bz-filter-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.bz-filter-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-color: #f0f0f0 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 60px 10px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    color: #111 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    box-shadow: none !important;
    outline: none !important;
    min-width: 140px !important;
}

.bz-filter-select.hat-wert {
    background-color: #111 !important;
    color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.bz-filter-clear {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #393A37!important;
    font-size: 16px;
    text-decoration: none;
    line-height: 1;
    z-index: 1;
}
.woocommerce-result-count, .woocommerce-ordering {
  display: none;
}

.variations .custom-select-wrapper {
  min-width: 250px;
}

.bz-menge-kontrolle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.bz-menge-btn {
    background: #f0f0f0 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111 !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.bz-menge-btn:hover { background: #e0e0e0 !important; }

.bz-menge-anzeige {
    font-size: 16px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.bz-menge-preis {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-left: auto;
}
.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before {
  display: none!important;
}

.e-n-accordion-item-title {
  border: none!important
}
details.e-n-accordion-item {
  border-bottom: 1px solid #DBDBD6;
  padding-bottom: 22px;
}


.cf7-field-group .wpcf7-form-control-wrap {
  display: block;
  background: #f0efeb;
  border-radius: 14px;
  padding: 4px;
}

.cf7-field-group .wpcf7-file {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.file-upload-label {
  display: flex!important;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  color: #555;
  font-size: 15px;
  transition: background 0.15s;
  user-select: none;
}

.file-upload-label:hover {
  background: #f5f4f0;
}

.file-upload-label svg {
  flex-shrink: 0;
  color: #555;
}

.job-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
      justify-content: center;
}

.job-meta li {
  color: #555;
  font-size: 15px;
}

.job-meta li:not(:last-child)::after {
  content: '•';
  margin-left: 8px;
  color: #aaa;
}

.newList ul {
      margin: 0;
    padding: 0px;
    padding-left: 20px;
}
.newList li {
  margin-bottom: 8px;
}


.bz-post-excerpt {
  margin-bottom: 24px;
}
.bz-post-link {
  border-bottom: 1px solid #DBDBD6;
}

.bz-posts-filter {
    background: #EEEEEA;
    border: 1px solid #DBDBD6;
    border-radius: 24px;
    padding: 4px;
    display: inline-flex; 
    gap: 10px; 
    margin-bottom: 30px; 
    list-style: none; 
    flex-wrap: wrap;
    margin: 0 auto;
}

.bz-ajax-posts-root {
  text-align: center;
}
.bz-post-card {
  text-align: left;
}
.bz-produktkarte__bild img {
  min-height: 100%;
}


/* ===== BLOG-KARTEN: META-ZEILE "Datum • Kategorie" =====
   Kategorie wird per get_the_date-Filter eingefügt (siehe functions.php) und
   verlinkt auf /aktuelles/?kategorie=<slug>.
   .bz-post-card davor, weil bz-addon inline `display:block` nachschiebt. */
/* Elternelement von .bz-meta-date: bei bz-addon .bz-post-meta, bei Elementor Pro
   landet die Ausgabe von get_the_date() innerhalb von .elementor-post-date. */
.bz-post-card .bz-post-meta,
.elementor-posts .elementor-post-date {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bz-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.bz-meta-date::after {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #DBDBD6;
    flex: 0 0 auto;
}
.bz-meta-cat {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.bz-meta-cat:hover {
    color: #AFBC21;
}



.pointElement .e-con-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; 
}

.pointElement .e-con-inner > .elementor-widget {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.pointElement .e-con-inner > .elementor-widget::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #DBDBD6;
    border-radius: 50%; 
    
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}

.pointElement .e-con-inner > .elementor-widget:last-child::after {
    display: none;
}

.postContent h2 {
  font-weight: 400!important;
  font-size: 48px!important;
  line-height: 54px!important;
  letter-spacing: -1%!important;
}
.postContent p, .postContent img {
  margin-bottom: 40px;
}
.postContent img {
    width: 100%;
    border-radius: 24px!important;
}
.postContent ul {
  padding: 0;
  padding-left: 20px;
}

.postContent .wp-block-pullquote {
  padding: 0;
  margin: 40px 0;
  border-left: 2px solid #AFBC21;
  text-align: left;
}
.postContent .wp-block-pullquote blockquote {
  padding: 12px 32px;
  font-family: Instrument Serif;
  font-weight: 400;
  font-style: Italic;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0%;

}
.postContent .wp-block-pullquote cite {
  font-family: DM Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
}


.bz-author-card {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}
.bz-author-avatar {
    flex-shrink: 0;
}
.bz-author-avatar img {
    width: 100%;
    height: 100%!important;
    object-fit: cover;
    display: block;
    border-radius: 50%!important;
}
.bz-author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bz-author-fio {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 4px;
}
.bz-author-position {
    line-height: 1.2;
}


.zovko-cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.zovko-cart-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.zovko-cart-header > div {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  text-transform: uppercase;
}

.zovko-cart-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}

.col-product { flex: 2; display: flex; gap: 16px; align-items: center; min-width: 0; }
.col-image   { flex: 0 0 80px; }
.col-name    { flex: 1; min-width: 0; }
.col-price   { flex: 0 0 120px; font-size: 14px; color: #333; white-space: nowrap; }
.col-qty     { flex: 0 0 160px; }
.col-total   { flex: 0 0 110px; font-size: 15px; font-weight: 700; color: #1a1a1a; white-space: nowrap; }
.col-remove  { flex: 0 0 40px; display: flex; justify-content: flex-end; }

.zovko-cart-row .col-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f0f0;
  display: block;
}

a.zovko-product-name,
span.zovko-product-name {
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
}

a.zovko-product-name:hover {
  color: #8db33a;
}

.zovko-product-meta {
  font-size: 13px;
  color: #888;
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.zovko-meta-item {
  display: inline-block;
}

.zovko-cart-row .col-qty .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  width: fit-content;
  background: #fff;
}

.zovko-cart-row .col-qty .qty {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
  padding: 8px 0;
}

.zovko-cart-row .col-qty .qty::-webkit-outer-spin-button,
.zovko-cart-row .col-qty .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.zovko-cart-row .col-qty .minus,
.zovko-cart-row .col-qty .plus {
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.zovko-cart-row .col-qty .minus:hover,
.zovko-cart-row .col-qty .plus:hover {
  color: #8db33a;
}

a.zovko-remove-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 22px;
  font-weight: 300;
  color: #aaa;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}

a.zovko-remove-item:hover {
  color: #e00;
}

.zovko-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.zovko-coupon {
  display: flex;
  gap: 12px;
  align-items: center;
}

.zovko-coupon-input {
  border: 1px solid #ddd!important;
  border-radius: 16px!important;
  padding: 10px 20px!important;
  font-size: 14px!important;
  outline: none!important;
  width: 200px!important;
  transition: border-color 0.2s!important;
  background-color: transparent!important;
}

.zovko-coupon-input:focus {
  border-color: #8db33a;
}

.zovko-coupon-btn {
  background: transparent!important;
  border: 1px solid #ddd!important;
  border-radius: 50px!important;
  padding: 10px 24px!important;
  font-size: 14px!important;
  font-weight: 600!important;
  cursor: pointer!important;
  transition: all 0.2s!important;
}

.zovko-coupon-btn:hover {
  background: #AFBC21 !important;
  color: #1A1A1A !important;
  transition: all 0.2s!important;
}

.zovko-update-btn {
  background: none;
  border: none;
  font-size: 14px!important;
  color: #555;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

.zovko-update-btn:hover {
  color: #000;
}

.zovko-cart-totals {
  background: #EEEEEA;
  border-radius: 16px;
  padding: 28px;
  box-sizing: border-box;
  border: 1px solid #DBDBD6;
}

.zovko-totals-title {
  font-size: 40px!important;
  font-weight: 700;
  margin: 0 0 20px;
  color: #1a1a1a;
}

.zovko-totals-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.zovko-update-btn {
  border: none!important;
}
.zovko-update-btn:hover {
  background: transparent!important;
  color: #8db33a !important;
}

.zovko-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14px;
  color: #444;
  gap: 16px;
}

.zovko-totals-cell.label {
  font-weight: 600;
  color: #1a1a1a;
}

.zovko-totals-cell.value {
  text-align: right;
}

.zovko-totals-row.shipping,
.zovko-shipping-label {
  font-size: 13px;
  color: #888;
}

.zovko-shipping-calculator-row {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.zovko-shipping-calculator-row .value {
  text-align: left;
  width: 100%;
}

.zovko-totals-divider {
  height: 1px;
  background: #ddd;
  margin: 12px 0 16px;
}

.zovko-totals-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.zovko-totals-total__label,
.zovko-totals-total__value {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
}

.zovko-totals-tax-note {
  font-size: 12px;
  color: #999;
  margin: 0 0 20px;
  text-align: left;
}
.hidden-native-select {
    display: none;
}
.zovko-cart-totals .checkout-button,
.custom-checkout-wrapper .custom-order-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #AFBC21 !important;
  color: #1A1A1A !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 32px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  margin-top: 20px;
  transition: background 0.2s;
  box-sizing: border-box;
}

a.zovko-continue-shopping {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

a.zovko-continue-shopping:hover {
  color: #000;
}

@media (max-width: 992px) {
  .zovko-cart-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}




.custom-checkout-form {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  margin: 0 auto;
  align-items: start;
}

.custom-checkout-left {
  display: flex;
  flex-direction: column;
}

.woocommerce-billing-fields h3,
.custom-section-title,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
  font-size: 20px!important;
  font-family: "DM Sans", Sans-serif!important;
  font-weight: 600!important;
  margin: 0 0 20px!important;
  padding: 0!important;
  border: none!important;
  letter-spacing: 0!important;
}

.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.woocommerce-checkout .form-row {
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout .form-row-wide {
  flex: 0 0 100%;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  flex: 0 0 calc(50% - 7px);
}

.woocommerce-checkout label,
.woocommerce-checkout .woocommerce-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--co-label);
  margin-bottom: 6px;
  display: block;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea,
.woocommerce-checkout select {
  width: 100%;
  background: var(--co-input-bg);
  border: 1.5px solid var(--co-input-border);
  border-radius: var(--co-radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--co-text);
  outline: none;
  transition: border-color 0.2s;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}



.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  padding: 12px!important;
  border: 1px solid #ddd !important;
  font-size: 14px !important;
  background-color: transparent !important;
  border-radius: 12px!important;
}

#billing_postcode_field {
    width: 200px !important;
    max-width: 100% !important;
}

.woocommerce-additional-fields {
  border-top: 1px solid #DBDBD6;
  margin: 40px 0;
  padding: 40px 0;
  border-bottom: 1px solid #DBDBD6;
}

.woocommerce form input::placeholder, .woocommerce form select::placeholder , .woocommerce form textarea::placeholder{
  color: #9FA19B!important;
}

.woocommerce-checkout label, .woocommerce-checkout .woocommerce-form__label {
  font-size: 14px!important;
  font-weight: 500!important;
}

.woocommerce-checkout select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23aaa' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.woocommerce-checkout textarea {
  min-height: 100px;
  resize: vertical;
}

.custom-payment-section {
  background: transparent;
}

.custom-payment-block {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-payment-block .wc_payment_method {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.custom-payment-block .wc_payment_method:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.custom-payment-block .input-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.custom-payment-block label[for^="payment_method_"] {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
    cursor: pointer;
    user-select: none;
    padding-left: 35px;
    position: relative;
    margin: 0;
}

.custom-payment-block label[for^="payment_method_"]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    background: #fff;
    transition: all 0.25s ease;
}

.custom-payment-block label[for^="payment_method_"]::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #AFBC21;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.custom-payment-block li:has(.input-radio:checked) {
    border-color: #AFBC21; 
    background-color: #fafdec; 
}

.custom-payment-block .input-radio:checked + label::before {
    border-color: #AFBC21;
}

.custom-payment-block .input-radio:checked + label::after {
    transform: translateY(-50%) scale(1);
}


.custom-payment-block .payment_box {
    margin-top: 10px;
    padding: 12px 15px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #AFBC21; 
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-left: 35px; 
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.woocommerce-info {
    margin-top: 10px;
    padding: 12px 15px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 3px solid #AFBC21; 
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    border-top-color: transparent;
    border-top: 0px;
}
.woocommerce-info::before {
  display: none;
}
.custom-payment-block .payment_box p {
    margin: 0;
}

.custom-checkout-right {
  position: sticky;
  top: 24px;
}


.woocommerce form.checkout_coupon {
      display: flex;
    max-width: 430px;
    gap: 10px;
}

.woocommerce form.checkout_coupon .button {
  background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
        height: 100%;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: none!important;
  padding: 0!important;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first {
  width: 200px;
}

@media (max-width: 860px) {
  .custom-checkout-form {
    grid-template-columns: 1fr;
  }

  .custom-checkout-right {
    position: static;
    order: -1;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .custom-checkout-wrapper {
    padding: 16px 10px 48px;
  }
}


.custom-order-review-box {
  background: #EEEEEA;
    border-radius: 16px;
    padding: 28px;
    box-sizing: border-box;
    border: 1px solid #DBDBD6;
}
.custom-order-title {
  font-size: 20px !important;
    font-family: "DM Sans", Sans-serif !important;
    font-weight: 600 !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    border: none !important;
    letter-spacing: 0 !important;
}
.custom-review-flexbox {
    width: 100%;
}

.custom-review-flexbox .review-order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.custom-review-flexbox .review-order-header {
display: none;
}

.custom-review-flexbox .product-name {
    flex: 1;
    padding-right: 15px;
    color: #393A37;
    font-size: 14px;
}
.footer-label {
  flex: 1;
    padding-right: 15px;
    color: #393A37;
    font-size: 16px;
}
.custom-review-flexbox .product-total, 
.custom-review-flexbox .footer-value {
    text-align: right;
    font-weight: 600;
    color: #1e293b;
}

.custom-review-flexbox .product-quantity {
    color: #393A37;
    font-size: 14px;
    margin-left: 5px;
}

.custom-review-flexbox .order-total {
    border-bottom: none;
    padding-top: 18px;
    font-size: 18px;
}

.custom-review-flexbox .order-total .footer-value {
    color: #1A1A1A; 
    font-size: 20px;
}

.custom-tax-note {
  font-size: 14px;
  color: #9FA19B;
}

.custom-review-flexbox .review-order-shipping-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #9FA19B;
}

.custom-review-flexbox .review-order-shipping-wrapper {
    font-weight: normal;
    text-align: left;
    flex: 1;
}

.custom-review-flexbox .review-order-shipping-wrapper {
    text-align: right;
}

.custom-review-flexbox .review-order-shipping-wrapper ul#shipping_method {
    list-style: none;
    padding: 0;
    margin: 0;
}


.zovko-datenschutz-wrap {
    margin-bottom: 16px;
}

.zovko-datenschutz-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.zovko-datenschutz-input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #8db33a;
    cursor: pointer;
}

.zovko-datenschutz-text a {
    color: #8db33a;
    text-decoration: underline;
}

.zovko-datenschutz-text a:hover {
    color: #7a9f30;
}
.zovko-datenschutz-text {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}
.woocommerce-terms-and-conditions-wrapper, .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  display: none;
}

.zovko-datenschutz-error {
    display: none;
    font-size: 12px;
    color: #e00;
    margin-top: 6px;
}

.zovko-datenschutz--error .zovko-datenschutz-label {
    color: #e00;
}

.zovko-datenschutz--error .zovko-datenschutz-error {
    display: block;
}

.bz-thankyou {
    max-width: 840px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    font-family: inherit;
}


.bz-ty__hero {
    text-align: center;
    margin-bottom: 2rem;
}
.bz-ty__checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #AFBC21;
    margin-bottom: 1rem;
}
.bz-ty__title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.bz-ty__subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.bz-ty__card {
    background: #f7f6f2;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.bz-ty__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.bz-ty__meta-label {
    font-size: 0.78rem;
    color: #888;
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bz-ty__order-number {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.bz-ty__status-badge {
    background: #AFBC21;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bz-ty__divider {
    border: none;
    border-top: 1px solid #e5e3dc;
    margin: 0.85rem 0;
}

.bz-ty__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    padding: 1px 0;
}
.bz-ty__row-label {
    color: #888;
}
.bz-ty__row-value {
    font-weight: 500;
    color: #222;
}
.bz-ty__row-value--free {
    color: #AFBC21;
    font-weight: 600;
}
.bz-ty__row--total .bz-ty__row-label {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}
.bz-ty__row--total .bz-ty__row-value {
    font-size: 1.15rem;
    font-weight: 700;
}

.bz-thankyou .bz-ty__items-flexbox {
    width: 100%;
    margin: 15px 0;
}


.bz-thankyou .bz-ty__items-header,
.bz-thankyou .bz-ty__items-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.bz-thankyou .bz-ty__items-header {
    font-weight: bold;
    border-bottom: 1px solid #DBDBD6;
    color: #1A1A1A;
    font-size: 14px;
    text-transform: uppercase;
}

.bz-thankyou .bz-ty__items-row {
    border-bottom: 1px solid #f1f5f9;
}

.bz-thankyou .bz-ty__items-body .bz-ty__items-row:last-child {
    border-bottom: none;
}


.bz-thankyou .bz-ty__items-name {
    flex: 2; 
    padding-right: 15px;
    text-align: left;
}

.bz-thankyou .bz-ty__items-qty {
    flex: 1;
    text-align: center;
    color: #1A1A1A;
}

.bz-thankyou .bz-ty__items-price {
    flex: 1;
    text-align: right;
    font-weight: 600;
}

.bz-ty__addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
@media (max-width: 480px) {
    .bz-ty__addresses {
        grid-template-columns: 1fr;
    }
}
.bz-ty__addr-card {
    background: #f7f6f2;
    border-radius: 14px;
    padding: 1.25rem;
}
.bz-ty__addr-title {
    font-weight: 600;
    font-size: 0.88rem;
    margin: 0 0 0.65rem;
    color: #222;
}
.bz-ty__addr-body {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.55;
}
.bz-ty__addr-contact {
    margin-top: 4px;
}

.bz-ty__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}
.bz-ty__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity .15s;
}
.bz-ty__btn:hover {
    opacity: 0.82;
    text-decoration: none;
    color: #fff!important;
}
.bz-ty__btn--primary {
    background: #AFBC21;
    color: #fff;
}
.bz-ty__btn--secondary {
    background: transparent;
    color: #333;
    border: 1.5px solid #ccc;
}

.bz-ty__btn--secondary:hover {
  color:#AFBC21!important;
}
body:has(.bz-thankyou) h1, body:has(.bz-thankyou) .woocommerce-order-details, body:has(.bz-thankyou) .woocommerce-customer-details{
    display: none !important;
}

.sub-menu.elementor-nav-menu--dropdown {
  border-radius: 16px;
  border: 1px solid #D9D9D9;
  margin-top: 10px!important;
  width: 100%!important;
}
.sub-menu.elementor-nav-menu--dropdown .menu-item {
  border-radius: 16px!important;
}

button:focus {
  background-color: #AFBC21!important;
}

.bz-slider-nav-btn {
  border-radius: 8px!important;
}

@media (max-width: 1600px) {
  .bz-produktkarte__titel {
    font-size: 26px !important;
  }
  .bz-karte-kaufen {
    font-size: 14px!important;
    padding: 10px 20px !important;
  }
  .bz-karte-attribute {
    gap: 10px!important;
  }
  .bz-produkt-slider-track {
    gap: 16px!important;
  }
}


@media (max-width: 1300px) {
  .zovko-cart-layout {
    grid-template-columns: 1fr 360px;
    gap: 20px
  }
}

@media (max-width: 768px) {
  .bz-filterleiste {
    flex-direction: column;
    justify-content: center;
  }
  .zovko-cart-header {
    display: none;
  }
  .zovko-cart-layout {
    grid-template-columns: 1fr!important
  }
  .zovko-cart-row {
    display: grid;
    grid-template-areas:
      "image name   remove"
      "image name   remove"
      "price qty    total";
    grid-template-columns: 80px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    padding: 16px 0;
    align-items: center;
  }

  .zovko-cart-row .col-image  { grid-area: image;  }
  .zovko-cart-row .col-name   { grid-area: name;   }
  .zovko-cart-row .col-remove { grid-area: remove; }
  .zovko-cart-row .col-price  { grid-area: price;  }
  .zovko-cart-row .col-qty    { grid-area: qty;    }
  .zovko-cart-row .col-total  { grid-area: total;  }

  .zovko-cart-row .col-price,
  .zovko-cart-row .col-qty,
  .zovko-cart-row .col-total {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0;
    border: none;
  }

  .zovko-cart-row .col-price::before,
  .zovko-cart-row .col-qty::before,
  .zovko-cart-row .col-total::before {
    content: attr(data-title);
    font-size: 11px;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .zovko-cart-row .col-name {
    text-align: left;
    margin-bottom: 0;
  }

  .zovko-cart-row .col-remove {
    justify-self: end;
  }

  .zovko-cart-row .col-qty .quantity {
    margin-left: 0;
  }

  .zovko-cart-row .col-total {
    align-items: flex-end;
    justify-self: end;
  }

  .zovko-cart-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .zovko-coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .zovko-coupon-input {
    width: 100%;
  }

  .zovko-update {
    text-align: center;
    margin-top: 10px;
  }
  .zovko-coupon-input {
    width: 100%!important;
  }
  .custom-order-review-box {
    padding: 16px;
  }
  form.custom-checkout-form {
    display: flex;
    flex-direction: column;
  }

  .custom-checkout-right {
    order: 1;
  }

  .custom-checkout-left {
    order: -1;
  }
  .bz-karte-attribute {
    flex-direction: column!important;
  }
  .custom-select-trigger
}

@media (max-width: 480px) {
  .zovko-cart-totals {
    padding: 20px;
  }
  
  .zovko-totals-row:not(.zovko-shipping-calculator-row) {
    flex-direction: column;
    gap: 4px;
  }
  
  .zovko-totals-cell.value {
    text-align: left;
  }
  
  .zovko-totals-tax-note {
    text-align: left;
  }

}





@media (max-width: 576px) {
  .elementor-menu-cart__main {
    margin: 0;
  }
  .mobileCenter ul li, .mobileCenter p {
    text-align: center;
  }
  .mobileCenter a.elementor-item {
    display: block!important;
  }
  .bz-filter-kategorien {
    width: 100%;
    border-radius: 20px;
  }
  .bz-filter-select {
    max-width: 180px;
  }
  .bz-filter-attribute {
    flex-wrap: nowrap;
  }
  .bz-filter-btn {
    padding: 10px 16px;
  }
  .custom-select-trigger, .custom-select-wrapper {
    width: 100%;
  }
  .woocommerce div.product form.cart div.quantity {
    width: 100%;
    justify-content: space-between;
  }
  .single_add_to_cart_button.button {
    width: 100%;
    justify-content: center;
  }
  .single-product .woocommerce-variation-add-to-cart {
    margin-top: 0!important;
  }
  .woocommerce ul.products, .woocommerce-page ul.products {
    gap: 16px!important;
  }
  
}

.vmm-panel {
          align-items: center;
        justify-content: center;
}
.bz-slider-nav {
  display: none!important;
}
.bz-posts-filter {
  margin-bottom: 20px;
}

/* --- Mini-cart (Elementor Menu Cart) ribbon / variation meta --------------
   Long option labels ("Namen der Hinterbliebenen", "Schleifenfarbe") squished
   the values into a tiny right column in the narrow flyout cart. Stack each
   label above its value so everything stays readable. */
.elementor-menu-cart__product .variation,
.woocommerce-mini-cart-item .variation {
    display: block !important;
    margin: 6px 0 4px !important;
    overflow: visible !important;
}
.elementor-menu-cart__product .variation dt,
.elementor-menu-cart__product .variation dd,
.woocommerce-mini-cart-item .variation dt,
.woocommerce-mini-cart-item .variation dd {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: normal !important;
    line-height: 1.35 !important;
}
.elementor-menu-cart__product .variation dt,
.woocommerce-mini-cart-item .variation dt {
    font-weight: 600 !important;
    margin-top: 4px !important;
}
.elementor-menu-cart__product .variation dd,
.woocommerce-mini-cart-item .variation dd {
    font-weight: 400 !important;
    opacity: .85;
}
.elementor-menu-cart__product .variation dd p,
.woocommerce-mini-cart-item .variation dd p {
    margin: 0 !important;
}
