.zend-site {
    --gold: #d59a2b;
    --gold-light: #f5c76b;
    --ink: #111111;
    --muted: #f5f5f5;
    --line: #e8e2d8;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    background: #fff;
}

/* Product card action buttons: keep long German labels inside cards. */
.zend-product-card .zend-product-actions,
.zend-menu-layout .zend-product-actions,
.woocommerce ul.products li.product .zend-product-actions,
.home .zend-product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch;
}

.zend-product-card .zend-cart,
.zend-product-card .zend-quick-view,
.zend-menu-layout .zend-cart,
.zend-menu-layout .zend-quick-view,
.woocommerce ul.products li.product .zend-product-actions .button,
.woocommerce ul.products li.product .zend-product-actions .zend-quick-view,
.home .zend-cart,
.home .zend-quick-view {
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 5px !important;
    overflow: hidden;
    white-space: normal !important;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.08 !important;
    font-size: clamp(8px, .62vw, 10px) !important;
}

.zend-product-card .zend-button-icon,
.woocommerce ul.products li.product .zend-product-actions .zend-button-icon,
.home .zend-button-icon,
.home .zend-button-icon--eye,
.home .zend-button-icon--options {
    width: 15px;
    height: 15px;
    margin: 0;
}

@media (max-width: 640px) {
    .zend-product-card .zend-cart,
    .zend-product-card .zend-quick-view,
    .zend-menu-layout .zend-cart,
    .zend-menu-layout .zend-quick-view,
    .woocommerce ul.products li.product .zend-product-actions .button,
    .woocommerce ul.products li.product .zend-product-actions .zend-quick-view,
    .home .zend-cart,
    .home .zend-quick-view {
        min-height: 52px;
        font-size: 9px !important;
    }
}

.zend-product-card .zend-product-actions,
.zend-menu-layout .zend-product-actions,
.woocommerce ul.products li.product .zend-product-actions,
.home .zend-product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.zend-product-card .zend-cart,
.zend-product-card .zend-quick-view,
.zend-menu-layout .zend-cart,
.zend-menu-layout .zend-quick-view,
.woocommerce ul.products li.product .zend-product-actions .button,
.woocommerce ul.products li.product .zend-product-actions .zend-quick-view,
.home .zend-cart,
.home .zend-quick-view {
    min-width: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 5px !important;
    overflow: hidden;
    white-space: normal !important;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.08 !important;
    font-size: clamp(8px, .62vw, 10px) !important;
}

.zend-product-card .zend-button-icon,
.woocommerce ul.products li.product .zend-product-actions .zend-button-icon,
.home .zend-button-icon,
.home .zend-button-icon--eye,
.home .zend-button-icon--options {
    width: 15px;
    height: 15px;
    margin: 0;
}

@media (max-width: 640px) {
    .zend-product-card .zend-cart,
    .zend-product-card .zend-quick-view,
    .zend-menu-layout .zend-cart,
    .zend-menu-layout .zend-quick-view,
    .woocommerce ul.products li.product .zend-product-actions .button,
    .woocommerce ul.products li.product .zend-product-actions .zend-quick-view,
    .home .zend-cart,
    .home .zend-quick-view {
        min-height: 50px;
        font-size: 9px !important;
    }
}

.zend-site * {
    box-sizing: border-box;
}

.zend-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.12) 78%),
        var(--hero) center right / cover no-repeat;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.zend-hero--slider {
    position: relative;
    display: block;
    overflow: hidden;
    background: #070707;
}

.zend-hero__track {
    position: relative;
    min-height: 500px;
}

.zend-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.12) 78%),
        var(--hero) center right / cover no-repeat;
    animation: zendHeroFade 15s infinite;
}

.zend-hero__slide:nth-child(1) {
    animation-delay: 0s;
}

.zend-hero__slide:nth-child(2) {
    animation-delay: 5s;
}

.zend-hero__slide:nth-child(3) {
    animation-delay: 10s;
}

.zend-hero__slide:only-child {
    position: relative;
    opacity: 1;
    animation: none;
}

.zend-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.zend-hero__dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.75);
}

@keyframes zendHeroFade {
    0%, 5% {
        opacity: 0;
    }
    10%, 30% {
        opacity: 1;
    }
    35%, 100% {
        opacity: 0;
    }
}

.zend-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 54px 0 28px;
}

.zend-script {
    color: var(--gold-light);
    font-size: 20px;
    font-style: italic;
    margin: 0 0 10px;
}

.zend-hero h1 {
    width: min(760px, 100%);
    margin: 0;
    font-size: clamp(40px, 5.1vw, 68px);
    line-height: .98;
    font-weight: 900;
    text-transform: uppercase;
}

.zend-hero h1 br + * {
    color: var(--gold-light);
}

.zend-hero__text {
    width: min(500px, 100%);
    margin: 22px 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.55;
}

.zend-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.zend-btn,
.zend-menu-link,
.zend-cart,
.zend-promo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 28px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0;
}

.zend-btn--gold,
.zend-cart,
.zend-promo a {
    background: linear-gradient(180deg, #f3c260, #c98818);
    color: #111;
}

.zend-btn--dark,
.zend-menu-link {
    color: #fff;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(245,199,107,.5);
}

.zend-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: min(780px, 100%);
}

.zend-features span {
    display: block;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.zend-features b {
    display: block;
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 4px;
}

.zend-categories {
    width: min(1160px, calc(100% - 40px));
    margin: 26px auto 30px;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 14px;
}

.zend-cat {
    position: relative;
    min-height: 128px;
    padding: 8px 8px 12px;
    text-align: center;
    text-decoration: none;
    color: #111;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.zend-cat img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    border-radius: 7px;
}

.zend-cat span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: -18px auto 8px;
    position: relative;
    color: #fff;
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    font-size: 17px;
}

.zend-cat strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.zend-section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 46px 0 96px;
}

.zend-section--muted {
    width: 100%;
    padding-inline: max(20px, calc((100% - 1160px) / 2));
    background: var(--muted);
}

.zend-site > .zend-section:last-of-type {
    padding-bottom: 112px;
}

.zend-subhero + .zend-section {
    padding-top: 54px;
}

.zend-section h2 {
    text-align: center;
    margin: 0 0 26px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zend-section h2::before,
.zend-section h2::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin: 0 16px 7px;
    background: var(--gold);
}

.zend-products {
    display: grid;
    grid-template-columns: repeat(var(--zend-columns, 4), minmax(0, 1fr));
    gap: 26px;
}

.zend-menu-layout {
    width: 100%;
    max-width: none;
    padding: 16px 0 42px;
}

.zend-menu-layout > .elementor-container {
    display: grid !important;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
    width: min(1760px, calc(100vw - 24px));
    max-width: none !important;
    margin: 0 auto;
    flex-wrap: unset !important;
}

.zend-menu-layout > .elementor-container > .elementor-column {
    width: auto !important;
    max-width: none !important;
    flex: initial !important;
    min-width: 0;
}

.zend-menu-layout > .elementor-container > .elementor-column > .elementor-widget-wrap {
    display: block;
    padding: 0 !important;
}

.zend-menu-layout .zend-section {
    width: 100%;
    padding: 0;
}

.zend-menu-layout .zend-products {
    gap: 20px;
}

.zend-menu-layout .zend-product-body {
    padding: 16px 16px 20px;
}

.zend-menu-layout .zend-card h3 {
    font-size: clamp(20px, 1.45vw, 28px);
}

.zend-menu-layout .zend-product-desc {
    min-height: 78px;
    height: 78px;
    max-height: 78px;
    margin-bottom: 18px;
    font-size: clamp(16px, 1.25vw, 22px);
    overflow: hidden;
}

.zend-menu-layout .zend-price {
    margin-bottom: 18px;
    font-size: clamp(22px, 1.7vw, 32px);
}

.zend-menu-layout .zend-cart,
.zend-menu-layout .zend-quick-view {
    min-height: 46px;
    padding-inline: 6px;
    border-radius: 7px;
    font-size: clamp(8px, .7vw, 11px);
    gap: 5px;
}

.zend-menu-layout .zend-product-actions {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.home .zend-products {
    gap: 20px;
}

.home .zend-product-card {
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(0,0,0,.07);
}

.home .zend-product-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 14px 14px 16px;
}

.home .zend-card h3 {
    min-height: 2.2em;
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 1.1;
}

.home .zend-product-desc {
    min-height: calc(1.35em * 3);
    max-height: calc(1.35em * 3);
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.35;
}

.home .zend-price {
    margin-bottom: 11px;
    font-size: 18px;
}

.home .zend-product-actions {
    gap: 7px;
}

.home .zend-cart,
.home .zend-quick-view {
    min-height: 46px;
    padding-inline: 5px;
    gap: 5px;
    border-radius: 7px;
    font-size: 9px;
}

.home .zend-button-icon,
.home .zend-button-icon--eye,
.home .zend-button-icon--options {
    width: 15px;
    height: 15px;
}

.home .zend-cart span,
.home .zend-quick-view span {
    font-size: 1.1em;
}

.zend-menu-layout .zend-cart span,
.zend-menu-layout .zend-quick-view span {
    font-size: 1.15em;
}

.zend-empty-products {
    padding: 28px;
    color: #34465a;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 800;
}

.zend-category-sidebar {
    position: sticky;
    top: 92px;
    align-self: start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
}

.zend-category-sidebar h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.zend-category-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
}

.zend-category-sidebar a + a {
    margin-top: 6px;
}

.zend-category-sidebar a:hover,
.zend-category-sidebar a.is-active {
    background: linear-gradient(180deg, #f3c260, #c98818);
}

.zend-category-sidebar em {
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: #111;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
}

.zend-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.zend-card img,
.zend-card > a img {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.zend-product-image {
    display: block;
    background: #160f0a;
}

.zend-product-body {
    padding: 28px 30px 30px;
}

.zend-card h3 {
    margin: 0 0 18px;
    color: #030303;
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.zend-product-desc {
    min-height: 128px;
    max-height: calc(1.35em * 3);
    margin: 0 0 28px;
    color: #34465a;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zend-price {
    display: block;
    margin-bottom: 28px;
    color: #020202;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    font-weight: 900;
}

.zend-product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}

.zend-product-actions .added_to_cart,
.zend-product-actions .wc-forward {
    display: none !important;
}

.zend-cart,
.zend-quick-view {
    width: 100%;
    min-height: 72px;
    gap: 12px;
    border-radius: 10px;
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.zend-product-card .zend-cart {
    border: 0;
    box-shadow: 0 3px 8px rgba(201,136,24,.22);
}

.zend-product-card .zend-quick-view {
    border: 1px solid #dedbd4;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    padding-bottom: 14px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 2.2em;
    margin: 0 0 10px !important;
    padding: 0 14px !important;
    line-height: 1.1 !important;
}

.woocommerce ul.products li.product .zend-product-desc {
    min-height: calc(1.35em * 3);
    max-height: calc(1.35em * 3);
    margin: 0 0 16px;
    padding: 0 14px;
    overflow: hidden;
    color: #34465a;
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.woocommerce ul.products li.product .price {
    margin-top: auto !important;
    margin-bottom: 10px !important;
    padding: 0 14px !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.woocommerce ul.products li.product .zend-product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 0 14px;
}

.woocommerce ul.products li.product .zend-product-actions .button,
.woocommerce ul.products li.product .zend-product-actions .zend-quick-view {
    width: 100% !important;
    min-height: 46px;
    margin: 0 !important;
    padding: 6px !important;
    gap: 5px;
    border-radius: 7px;
    font-size: clamp(8px, .7vw, 11px) !important;
    line-height: 1 !important;
    white-space: nowrap;
}

.woocommerce ul.products li.product .zend-product-actions .zend-cart {
    border: 0;
    background: linear-gradient(180deg, #f3c260, #c98818);
    color: #111;
    box-shadow: 0 3px 8px rgba(201,136,24,.22);
}

.woocommerce ul.products li.product .zend-product-actions .zend-quick-view {
    border: 1px solid #dedbd4;
    background: #fff;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.woocommerce ul.products li.product .zend-product-actions .zend-button-icon {
    width: 15px;
    height: 15px;
}

.woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product .wc-forward,
.woocommerce ul.products li.product .star-rating {
    display: none !important;
}

.zend-cart span,
.zend-quick-view span {
    font-size: 1.35em;
    line-height: 1;
}

.zend-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: currentColor;
}

.zend-button-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zend-button-icon--eye {
    width: 21px;
    height: 21px;
}

.zend-button-icon--options {
    width: 20px;
    height: 20px;
}

.zend-menu-layout .zend-button-icon {
    width: 16px;
    height: 16px;
}

.zend-menu-layout .zend-button-icon--eye {
    width: 15px;
    height: 15px;
}

.zend-cart-line-icon,
.zend-options-line-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    color: currentColor;
}

.zend-cart-line-icon {
    width: 18px;
    height: 16px;
    border: 2px solid currentColor;
    border-top: 0;
    transform: skewX(-8deg);
}

.zend-cart-line-icon::before {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    width: 8px;
    height: 2px;
    background: currentColor;
    transform: skewX(8deg);
}

.zend-cart-line-icon::after {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: -7px;
    height: 4px;
    background:
        radial-gradient(circle, currentColor 0 2px, transparent 2px) left center / 6px 4px no-repeat,
        radial-gradient(circle, currentColor 0 2px, transparent 2px) right center / 6px 4px no-repeat;
    transform: skewX(8deg);
}

.zend-options-line-icon {
    width: 17px;
    height: 13px;
    background:
        linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
}

.zend-quick-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    color: #111;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ddd8cf;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

.zend-eye-icon {
    position: relative;
    width: 18px;
    height: 12px;
    display: inline-block;
    flex: 0 0 auto;
    border: 2px solid currentColor;
    border-radius: 50% / 60%;
}

.zend-eye-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.zend-quick-content {
    display: none;
}

.zend-quick-modal .zend-quick-content {
    display: block;
}

.zend-quick-open {
    overflow: hidden;
}

.zend-quick-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: clamp(12px, 2vw, 24px);
}

.zend-quick-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
}

.zend-quick-dialog {
    position: relative;
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.zend-quick-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    color: #111;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.zend-quick-modal-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.zend-quick-modal-image {
    background: #160f0a;
    min-height: 0;
}

.zend-quick-modal-image img {
    width: 100%;
    height: clamp(210px, 34vh, 310px);
    min-height: 0;
    object-fit: cover;
}

.zend-quick-modal-info {
    padding: clamp(22px, 3vw, 38px);
}

.zend-quick-modal-info h3 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
}

.zend-quick-modal-info p {
    color: #34465a;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.5;
}

.zend-quick-modal-info .zend-product-actions,
.zend-quick-modal-info .zend-cart {
    max-width: 100%;
}

.zend-quick-options {
    margin: 14px 0 18px;
    padding: 14px;
    background: #faf8f4;
    border: 1px solid #eadfca;
    border-radius: 8px;
}

.zend-quick-options--live .wcpa_form_outer {
    margin: 0;
}

.zend-quick-options--live .wcpa_wrap {
    margin: 0;
}

.zend-quick-options--live .wcpa_row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.zend-quick-options--live .wcpa_form_item {
    min-width: 0;
}

.zend-quick-cart-form .zend-cart {
    border: 0;
    box-shadow: 0 3px 8px rgba(201,136,24,.22);
}

.zend-quick-options h4 {
    margin: 0 0 12px;
    color: #111;
    font-size: 18px;
    line-height: 1.2;
}

.zend-quick-option-group + .zend-quick-option-group {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eadfca;
}

.zend-quick-option-group > strong {
    display: block;
    margin-bottom: 10px;
    color: #111;
    font-size: 15px;
    line-height: 1.25;
}

.zend-quick-option-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.zend-quick-option-values span {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 7px;
    padding: 8px 9px;
    color: #233142;
    background: #fff;
    border: 1px solid #e5dfd4;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.zend-quick-option-values i {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    border: 2px solid #111;
    border-radius: 3px;
}

.zend-quick-option-values em {
    margin-left: auto;
    color: #c98818;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
    background: transparent;
    border: 0;
    padding: 0;
}

.zend-menu-link {
    width: fit-content;
    margin: 26px auto 0;
    background: #111;
    border-color: #111;
}

.zend-promos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.zend-promo {
    min-height: 150px;
    padding: 22px 24px;
    color: #fff;
    border-radius: 7px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.22)),
        var(--promo) center / cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}

.zend-promo span {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
}

.zend-promo h3 {
    width: 65%;
    margin: 0 0 8px;
    font-size: 18px;
}

.zend-promo p {
    margin: 0 0 12px;
}

.zend-promo b {
    color: var(--gold-light);
    font-size: 30px;
}

.zend-promo a {
    min-height: 34px;
    padding: 0 18px;
    font-size: 12px;
}

.zend-subhero {
    min-height: 260px;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.38)),
        var(--hero) center / cover no-repeat;
}

.zend-subhero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    text-transform: uppercase;
}

.zend-subhero p,
.zend-copy {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.zend-subhero p {
    color: rgba(255,255,255,.86);
}

.zend-info {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.zend-about-page {
    --about-accent: var(--gold);
    padding: 74px 20px 86px;
    background: #f7f7f7;
}

.zend-about-intro-grid,
.zend-about-story,
.zend-about-features {
    width: min(1180px, 100%);
    margin-inline: auto;
}

.zend-about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    gap: 58px;
    align-items: center;
}

.zend-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--about-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.zend-about-eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--about-accent);
}

.zend-about-heading {
    margin: 0 0 22px;
    color: #101010;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.zend-about-intro,
.zend-about-story {
    color: #34465a;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.75;
}

.zend-about-media {
    min-height: 520px;
}

.zend-about-media img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.zend-about-story {
    display: grid;
    grid-template-columns: minmax(260px, .38fr) minmax(0, 1fr);
    gap: 48px;
    margin-top: 74px;
    padding: 46px;
    background: #0d0d0d;
    border-radius: 8px;
    color: rgba(255,255,255,.78);
}

.zend-about-story h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    text-transform: uppercase;
}

.zend-about-story h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin-top: 18px;
    background: var(--about-accent);
}

.zend-about-story p {
    margin: 0 0 18px;
}

.zend-about-story p:last-child {
    margin-bottom: 0;
}

.zend-about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.zend-about-feature {
    min-height: 230px;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.zend-about-feature i {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    color: #111;
    background: linear-gradient(180deg, #f3c260, #c98818);
    border-radius: 999px;
    font-size: 24px;
}

.zend-about-feature h3 {
    margin: 0 0 12px;
    color: #111;
    font-size: 22px;
    font-weight: 900;
}

.zend-about-feature p {
    margin: 0;
    color: #34465a;
    font-size: 16px;
    line-height: 1.65;
}

.zend-contact-page {
    display: grid;
    grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}

.zend-contact-info-panel,
.zend-contact-form-panel {
    border-radius: 8px;
}

.zend-contact-info-panel {
    padding: 8px 0;
    width: min(100%, 560px);
}

.zend-contact-kicker {
    color: var(--gold);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.zend-contact-info-panel h2,
.zend-contact-form-panel h3,
.zend-contact-bottom h3 {
    color: #080808;
    font-family: Georgia, serif;
    font-size: clamp(30px, 3vw, 46px);
    letter-spacing: .4px;
    line-height: 1.08;
    margin: 0 0 18px;
    text-align: left;
    text-transform: none;
}

.zend-contact-info-panel h2::before,
.zend-contact-form-panel h3::before,
.zend-contact-bottom h3::before {
    display: none;
}

.zend-contact-info-panel h2:after,
.zend-contact-form-panel h3:after,
.zend-contact-bottom h3:after {
    background: var(--gold);
    content: "";
    display: block;
    height: 2px;
    margin-top: 18px;
    width: 52px;
}

.zend-contact-intro,
.zend-contact-form-panel > p {
    color: #5d6671;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.zend-contact-items {
    display: grid;
    gap: 22px;
}

.zend-contact-item {
    align-items: flex-start;
    background: #f4f0e8;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #101010;
    display: grid;
    gap: 5px 30px;
    grid-template-columns: 76px 1fr;
    min-height: 128px;
    padding: 28px 34px;
    text-decoration: none;
    transition: .2s ease;
}

.zend-contact-item:hover {
    background: #efe8dc;
    transform: translateY(-2px);
}

.zend-contact-item i {
    align-items: center;
    background: #fff;
    border-radius: 0;
    color: var(--gold);
    display: inline-flex;
    font-size: 26px;
    height: 76px;
    justify-content: center;
    width: 76px;
    grid-row: span 3;
}

.zend-contact-item span {
    color: #58616b;
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    padding-top: 2px;
    text-transform: none;
}

.zend-contact-item strong {
    color: #050505;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
    text-transform: none;
}

.zend-contact-form-panel {
    background: #0a0a0a;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    color: #fff;
    padding: clamp(26px, 4vw, 44px);
}

.zend-contact-form-panel h3 {
    color: #fff;
}

.zend-contact-form-panel > p {
    color: rgba(255,255,255,.68);
}

.zend-contact-form-panel .wpcf7 {
    margin-top: 24px;
}

.zend-contact-form-panel form {
    display: grid;
    gap: 14px;
}

.zend-contact-form-panel p {
    margin: 0;
}

.zend-contact-form-panel label {
    color: rgba(255,255,255,.82);
    display: grid;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.zend-contact-form-panel input[type="text"],
.zend-contact-form-panel input[type="email"],
.zend-contact-form-panel input[type="tel"],
.zend-contact-form-panel input[type="url"],
.zend-contact-form-panel select,
.zend-contact-form-panel textarea {
    background: #fff;
    border: 1px solid rgba(212,154,39,.25);
    border-radius: 6px;
    color: #111;
    font-size: 15px;
    min-height: 52px;
    padding: 0 16px;
    width: 100%;
}

.zend-contact-form-panel textarea {
    min-height: 150px;
    padding-top: 14px;
    resize: vertical;
}

.zend-contact-form-panel input[type="submit"],
.zend-contact-form-panel button[type="submit"] {
    background: var(--gold);
    border: 0;
    border-radius: 6px;
    color: #111;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    min-height: 52px;
    padding: 0 28px;
    text-transform: uppercase;
    width: fit-content;
}

.zend-contact-form-panel .wpcf7-spinner {
    background-color: var(--gold);
}

.zend-contact-bottom {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.72)),
        var(--contact-hours-bg, url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1600&q=80")) center / cover;
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr auto;
    margin-top: 48px;
    min-height: 210px;
    padding: clamp(28px, 4vw, 46px);
}

.zend-contact-bottom h3 {
    color: #fff;
    margin-bottom: 14px;
}

.zend-contact-bottom p {
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.zend-contact-bottom a {
    align-items: center;
    background: var(--gold);
    border-radius: 6px;
    color: #111;
    display: inline-flex;
    font-weight: 900;
    min-height: 52px;
    padding: 0 24px;
    text-decoration: none;
    text-transform: uppercase;
}

.zend-contact-form-missing {
    color: #fff;
}

.zend-footer {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding: 42px max(24px, calc((100% - 1160px) / 2));
    color: rgba(255,255,255,.78);
    background: linear-gradient(90deg, #151515, #0a0a0a);
}

.zend-footer h3,
.zend-footer h4 {
    color: #fff;
    margin: 0 0 14px;
}

.zend-footer h3 {
    color: var(--gold-light);
    font-style: italic;
}

.zend-footer a {
    display: block;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    margin: 0 0 8px;
}

@media (max-width: 980px) {
    .zend-menu-layout > .elementor-container {
        grid-template-columns: 1fr;
        width: min(100% - 28px, 760px);
    }

    .zend-category-sidebar {
        position: static;
    }

    .zend-categories,
    .zend-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zend-promos,
    .zend-features,
    .zend-about-intro-grid,
    .zend-about-story,
    .zend-about-features,
    .zend-contact-page,
    .zend-footer {
        grid-template-columns: 1fr;
    }

    .zend-about-media {
        min-height: 430px;
    }

    .zend-about-media img {
        width: 100%;
        height: 360px;
    }

    .zend-contact-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .zend-quick-option-values {
        grid-template-columns: 1fr;
    }

    .zend-quick-options--live .wcpa_row {
        grid-template-columns: 1fr;
    }

    .zend-quick-modal-image img {
        height: 220px;
    }
}

@media (max-width: 560px) {
    .zend-hero__inner,
    .zend-section,
    .zend-categories {
        width: min(100% - 28px, 1160px);
    }

    .zend-hero {
        min-height: 560px;
        background:
            linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.52)),
            var(--hero) center / cover no-repeat;
    }

    .zend-products,
    .zend-categories {
        grid-template-columns: 1fr;
    }

    .zend-about-page {
        padding: 48px 14px 62px;
    }

    .zend-about-intro-grid {
        gap: 34px;
    }

    .zend-about-media {
        min-height: 0;
    }

    .zend-about-media img {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 1.35 / 1;
        border: 0;
        margin-top: 14px;
    }

    .zend-about-story {
        gap: 24px;
        margin-top: 42px;
        padding: 28px 20px;
    }

    .zend-about-feature {
        min-height: auto;
        padding: 24px 20px;
    }

    .zend-section h2::before,
    .zend-section h2::after {
        width: 22px;
        margin-inline: 8px;
    }

    .zend-contact-item {
        gap: 5px 18px;
        grid-template-columns: 58px 1fr;
        min-height: 104px;
        padding: 20px;
    }

    .zend-contact-item i {
        font-size: 21px;
        height: 58px;
        width: 58px;
    }

    .zend-contact-item span {
        font-size: 16px;
    }

    .zend-contact-item strong {
        font-size: 16px;
    }

    .zend-contact-form-panel,
    .zend-contact-bottom {
        padding: 24px 18px;
    }
}

/* Product card action buttons: keep long German labels inside cards. */
.zend-product-card .zend-product-actions,
.zend-menu-layout .zend-product-actions,
.woocommerce ul.products li.product .zend-product-actions,
.home .zend-product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch;
}

.zend-product-card .zend-cart,
.zend-product-card .zend-quick-view,
.zend-menu-layout .zend-cart,
.zend-menu-layout .zend-quick-view,
.woocommerce ul.products li.product .zend-product-actions .button,
.woocommerce ul.products li.product .zend-product-actions .zend-quick-view,
.home .zend-cart,
.home .zend-quick-view {
    min-width: 0;
    max-width: 100%;
    min-height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 5px !important;
    overflow: hidden;
    white-space: normal !important;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.08 !important;
    font-size: clamp(8px, .62vw, 10px) !important;
}

.zend-product-card .zend-button-icon,
.woocommerce ul.products li.product .zend-product-actions .zend-button-icon,
.home .zend-button-icon,
.home .zend-button-icon--eye,
.home .zend-button-icon--options {
    width: 15px;
    height: 15px;
    margin: 0;
}

@media (max-width: 640px) {
    .zend-product-card .zend-cart,
    .zend-product-card .zend-quick-view,
    .zend-menu-layout .zend-cart,
    .zend-menu-layout .zend-quick-view,
    .woocommerce ul.products li.product .zend-product-actions .button,
    .woocommerce ul.products li.product .zend-product-actions .zend-quick-view,
    .home .zend-cart,
    .home .zend-quick-view {
        min-height: 52px;
        font-size: 9px !important;
    }
}
