:root {
    --bg: #f6f7f7;
    --surface: #ffffff;
    --surface-soft: #f1f4f1;
    --text: #1c2420;
    --muted: #5f6963;
    --line: #d9dfdc;
    --primary: #5dbb3d;
    --primary-dark: #3c8f29;
    --accent: #8edc57;
    --radius: 14px;
    --shadow: 0 10px 24px rgba(31, 44, 32, 0.08);
    /* Abstand links/rechts ca. 1,5 cm bis Inhalt-Start (siehe .container) */
    --content-gutter: 1.5cm;
    /* Zusatzluft l/r nur ab Desktop (Suchfeld eingerückt; Logo-Position unverändert) */
    --header-search-inset: 0;
    --touch-min: 44px;
    /* Top-Zeile: dunkle Fläche, helle Typo/Icons */
    --topbar-bg: #3a3f3d;
    --topbar-line: rgba(255, 255, 255, 0.12);
    --topbar-fg: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

@media (min-width: 1024px) {
    :root {
        --header-search-inset: clamp(0.7rem, 1.4vw, 1.2rem);
    }
}

.container {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    padding-left: max(var(--content-gutter, 1.5cm), env(safe-area-inset-left, 0px));
    padding-right: max(var(--content-gutter, 1.5cm), env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.topbar {
    background: var(--topbar-bg);
    color: var(--topbar-fg);
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    border-bottom: 1px solid var(--topbar-line);
}

.topbar-wrap {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-wrap p {
    margin: 0;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.topbar-wrap p::before,
.topbar-wrap p::after {
    content: "";
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.topbar-items {
    font-size: 0.78rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.topbar-icon {
    width: 13px;
    height: 13px;
    display: inline-flex;
    color: var(--topbar-fg);
}

.topbar-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.topbar-separator {
    margin: 0 0.2rem;
}

.topbar-icon-delivery {
    animation: deliveryPulse 1.4s ease-in-out infinite;
}

@keyframes deliveryPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(1.5px);
    }
}

/* Kein Sticky/Fixed: Kopfbereich scrollt wie die Topbar – mit dem Seiteninhalt nach oben weg. */
.site-header {
    position: relative;
    z-index: 40;
    background: #fff;
    border-bottom: 1px solid var(--line);
    overflow: visible;
}

.nav-wrap {
    min-height: 108px;
    display: grid;
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr) minmax(0, auto);
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1.25rem);
    /* Abstand zur Navileiste (Startseite / Shop) – Logo wirkt nicht „am Rand klebend“ */
    padding-top: 1.2rem;
    padding-bottom: 1.1rem;
}

/* Logo + Suche als oberste Zeile im weißen Header (unter der Topbar) */
.site-header > .container.nav-wrap {
    border-bottom: 1px solid var(--line);
}

/* Logo (Grafik) + einzeiliger Slogan, Anschlag wie „3“ in 360-Grow */
a.header-brand {
    /* Bündig unter dem „3“ in der Logo-Grafik (vom linken Rand des Logobereichs) */
    --slogan-text-inset: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.08rem;
    max-width: min(100%, 19rem);
    min-width: 0;
    margin-left: 0;
    text-decoration: none;
    color: inherit;
}

.header-brand .logo-wrap {
    display: block;
    line-height: 0;
    max-width: 100%;
}

.header-brand .logo-wrap img {
    display: block;
    height: 6.2rem;
    width: auto;
    max-width: 22.6rem;
    object-fit: contain;
    object-position: left center;
}

.brand-slogan {
    display: none !important;
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    margin: -0.12rem 0 0;
    padding: 0 0 0 var(--slogan-text-inset, 32px);
    font-size: 0.78rem;
    line-height: 1.3;
    font-weight: 400;
    color: #777;
    text-align: left;
    white-space: normal;
    align-self: flex-start;
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    margin-left: var(--header-search-inset, 0);
    margin-right: var(--header-search-inset, 0);
}

.header-search input[type="search"] {
    border: 0;
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.95rem;
    outline: 0;
    font-size: 0.92rem;
    line-height: 1.2;
}

.header-search button {
    border: 0;
    border-left: 1px solid #1c2420;
    padding: 0.72rem 1.05rem;
    background: #fff;
    color: #1c2420;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-search button:hover {
    background: #f3f5f4;
    color: #111;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.shop-link {
    font-weight: 700;
    color: #304334;
}

.shop-cta,
.btn {
    border-radius: 999px;
    padding: 0.68rem 1.2rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.shop-cta,
.btn-primary {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    color: #fff;
    box-shadow: 0 7px 14px rgba(47, 157, 70, 0.25);
}

.btn-ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.shop-cta:hover,
.btn:hover {
    transform: translateY(-1px);
}

.page-nav-strip {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

/* Drei-Spalten-Raster: Seitentabs mittig, Aktionen rechts (symmetrisch zentriert). */
.page-nav-strip-inner {
    min-height: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding-block: 0.28rem;
    position: relative;
}

.page-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15rem clamp(0.75rem, 2vw, 1.35rem);
}

.page-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0.06rem 0.08rem;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a6760;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.page-nav a:hover {
    color: var(--primary-dark);
    border-bottom-color: color-mix(in srgb, var(--primary-dark) 55%, transparent);
}

.page-nav .current-menu-item > a,
.page-nav .current_page_item > a,
.page-nav a[aria-current="page"] {
    color: var(--primary-dark);
    border-bottom-color: rgba(60, 143, 41, 0.35);
    font-weight: 600;
}

@supports not (color: color-mix(in srgb, red, blue)) {
    .page-nav a:hover {
        border-bottom-color: rgba(60, 143, 41, 0.45);
    }
}

nav.page-nav {
    grid-column: 2;
    justify-self: center;
    position: static;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    flex: none;
}

.page-nav-actions {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin-left: 0;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: #fff;
}

@media (min-width: 1024px) {
    .page-nav-actions .login-link,
    .page-nav-actions .account-link,
    .page-nav-actions .cart-chip {
        min-height: 28px;
        padding: 0.2rem 0.62rem;
        font-size: 0.76rem;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .page-nav-actions .account-link {
        gap: 0.32rem;
    }

    .page-nav-actions .account-icon-btn {
        width: 26px;
        height: 26px;
    }

    .page-nav-actions .language-switch summary {
        min-height: 28px;
        padding: 0.16rem 0.48rem;
        font-size: 0.74rem;
        border-color: #cdd8cd;
    }

    .page-nav-actions .cart-icon {
        width: 14px;
        height: 14px;
    }
}

.language-switch {
    position: relative;
}

.language-switch summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 30px;
    padding: 0.2rem 0.55rem;
    border: 1px solid #b8c8b8;
    border-radius: 999px;
    background: #fff;
}

.language-switch summary::-webkit-details-marker {
    display: none;
}

.flag-current {
    width: 18px;
    height: 12px;
    display: inline-flex;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.flag-current svg {
    width: 100%;
    height: 100%;
    display: block;
}

.language-caret {
    font-size: 0.7rem;
    color: #58705b;
}

.language-switch-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.3rem);
    min-width: 130px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(20, 35, 25, 0.12);
    padding: 0.3rem;
    display: none;
    z-index: 260;
}

.language-switch[open] .language-switch-menu {
    display: block;
}

.language-switch-menu a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.45rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #203026;
}

.language-switch-menu a:hover {
    background: #eff7ed;
}

.flag-menu-icon {
    width: 18px;
    height: 12px;
    display: inline-flex;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.flag-menu-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cart-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.28rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #1f2c20;
    font-size: 0.82rem;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease;
    gap: 0.38rem;
}

.cart-chip:hover {
    background: #f4f8f4;
}

.cart-icon {
    display: inline-flex;
    width: 15px;
    height: 15px;
    color: #1f2c20;
}

.cart-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count-badge {
    min-width: 18px;
    height: 18px;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--primary-dark);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.cart-count-badge.is-empty {
    display: none !important;
}

.cart-chip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(23.5rem, 90vw);
    background: #fff;
    border: 1px solid #dde6de;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(17, 30, 22, 0.16);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.22s ease;
    z-index: 320;
}

.cart-chip-wrap:hover .cart-dropdown,
.cart-chip-wrap:focus-within .cart-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-dropdown__content {
    padding: 0.9rem 0.95rem 0.95rem;
}

.cart-dropdown__title {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #2a3a2f;
}

.cart-dropdown .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: min(21rem, 60vh);
    overflow-y: auto;
}

.cart-dropdown .woocommerce-mini-cart-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.55rem 0.7rem;
    align-items: start;
    padding: 0.55rem 0;
    border-top: 1px solid #edf1ed;
}

.cart-dropdown .woocommerce-mini-cart-item:first-child {
    border-top: 0;
    padding-top: 0.15rem;
}

.cart-dropdown .woocommerce-mini-cart-item a {
    color: #203026;
    font-size: 0.81rem;
    font-weight: 600;
}

.cart-dropdown .woocommerce-mini-cart-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e3e9e3;
}

.cart-dropdown .woocommerce-mini-cart-item .remove {
    justify-self: end;
    width: 1.3rem;
    height: 1.3rem;
    line-height: 1.2rem;
    text-align: center;
    border-radius: 999px;
    color: #5f6f63 !important;
    background: #f4f7f4;
}

.cart-dropdown .woocommerce-mini-cart__total {
    margin: 0.7rem 0 0;
    padding-top: 0.7rem;
    border-top: 1px solid #e4ebe4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.86rem;
}

.cart-dropdown .woocommerce-mini-cart__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.cart-dropdown .woocommerce-mini-cart__buttons .button {
    margin: 0;
    min-height: 2.2rem;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 700;
    border: 1px solid #b7c8b7;
    background: #fff;
    color: #233326;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cart-dropdown .woocommerce-mini-cart__buttons .checkout {
    border-color: var(--primary-dark);
    background: linear-gradient(135deg, var(--primary-dark), #2f7a41);
    color: #fff;
}

.cart-dropdown .woocommerce-mini-cart__empty-message {
    margin: 0;
    color: #5d6d60;
    font-size: 0.81rem;
}

.cart-dropdown .gcs-mini-cart-extra-button {
    grid-template-columns: 1fr;
}

.account-link {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2c20;
}

.account-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #b8c8b8;
    border-radius: 999px;
    color: #1f2c20;
    background: #fff;
}

.account-icon-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.account-icon-btn:hover {
    background: #f4f8f4;
    border-color: #8fa88f;
}

.login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.28rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2c20;
    border: 1px solid #b8c8b8;
    border-radius: 999px;
    background: #fff;
}

.login-link:hover {
    border-color: #8fa88f;
    background: #f4f8f4;
}

.hero {
    padding: 1.4rem 0 2rem;
}

#content {
    background: #f5f6f6;
}

.category-strip {
    position: relative;
    border-top: 0;
    border-bottom: 0;
    background: #fff;
    z-index: 40;
    padding-top: 0.25rem;
    overflow: visible;
}

.category-strip-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    overflow: visible;
}

.category-item {
    position: static;
    display: inline-flex;
    align-items: center;
    padding-bottom: 1px;
}

.category-main-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-height: 30px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1f2c20;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.12rem 0.2rem;
    border-bottom: 2px solid transparent;
    box-sizing: border-box;
}

.category-arrow {
    font-size: 0.7rem;
    line-height: 1;
    color: currentColor;
    opacity: 0.7;
}

.category-item:hover .category-main-link,
.category-item:focus-within .category-main-link {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 200;
    display: none;
    box-sizing: border-box;
}

/* Megamenü: bündig unter .category-strip, ruhig breit + große, fotofreundliche Kacheln */
.category-dropdown--mega {
    padding: 0.45rem 0 0;
    background: #fff;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid #e0e5e1;
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(20, 35, 25, 0.1);
}

.category-mega-inner {
    max-width: min(68rem, 100%);
    margin-left: auto;
    margin-right: auto;
    padding: 0.65rem 0 0.95rem;
}

.category-mega-inner--columns {
    max-width: min(90rem, 100%);
    padding: 0.9rem 0.75rem 1.1rem;
}

.category-mega-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
    gap: 0.9rem 1.25rem;
    align-items: start;
    margin: 0;
    padding: 0;
}

@media (min-width: 1200px) {
    .category-mega-columns {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.category-mega-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
}

.category-mega-col__media {
    position: relative;
    display: block;
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid #d9dfdb;
    background: linear-gradient(150deg, #e8efe6 0%, #eef3ec 100%);
    aspect-ratio: 5 / 3;
    line-height: 0;
    box-shadow: 0 1px 0 rgba(20, 35, 25, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-mega-col__media:hover,
.category-mega-col__media:focus-visible {
    border-color: rgba(61, 143, 41, 0.45);
    box-shadow: 0 0 0 1px rgba(61, 143, 41, 0.08);
    outline: 0;
}

.category-mega-col__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-mega-col__badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    padding: 0.2rem 0.42rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(120deg, #d63384, #c82b9b);
    border-radius: 4px;
    line-height: 1.2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.category-mega-col__title {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.35;
    color: #141c14;
    text-decoration: none;
    text-wrap: balance;
    padding: 0 0.05rem;
    transition: color 0.2s ease;
}

.category-mega-col__title:hover,
.category-mega-col__title:focus-visible {
    color: var(--primary);
    outline: 0;
}

.category-mega-col__list {
    list-style: none;
    margin: 0.1rem 0 0;
    padding: 0 0.1rem 0.15rem 0.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.category-mega-col__list a {
    font-size: 0.69rem;
    line-height: 1.4;
    font-weight: 500;
    color: #4a5a4d;
    text-decoration: none;
    display: block;
    padding: 0.1rem 0;
    border-radius: 3px;
}

.category-mega-col__list a:hover,
.category-mega-col__list a:focus-visible {
    color: #1a2418;
    text-decoration: underline;
    outline: 0;
}

.category-mega-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1.05rem 1.1rem;
    align-items: stretch;
}

.category-mega-grid__cell {
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
}

.category-mega-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    text-align: left;
    text-decoration: none;
    color: #1a2418;
    background: #fcfdfc;
    border: 1px solid #d9dfdb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(20, 35, 25, 0.04);
    transition:
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        transform 0.2s ease;
}

.category-mega-tile:hover,
.category-mega-tile:focus-visible {
    border-color: rgba(61, 143, 41, 0.5);
    box-shadow:
        0 0 0 1px rgba(61, 143, 41, 0.1),
        0 6px 18px rgba(20, 35, 25, 0.08);
    transform: translateY(-1px);
    outline: 0;
}

.category-mega-tile:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
}

.category-mega-tile__media {
    position: relative;
    display: block;
    aspect-ratio: 5 / 3;
    min-height: 7.5rem;
    max-height: 11.5rem;
    background: linear-gradient(150deg, #e8efe6 0%, #eef3ec 100%);
    border-bottom: 1px solid rgba(217, 223, 219, 0.85);
    overflow: hidden;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

.category-mega-tile__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-mega-tile__badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    padding: 0.2rem 0.42rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(120deg, #d63384, #c82b9b);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.category-mega-tile__body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.65rem 0.7rem 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
}

.category-mega-tile__title {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    color: #141c14;
}

.category-mega-tile__meta {
    display: -webkit-box;
    font-size: 0.74rem;
    line-height: 1.4;
    font-weight: 500;
    color: #4d5c50;
    letter-spacing: 0.01em;
    margin-top: auto;
    padding-top: 0;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 900px) {
    .category-mega-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .category-mega-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-mega-inner {
        max-width: none;
    }

    .category-mega-tile__title {
        font-size: 0.7rem;
    }

    .category-mega-tile__meta {
        font-size: 0.65rem;
    }

    .category-mega-tile__media {
        min-height: 5.5rem;
        max-height: 8.5rem;
    }

    .category-mega-inner--columns {
        padding: 0.6rem 0.45rem 0.85rem;
    }

    .category-mega-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem 0.6rem;
    }

    .category-mega-col__list a {
        font-size: 0.65rem;
    }

    .category-dropdown--mega {
        max-height: min(78vh, 26rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.category-item:hover .category-dropdown,
.category-item:focus-within .category-dropdown {
    display: block;
}

.hero-copy {
    width: 100%;
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background-color: var(--surface);
    /* Weißer Schleier, Foto dezent sichtbar */
    background-image:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.84) 0%,
            rgba(255, 255, 255, 0.74) 100%
        ),
        url("../img/herobox-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
    padding: 2.25rem 2.5rem;
    overflow: hidden;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: #e8f5e7;
    padding: 0.3rem 0.7rem;
}

h1 {
    margin: 0.85rem 0;
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    line-height: 1.15;
}

.hero-copy h1 {
    max-width: 38ch;
}

.hero-copy h1 .hero-title-sub {
    display: inline-block;
    margin-top: 0.12em;
}

.hero-copy p {
    margin: 0;
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.section-standort .standort-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(1rem, 2.1vw, 1.55rem);
    align-items: start;
    margin-top: 0.25rem;
    max-width: 66rem;
    margin-left: auto;
    margin-right: auto;
}

.section-standort .standort-text p {
    margin: 0;
    color: var(--text);
    max-width: 40ch;
    line-height: 1.55;
}

.standort-text {
    --standort-label-w: 7.6rem;
}

/* Wie .standort-hours__list: feste Labelspalte, Adresszeilen exakt übereinander + bündig zur Uhrzeit-Spalte */
.standort-address-block {
    margin: 0;
    max-width: 40ch;
    display: grid;
    grid-template-columns: var(--standort-label-w, 7.6rem) 1fr;
    column-gap: 0.25rem;
    align-items: start;
}

.standort-address-block__label {
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
}

.standort-address-block__value {
    margin: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.standort-address-block .standort-address__line {
    display: block !important;
    margin-left: 0 !important;
    white-space: nowrap;
}

.standort-address-block__value br {
    display: none;
}

.standort-map-links {
    margin: 1.35rem 0 1.15rem !important;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 2.1rem;
    justify-content: center;
    margin-left: 0 !important;
    width: 100%;
    transform: translateX(-0.55cm);
}

.standort-route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    padding: 0.42rem 0.78rem;
    min-height: 36px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 450;
    color: var(--primary-dark);
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--primary-dark) 42%, #b8c7be);
    box-shadow: none;
    text-decoration: none;
}

.standort-route-btn span {
    font-weight: inherit;
}

.standort-route-btn:hover {
    transform: translateY(-0.5px);
    background: color-mix(in srgb, #6b7d73 10%, transparent);
    border-color: #8f9c95;
    box-shadow: none;
}

.standort-route-btn--google {
    color: #46514d;
    border-color: #aeb8b3;
}

.standort-route-btn--apple {
    color: #46514d;
    border-color: #aeb8b3;
}

.standort-route-btn--apple:hover {
    background: color-mix(in srgb, #6b7d73 10%, transparent);
    border-color: #8f9c95;
}

.standort-route-btn::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.standort-route-btn--google::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M12 21s-6-4.35-6-10a6 6 0 1 1 12 0c0 5.65-6 10-6 10z'/%3E%3Ccircle cx='12' cy='11' r='2.35' fill='none' stroke='currentColor' stroke-width='1.8'/%3E%3C/svg%3E");
}

.standort-route-btn--apple::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M16.9 12.5c0-2 1.6-3 1.7-3.1-1-.9-2.5-1-3-1-.3 0-1.6.1-2.4.8-.7.6-1.4.7-1.8.7-.4 0-1.2-.1-1.9-.7-.8-.6-2-.9-2.9-.9-2.5 0-4.8 2-4.8 5.4 0 1.5.6 3 1.3 4 .7 1 1.6 2.2 2.8 2.2.5 0 1.2-.2 1.8-.5.7-.3 1.1-.4 1.8-.4s1.1.1 1.8.4c.6.3 1.3.5 1.8.5 1.2 0 2-.9 2.8-2 .7-1 1.1-1.9 1.2-2 .1-.2-2.2-.9-2.2-3.4zm-2.8-6.2c.6-.8 1-2 .9-3.1-.9.1-2 .6-2.7 1.4-.6.7-1.1 1.8-1 2.9 1 .1 2.1-.5 2.8-1.2z'/%3E%3C/svg%3E");
}

.standort-map-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.standort-map-link:hover {
    color: var(--primary);
}

.standort-contact {
    margin: 0 0 0.3rem !important;
    max-width: 40ch;
    margin-left: 0 !important;
}

.standort-contact strong {
    display: inline-block;
    min-width: var(--standort-label-w);
    margin-right: 0.25rem;
    vertical-align: top;
}

.standort-contact-link {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    display: inline;
}

.standort-contact-link:hover {
    color: var(--primary);
}

.standort-meta {
    margin: 0.5rem 0 0.9rem !important;
    max-width: 48ch !important;
    color: var(--muted) !important;
    font-size: 0.87rem;
    line-height: 1.5;
}

.standort-figure .standort-meta {
    margin: 0.6rem 0 0 !important;
    width: 100%;
    max-width: none !important;
    text-align: left;
}

.standort-hours {
    max-width: 28rem;
    margin-bottom: 2.9rem;
}

.standort-hours__title {
    margin: 0 0 0.45rem !important;
    font-weight: 700;
}

.standort-hours__list {
    margin: 0;
    display: grid;
    grid-template-columns: 7.6rem auto;
    row-gap: 0.22rem;
    column-gap: 0.25rem;
}

.standort-hours__list dt,
.standort-hours__list dd {
    margin: 0;
}

.standort-hours__list dt {
    white-space: nowrap;
}

.standort-hours__list dd {
    color: var(--muted);
    transform: none;
}

.section-standort .standort-figure {
    margin: 0;
}

.standort-foto {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.standort-foto-placeholder {
    min-height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    background: #e8ede9;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.standort-foto-hint {
    max-width: 20rem;
}

@media (max-width: 768px) {
    .section-standort .standort-grid {
        grid-template-columns: 1fr;
    }
}

.section {
    padding: 2.4rem 0;
}

.section-soft {
    background: var(--surface-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

#standort.section-soft,
section#standort.section-soft {
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* Newsletter: schmales „Banner“ nur durch Linien; kein eigener Hintergrund */
#newsletter.newsletter-cta,
section.newsletter-cta {
    background: transparent;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    padding-top: 1.45rem;
}

.newsletter-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 21.5rem);
    align-items: center;
    gap: 0.85rem 1.3rem;
    max-width: 100%;
    margin: 0;
}

.newsletter-cta__heading-wrap {
    padding-top: 3.75rem;
}

.newsletter-cta__heading-wrap .usp-section-title {
    margin-top: 0;
    margin-bottom: 1.1rem;
}

.newsletter-cta__content {
    position: relative;
    text-align: left;
    min-width: 0;
    margin-left: 0;
    padding-left: 0;
    transform: translateX(4.85cm);
    z-index: 0;
}

.newsletter-cta__content::before {
    content: "";
    position: absolute;
    left: -4.15cm;
    top: 50%;
    width: clamp(6.8rem, 14vw, 9.3rem);
    aspect-ratio: 1 / 1;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.16;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='23' fill='none' stroke='%235dbb3d' stroke-width='2'/%3E%3Ccircle cx='32' cy='32' r='1.9' fill='%235dbb3d'/%3E%3Cpath d='M32 32V20M32 32L42 38' fill='none' stroke='%235dbb3d' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M32 8v4M32 52v4M8 32h4M52 32h4M15.5 15.5l2.8 2.8M45.7 45.7l2.8 2.8M48.5 15.5l-2.8 2.8M18.3 45.7l-2.8 2.8' fill='none' stroke='%235dbb3d' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Gleiche Ebenen-Typo wie #standort .section-title (Schriftgröße via .section-title) */
.newsletter-cta__title.section-title,
.newsletter-cta h2.section-title {
    text-align: left;
    width: 100%;
    max-width: none;
    margin: 0 0 0.5rem;
    line-height: 1.2;
    font-size: clamp(1.02rem, 1.45vw, 1.22rem);
    font-weight: 650;
    color: var(--text);
    letter-spacing: 0;
}

.newsletter-cta__lead,
.newsletter-cta__note {
    margin: 0 0 0.2rem;
    max-width: 40rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted);
}

.newsletter-cta__legal {
    margin: 0.5rem 0 1.1rem;
    max-width: 40rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--muted);
}

.newsletter-cta__legal-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.newsletter-cta__legal-link:hover {
    color: var(--primary);
}

.newsletter-cta__feedback {
    margin: 0 0 0.9rem;
    max-width: 40rem;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
}

.newsletter-cta__feedback--ok {
    background: color-mix(in srgb, var(--primary) 12%, #fff);
    color: #2a3d28;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, #ddeee0);
}

.newsletter-cta__feedback--err {
    background: #fff4f0;
    color: #6b2d20;
    border: 1px solid #e8c8be;
}

.newsletter-cta__form {
    width: 100%;
    max-width: 24rem;
    margin: 0;
    justify-self: end;
    align-self: center;
    transform: translateX(-4cm);
}

.newsletter-cta__input-group {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    min-height: var(--touch-min, 44px);
    border-radius: 999px;
    box-shadow: 0 0 0 1px var(--line);
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.newsletter-cta__form-note {
    margin: 0.52rem 0 0;
    padding-left: 0.1cm;
    font-size: 0.77rem;
    line-height: 1.42;
    color: #6a726f;
    text-align: left;
    width: 100%;
    max-width: none;
}

.newsletter-cta__input-group:focus-within {
    box-shadow: 0 0 0 1px var(--primary-dark), 0 0 0 4px color-mix(in srgb, var(--primary) 20%, #fff);
}

.newsletter-cta__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    margin: 0;
    padding: 0.55rem 0.9rem 0.55rem 1.05rem;
    font: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: #fff;
    outline: none;
}

.newsletter-cta__input::placeholder {
    color: #9aa2a0;
}

.newsletter-cta__submit {
    flex: 0 0 auto;
    border: 1px solid transparent;
    margin: 0;
    padding: 0.55rem 1.1rem 0.55rem 1.05rem;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    box-shadow: 0 4px 12px rgba(47, 157, 70, 0.22);
    cursor: pointer;
    border-radius: 0 999px 999px 0;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter-cta__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(47, 157, 70, 0.3);
    filter: none;
}

.newsletter-cta__submit:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(47, 157, 70, 0.22);
}

@supports not (background: color-mix(in srgb, red, red)) {
    .newsletter-cta__feedback--ok {
        background: #e8f5e5;
        border-color: #c4e0b8;
    }
    .newsletter-cta__input-group:focus-within {
        box-shadow: 0 0 0 1px var(--primary-dark);
    }
}

@media (max-width: 700px) {
    .newsletter-cta__grid {
        grid-template-columns: 1fr;
    }

    .newsletter-cta__content {
        margin-left: 0;
        padding-left: 0;
        transform: none;
    }

    .newsletter-cta__form {
        justify-self: stretch;
        max-width: none;
        transform: none;
    }

    .newsletter-cta__form-note {
        text-align: left;
    }
}

.section-compact {
    padding-top: 0.2rem;
}

.section-title {
    margin: 0 0 1rem;
    font-size: 1.55rem;
}

/* Top-Angebote: zentriert über den Produktkarten, feiner Trennstrich in sanftem Hellgrün */
#topseller .section-title {
    text-align: center;
    width: 100%;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

#kategorien .section-title,
#faq-antworten .section-title {
    text-align: center;
    width: 100%;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

#kategorien .section-title::after,
#faq-antworten .section-title::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 2px;
    border-radius: 2px;
    margin: 0.55rem auto 0;
    background: color-mix(in srgb, var(--primary) 28%, #e8f3e4);
    box-shadow: 0 1px 0 rgba(60, 143, 41, 0.06);
}

#topseller .section-title::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 2px;
    border-radius: 2px;
    margin: 0.55rem auto 0;
    background: color-mix(in srgb, var(--primary) 28%, #e8f3e4);
    box-shadow: 0 1px 0 rgba(60, 143, 41, 0.06);
}

#standort .section-title {
    text-align: center;
    width: 100%;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

#standort .section-title::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 2px;
    border-radius: 2px;
    margin: 0.55rem auto 0;
    background: color-mix(in srgb, var(--primary) 28%, #e8f3e4);
    box-shadow: 0 1px 0 rgba(60, 143, 41, 0.06);
}

@supports not (background: color-mix(in srgb, red, red)) {
    #kategorien .section-title::after,
    #faq-antworten .section-title::after,
    #topseller .section-title::after,
    #standort .section-title::after {
        background: #c4e0b8;
    }
}

.lead {
    margin: 0;
    color: var(--muted);
}

.feature-split {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.card h3 {
    margin: 0 0 0.5rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.section-usp {
    background: transparent;
    overflow: visible;
}

.section-usp .container {
    overflow: visible;
}

.usp-section-title {
    text-align: center;
    width: 100%;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.usp-section-title::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 2px;
    border-radius: 2px;
    margin: 0.55rem auto 0;
    background: color-mix(in srgb, var(--primary) 28%, #e8f3e4);
    box-shadow: 0 1px 0 rgba(60, 143, 41, 0.06);
}

@supports not (background: color-mix(in srgb, red, red)) {
    .trustpilot-title::after,
    .usp-section-title::after {
        background: #c4e0b8;
    }
}

.usp-benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    /* Mindestbreite pro Spalte: verhindert, dass 4 Spalten das USP-Icon (SVG) in der Zelle wegschneiden */
    grid-template-columns: repeat(4, minmax(10.5rem, 1fr));
    gap: clamp(0.9rem, 2vw, 1.6rem);
    overflow: visible;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
}

.usp-benefit {
    margin: 0;
    padding: 0.35rem 0.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.usp-benefit__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    min-height: 2.5rem;
    margin: 0 auto 0.7rem;
    /* Ein Grün passend zu Buttons / Chamäleon-Theme (--primary / --primary-dark) */
    color: var(--primary-dark);
    overflow: visible;
}

.usp-benefit__svg {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    overflow: visible;
}

.usp-benefit__title {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text, #111);
}

.usp-benefit__text {
    margin: 0.4rem 0 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 15rem;
}

.trustpilot-title {
    text-align: center;
    width: 100%;
    font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
    margin: 0 auto 0.16rem;
}

.trustpilot-title::after {
    display: none;
}

.trustpilot-carousel {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    display: block;
    position: relative;
    padding-bottom: 1.35rem;
}

.trustpilot-carousel__viewport {
    flex: 1;
    min-width: 0;
}

.trustpilot-title__topline {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-weight: 800;
    color: #191919;
    letter-spacing: -0.01em;
}

.trustpilot-title__stars {
    color: #00b67a;
    font-size: 0.82em;
    letter-spacing: 0.06em;
}

.trustpilot-title__score {
    margin: 0 0 1.55rem;
    text-align: center;
    font-size: 0.82rem;
    color: #555;
    font-weight: 600;
}

.trustpilot-carousel__panel {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trustpilot-carousel__panel[hidden] {
    display: none !important;
}

.trustpilot-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 0.85rem 0.8rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.trustpilot-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0 0 0.25rem;
}

.trustpilot-card__head .trustpilot-card__name {
    min-width: 0;
}

.trustpilot-card__time {
    flex-shrink: 0;
    margin: 0;
    max-width: 47%;
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.25;
    color: #8a9090;
    text-align: right;
    white-space: nowrap;
}

.trustpilot-card__name {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: #191919;
}

.trustpilot-card__stars {
    display: inline-flex;
    margin: 0 0 0.5rem;
    padding: 0;
    color: #00b67a;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.trustpilot-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
}

.trustpilot-star--empty {
    color: #c8d1cb;
}

.trustpilot-card__text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #2f2f2f;
}

.trustpilot-carousel__progress {
    width: 6rem !important;
    height: 4px;
    margin: 0;
    border-radius: 999px;
    background: #d8ddda;
    overflow: hidden;
    position: static;
    transform: none;
}

.trustpilot-carousel__status {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    z-index: 2;
}

.trustpilot-carousel__dots {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.trustpilot-carousel__dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary-dark) 35%, #cfe8d7);
    display: inline-block;
}

.trustpilot-carousel__dot.is-active {
    background: var(--primary-dark);
}

.trustpilot-carousel__progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    background: var(--primary-dark) !important;
}


.category-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
    padding: 1rem;
    border: 1px solid #cfe0cc;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f8fcf7);
}

.category-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background: #e8f5e7;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.75rem;
}

.category-card h3 {
    margin: 0.7rem 0 0.4rem;
    font-size: 1rem;
}

.category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.category-intro {
    max-width: 68rem;
    margin: 0 auto;
    padding: 0;
}

.category-intro p {
    margin: 0;
    color: #2a342d;
    line-height: 1.6;
    font-size: 0.98rem;
    text-align: center;
}

.category-intro__link {
    color: #4ca63f;
    font-weight: 600;
    text-decoration: none;
}

.category-intro__link:hover {
    color: #3d8f32;
    text-decoration: underline;
}

.product-grid {
    display: grid;
    gap: 0.8rem;
    align-items: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid .product-card--with-image {
    height: 100%;
}

/* Topseller gezielt kleiner: 5 Karten pro Reihe */
#topseller .product-grid {
    gap: 0.65rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Top-Angebote: Pfeile links/rechts, zufälliger Wechsel Demo-Sets (siehe main.js) */
.topseller-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.topseller-carousel__viewport {
    flex: 1;
    min-width: 0;
    position: relative;
}

.topseller-carousel__panel[hidden] {
    display: none !important;
}

.topseller-carousel__panel {
    width: 100%;
}

.topseller-carousel__arrow {
    flex-shrink: 0;
    align-self: center;
    width: 2.75rem;
    min-height: var(--touch-min, 44px);
    margin: 0;
    padding: 0 0.1rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    box-shadow: none;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.topseller-carousel__dots {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
}

.topseller-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d5d8d6;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.topseller-carousel__dot:hover {
    background: #b8bebb;
}

.topseller-carousel__dot.is-active {
    background: #6e7471;
    transform: scale(1.08);
}

.topseller-carousel__arrow:hover {
    background: transparent;
    color: var(--primary-dark);
    opacity: 0.95;
}

.topseller-carousel__arrow:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.topseller-carousel__arrow:focus:not(:focus-visible) {
    outline: none;
}

.topseller-carousel__arrow-icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    opacity: 0.75;
    user-select: none;
}

.topseller-carousel__arrow:hover .topseller-carousel__arrow-icon {
    opacity: 1;
}

@media (max-width: 640px) {
    .topseller-carousel {
        gap: 0.2rem;
    }

    .topseller-carousel__arrow {
        width: 2.25rem;
        min-width: 2.25rem;
    }
}

.product-card {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.product-card--with-image {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.product-card--with-image .product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, #f3f3f3 0%, #e8e8e8 100%);
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a.product-card__media:focus {
    outline: 2px solid var(--primary);
    outline-offset: 0;
    z-index: 1;
}

a.product-card__media:focus .product-card__img {
    opacity: 0.95;
}

/* Dezente, halbtransparente Badges; leichtes Frostglas über dem Foto */
.product-card__tag {
    position: absolute;
    z-index: 1;
    top: 0.55rem;
    right: 0.55rem;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.28rem 0.6rem;
    line-height: 1.2;
    box-shadow: none;
    border: 1px solid rgba(31, 44, 32, 0.12);
    color: rgba(28, 60, 30, 0.82);
    background: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    -webkit-backdrop-filter: blur(7px) saturate(1.1);
    backdrop-filter: blur(7px) saturate(1.1);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .product-card__tag {
        background: rgba(241, 247, 241, 0.75);
    }
}

.product-card__tag--new {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(35, 75, 38, 0.78);
    border-color: rgba(60, 143, 41, 0.14);
    background: rgba(232, 245, 231, 0.42);
}

/* Sale-Badge wie Shop-Referenz: oben links, kräftiges Rot */
.product-card__tag--sale {
    left: 0.5rem;
    right: auto;
    top: 0.5rem;
    padding: 0.22rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: #d42f2f;
    border: none;
    border-radius: 3px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.product-card__tag--bestseller {
    max-width: calc(100% - 1.1rem);
    line-height: 1.25;
    font-size: 0.62rem;
    text-align: left;
    right: 0.55rem;
    left: auto;
    top: 0.55rem;
    white-space: normal;
    hyphens: auto;
    font-weight: 500;
    color: rgba(32, 58, 34, 0.78);
    border-color: rgba(50, 90, 55, 0.11);
    background: rgba(236, 246, 234, 0.38);
}

.product-card__body {
    padding: 0.85rem 0.9rem 0.95rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    text-align: center;
    align-items: stretch;
}

.product-card__variant {
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.5rem;
    text-align: left;
    align-self: stretch;
    flex-shrink: 0;
    min-height: 3.45rem;
    box-sizing: border-box;
}

.product-card__variant--empty {
    border: 0;
}

.product-card__variant-label {
    display: block;
    margin: 0 0 0.28rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.product-card__variant-select {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0.35rem 0.55rem;
    font: inherit;
    font-size: 0.85rem;
    line-height: 1.2;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6963' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.45rem center;
    background-size: 0.85rem;
    padding-right: 1.75rem;
}

.product-card__variant-select:hover {
    border-color: rgba(60, 143, 41, 0.35);
}

.product-card__variant-select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
    border-color: var(--primary-dark);
}

/* Preisblöcke (normal / Sale); einheitliche zweite Zeile (Sale vs. Platzhalter) */
.product-card__price-wrap {
    width: 100%;
    margin: 0 0 0.65rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 3.45rem;
    box-sizing: border-box;
}

.product-card__price-current {
    margin: 0 0 0.15rem;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
}

.product-card__price-current--sale,
.product-card__price-wrap--sale .product-card__price-current--sale,
.product-card__price-wrap--sale .woocommerce-Price-amount {
    font-size: 1.08rem;
    color: #d32f2f;
}

.product-card__price-asterisk {
    font-weight: 700;
    font-size: 0.95em;
    opacity: 0.9;
}

.product-card__price-old {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.35;
}

.product-card__price-old del {
    text-decoration: line-through;
    color: #8a9190;
}

.product-card__price-old-label {
    margin-right: 0.2rem;
}

.product-card__price-old--spacer {
    visibility: hidden;
    user-select: none;
    min-height: 1.35em;
}

/* WooCommerce-Preis in Kachel zentriert */
.product-card__price-wrap--wc .product-card__price--wc {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
}

.product-card__price-wrap--wc.product-card__price-wrap--sale .woocommerce-Price-amount,
.product-card__price-wrap--wc.product-card__price-wrap--sale ins .woocommerce-Price-amount {
    color: #d32f2f;
    text-decoration: none;
}

.product-card__price-wrap--wc .price del,
.product-card__price-wrap--wc .price del .woocommerce-Price-amount {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    opacity: 1;
    display: block;
    margin-top: 0.2rem;
}

/* Mengen + Warenkorb */
.product-card__actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    max-width: 16.5rem;
    margin: 0 auto 0.55rem;
    min-height: 2.5rem;
    flex-shrink: 0;
    align-self: center;
}

.product-card__qty {
    display: flex;
    flex: 1;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.product-card__qty-btn {
    flex: 0 0 2.15rem;
    margin: 0;
    padding: 0;
    border: none;
    background: #fff;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.12s ease;
}

.product-card__qty-btn:hover {
    background: #f4f4f4;
}

.product-card__qty-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    z-index: 1;
}

.product-card__qty-input {
    flex: 1;
    min-width: 0;
    margin: 0;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 0.4rem 0.2rem;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: #f5f5f5;
    color: var(--ink);
    appearance: textfield;
    -moz-appearance: textfield;
}

.product-card__qty-input::-webkit-outer-spin-button,
.product-card__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card__cart-btn {
    flex: 0 0 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: #3a8a35;
    color: #fff;
    line-height: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: background 0.15s ease, transform 0.1s ease;
    text-decoration: none;
    cursor: pointer;
}

.product-card__cart-btn:hover {
    background: #2d6b29;
    color: #fff;
}

.product-card__cart-btn:focus {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

.product-card__cart-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__cart-btn-icon svg,
.product-card__cart-btn-icon svg path {
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.woocommerce a.add_to_cart_button svg,
.woocommerce .single_add_to_cart_button svg,
.woocommerce a.add_to_cart_button svg path,
.woocommerce .single_add_to_cart_button svg path {
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-card__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.3;
}

.product-card__title {
    margin: 0 0 0.45rem;
    text-align: center;
    max-width: 100%;
    align-self: center;
    width: 100%;
    min-height: calc(1.35em * 2);
    line-height: 0;
    font-size: 0;
}

.product-card__title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.35;
    font-size: 0.95rem;
    font-weight: 600;
    min-height: calc(1.35em * 2);
    max-height: calc(1.35em * 2);
    text-decoration: none;
    color: var(--ink);
}

.product-card__title a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Legacy-Preisklassen (Woo/ältere Markup) – Heimat-Karten nutzen .product-card__price-wrap */
.product-card__price--on-sale .product-card__price-now,
.product-card__price--on-sale ins .woocommerce-Price-amount,
.product-card__price--on-sale ins,
.product-card__price--on-sale .woocommerce-Price-amount bdi {
    color: #d32f2f;
}

.product-card__price--on-sale .product-card__price-was,
.product-card__price del {
    font-size: 0.88em;
    font-weight: 600;
    text-decoration: line-through;
    color: var(--muted);
}

ins .woocommerce-Price-amount,
.product-card__price ins {
    text-decoration: none;
    font-style: normal;
}

.product-card__status {
    margin: 0 0 0.7rem;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.35;
}

.product-card--with-image .product-card__actions {
    margin-top: auto;
}

.product-card__stock {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
    padding-top: 0.1rem;
    min-height: 1.4em;
    flex-shrink: 0;
}

.product-card__price-wrap--wc .price {
    display: block;
    text-align: center;
}

.product-card__stock--in {
    color: #4aad42;
    letter-spacing: 0.01em;
}

.product-card__stock--out {
    color: #8a4a3a;
    font-weight: 600;
}

.product-badge {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    background: #edf9ec;
    color: var(--primary-dark);
}

.product-card h3:not(.product-card__title) {
    margin: 1.3rem 0 0.6rem;
    font-size: 1rem;
    min-height: 2.7rem;
}

.product-price {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
}

.product-status {
    margin: 0.25rem 0 0.95rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.content-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 2fr 1fr;
}

.page-shell {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

.page-card h1 {
    margin-top: 0;
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content > *:last-child {
    margin-bottom: 0;
}

.page-head {
    margin-bottom: 1rem;
}

.page-head h1 {
    margin: 0;
}

.page-content--prose {
    max-width: 65ch;
    color: var(--text);
    line-height: 1.65;
}

.page-content--prose > * + * {
    margin-top: 1rem;
}

.page-content--prose h2 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.page-content--prose h3 {
    font-size: 1.05rem;
    margin-top: 1.35rem;
}

.page-content--prose ul,
.page-content--prose ol {
    margin: 0.5rem 0 0;
    padding-left: 1.35rem;
}

.page-content--prose a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.page-content--prose a:hover {
    color: var(--primary);
}

/* ——— FAQ-Seite (professioneller Aufbau) ——— */
.faq-hero .faq-hero__copy {
    max-width: 52rem;
}

.faq-hero__lead {
    margin: 0 0 1.35rem;
    color: var(--muted);
    line-height: 1.62;
    font-size: 1.02rem;
}

.faq-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    margin: 0 0 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 247, 241, 0.65) 100%);
    box-shadow: 0 2px 14px rgba(31, 44, 32, 0.06);
}

.faq-hero__stat {
    text-align: center;
    padding: 0.35rem 0.25rem;
    border-right: 1px solid rgba(217, 223, 220, 0.85);
}

.faq-hero__stat:last-child {
    border-right: 0;
}

.faq-hero__stat-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    line-height: 1.25;
}

.faq-hero__stat-label {
    display: block;
    margin-top: 0.28rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.35;
}

.faq-hero__actions.hero-actions {
    flex-wrap: wrap;
}

.faq-page__container {
    max-width: min(72rem, 100%);
}

.faq-page__intro {
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.faq-page__intro p {
    margin: 0;
    color: #2a342d;
    line-height: 1.65;
    font-size: 1rem;
    text-align: center;
}

.faq-page__editor {
    margin: 0 auto 2.25rem;
    max-width: 48rem;
}

.faq-page__toolbar {
    margin: 0 auto 2rem;
    max-width: 36rem;
}

.faq-page__search-wrap {
    position: relative;
    display: block;
}

.faq-page__search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7a72;
    pointer-events: none;
    display: flex;
}

.faq-page__search-input {
    width: 100%;
    margin: 0;
    padding: 0.78rem 1rem 0.78rem 2.85rem;
    font: inherit;
    font-size: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(31, 44, 32, 0.05);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-page__search-input::placeholder {
    color: #8e9692;
}

.faq-page__search-input:focus {
    border-color: color-mix(in srgb, var(--primary-dark) 35%, var(--line));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.faq-page__search-hint {
    margin: 0.55rem 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.45;
}

.faq-page__layout {
    display: grid;
    grid-template-columns: minmax(12rem, 14.5rem) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
}

.faq-page__sidebar {
    position: sticky;
    top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.faq-page__sidebar-title {
    margin: 0 0 0.75rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--muted);
}

.faq-page__toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.faq-page__toc-link {
    display: block;
    padding: 0.45rem 0.5rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #3a4a3e;
    line-height: 1.35;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.faq-page__toc-link:hover {
    background: #eef6ed;
    color: var(--primary-dark);
}

.faq-page__main {
    min-width: 0;
}

.faq-page__panel {
    padding: clamp(1rem, 2vw, 1.35rem);
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 12px 40px rgba(31, 44, 32, 0.07);
}

.faq-page__group {
    scroll-margin-top: 6.5rem;
    margin-bottom: 2.35rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
}

.faq-page__group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.faq-page__group--hidden {
    display: none !important;
}

.faq-page__group-title {
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-weight: 750;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0 0 0.45rem;
    line-height: 1.25;
}

.faq-page__group-lead {
    margin: 0 0 1.1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--muted);
    max-width: 52ch;
}

.faq-page__accordion .faq-detail {
    border: 1px solid #e2e8e4;
    border-radius: 11px;
    padding: 0;
    margin-top: 0.55rem;
    background: #fdfffe;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-page__accordion .faq-detail:first-of-type {
    margin-top: 0;
}

.faq-page__accordion .faq-detail:hover {
    border-color: color-mix(in srgb, var(--primary) 22%, var(--line));
}

.faq-page__accordion .faq-detail[open] {
    border-color: color-mix(in srgb, var(--primary-dark) 28%, var(--line));
    box-shadow: 0 4px 16px rgba(60, 143, 41, 0.08);
}

.faq-page__accordion .faq-detail.faq-detail--hidden {
    display: none !important;
}

.faq-page__accordion details summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 0.82rem 2.6rem 0.82rem 1.05rem;
    font-weight: 650;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text);
}

.faq-page__accordion details summary::-webkit-details-marker {
    display: none;
}

.faq-page__accordion details summary::after {
    content: "";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.22s ease;
    opacity: 0.85;
}

.faq-page__accordion details[open] summary::after {
    transform: translateY(-25%) rotate(225deg);
}

.faq-page__accordion details summary:focus {
    outline: none;
}

.faq-page__accordion details summary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-page__accordion details p {
    margin: 0;
    padding: 0 1.05rem 1rem 1.05rem;
    border-top: 1px solid rgba(217, 223, 220, 0.65);
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.62;
}

.faq-inline-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.faq-inline-link:hover {
    color: var(--primary);
}

.faq-page__cta {
    margin-top: 2.5rem;
    padding: 0;
}

.faq-page__cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: clamp(1.15rem, 2.5vw, 1.65rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--line));
    background: linear-gradient(135deg, #f6fbf4 0%, #ffffff 48%, #f3faf1 100%);
    box-shadow: 0 10px 32px rgba(47, 120, 55, 0.1);
}

.faq-page__cta-text {
    max-width: 36rem;
    min-width: min(100%, 18rem);
}

.faq-page__cta-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.faq-page__cta-title {
    margin: 0 0 0.45rem;
    font-size: 1.12rem;
    font-weight: 750;
    color: var(--text);
    line-height: 1.3;
}

.faq-page__cta-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted);
}

.faq-page__cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.faq-page__cta-link {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-page__cta-link:hover {
    border-color: color-mix(in srgb, var(--primary-dark) 35%, var(--line));
    box-shadow: 0 2px 10px rgba(31, 44, 32, 0.06);
}

.faq-page__cta-link-label {
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
}

.faq-page__cta-link-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 960px) {
    .faq-page__layout {
        grid-template-columns: 1fr;
    }

    .faq-page__sidebar {
        position: static;
    }

    .faq-page__toc-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .faq-page__toc-link {
        padding: 0.4rem 0.75rem;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: #fafcfb;
        font-size: 0.78rem;
    }

    .faq-hero__stats {
        grid-template-columns: 1fr;
    }

    .faq-hero__stat {
        border-right: 0;
        border-bottom: 1px solid rgba(217, 223, 220, 0.85);
        padding: 0.5rem 0;
    }

    .faq-hero__stat:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .faq-page__cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-page__cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-page__cta-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

@supports not (border-color: color-mix(in srgb, red, blue)) {
    .faq-page__search-input:focus {
        border-color: var(--primary-dark);
        box-shadow: 0 0 0 2px rgba(93, 187, 61, 0.25);
    }

    .faq-page__group {
        border-bottom-color: var(--line);
    }
}

.kontakt-quick {
    display: grid;
    gap: 1rem 1.5rem;
    margin: 0 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .kontakt-quick {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kontakt-quick__item--span {
        grid-column: 1 / -1;
    }
}

.kontakt-quick__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.kontakt-quick__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.kontakt-quick__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

a.kontakt-quick__value:hover {
    color: var(--primary-dark);
}

.kontakt-quick__value--multiline span {
    display: block;
    line-height: 1.45;
}

.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.8rem;
}

.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    border-radius: 12px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: linear-gradient(120deg, var(--primary), var(--accent));
    color: #09210d;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    padding: 0.65rem 1rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-checkout .woocommerce-checkout,
.woocommerce-cart-form,
.cart-collaterals {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding-left: 1rem;
}

.shop-filter-bar {
    margin-bottom: 1rem;
    display: grid;
    gap: 0.8rem;
}

.shop-filter-bar h2 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
}

.shop-filter-bar p {
    margin: 0;
}

.shop-filter-group {
    display: grid;
    gap: 0.4rem;
}

.shop-filter-group span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2f4333;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.chip:hover {
    background: #eef7ed;
}

.chip-brand {
    border-color: #cce5c9;
    background: #f4fbf3;
}

.site-footer {
    margin-top: 0;
    padding: 2.75rem 0 2rem;
    background: linear-gradient(170deg, #1a1d24 0%, #22262f 48%, #1b1e26 100%);
    color: #c4c8d0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.2);
}

.site-footer-inner {
    max-width: 100%;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer-brand {
    min-width: 0;
    max-width: 19rem;
}

.site-footer-brand-link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    color: inherit;
    max-width: 100%;
}

.site-footer-logo-img {
    display: block;
    height: 3.4rem;
    width: auto;
    max-width: 14.5rem;
    object-fit: contain;
    object-position: left center;
}

/* Wie im Header, aber: dunkles (schwarzes) Wort/Logo füllt sich auf dem dunklen Footer als Weiß. */
/* Ohne chameleon-logo-footer.*: ggf. ganzes Markenzeichen einfarbig hell (üblich in Footern). */
/* Mit assets/img/chameleon-logo-footer.png|svg: eigene Fassung, ohne diesen Filter. */
.site-footer-logo-img--on-dark {
    filter: brightness(0) invert(1);
}

/* Kein Tarn-Animation im Footer, nur statisch wie gewünscht (ohne Header-Slogan) */
.site-footer-logo-fallback {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #f0f2f5;
}

.site-footer-tagline {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #9ba2b0;
    max-width: 22ch;
}

.site-footer-heading {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8b95a8;
}

.site-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.site-footer-links a {
    color: #d8dce3;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
}

.site-footer-links a:hover {
    color: #f2f4f7;
}

.site-footer-payments-intro {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: #9ba2b0;
    line-height: 1.45;
}

.site-footer-payment-grid {
    width: 100%;
    max-width: min(12.5rem, 100%);
    padding: 0.1rem 0.25rem;
    box-sizing: border-box;
}

.site-footer-payment-badges {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-payment-badges--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.45rem;
    column-gap: 0.36rem;
    width: 100%;
    align-items: stretch;
}

.site-footer-payment-badges--grid > li {
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.site-footer-payment-tile {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.05rem;
    box-sizing: border-box;
    padding: 0.28rem 0.2rem;
    background: #fff;
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: none;
    line-height: 0;
}

/* Einheitliches Maximalmaß: Logos füllen die Kachel gleichmäßig, Seitenverhältnis erhalten */
.site-footer-payment-badges--grid .site-footer-payment-logo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 1.58rem;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    flex-shrink: 1;
}

/* Vollflächiges 24×24-Badge wirkte optisch größer als Wortbilder – leicht reduzieren */
.site-footer-payment-badges--grid .site-footer-payment-logo--klarna {
    max-height: 1.44rem;
}

.site-footer-bar {
    padding-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.site-footer-copy {
    margin: 0;
    font-size: 0.82rem;
    color: #7b818d;
    text-align: center;
}

@media (max-width: 960px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Nach-oben (unten rechts) */
.back-to-top {
    position: fixed;
    z-index: 90;
    right: max(1.1rem, env(safe-area-inset-right, 0));
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0));
    width: 2.9rem;
    height: 2.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #3a4250, #2c323d);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.4rem) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.42);
    filter: brightness(1.05);
}

.back-to-top:focus {
    outline: 0;
}

.back-to-top:focus-visible {
    outline: 2px solid #6b7c99;
    outline-offset: 3px;
}

.back-to-top-icon {
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}

@media (max-width: 1200px) {
    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    }
}

@media (max-width: 1050px) {
    .usp-benefit-list,
    .trustpilot-carousel__panel,
    .category-grid,
    .product-grid,
    .feature-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Tablet + Handy: Logo / Slogan, darunter volle Breite Suche (Suchfeld bleibt nutzbar) */
@media (max-width: 1023px) {
    .nav-wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        gap: 0.85rem;
    }

    a.header-brand {
        margin-left: 0;
        max-width: 100%;
    }

    .header-search {
        order: 2;
        display: flex;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .header-search button {
        flex-shrink: 0;
    }

    .nav-wrap .header-actions[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .usp-benefit-list,
    .trustpilot-carousel__panel,
    .category-grid,
    .product-grid,
    .feature-split,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 1rem 0 1.4rem;
    }

    .hero-copy {
        padding: 1.35rem 1.25rem;
    }

    .section {
        padding: 1.6rem 0;
    }

    .topbar {
        font-size: 0.7rem;
    }

    .topbar-wrap p::before,
    .topbar-wrap p::after {
        display: none;
    }

    .topbar-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem 0.5rem;
        text-align: center;
        line-height: 1.3;
    }

    .topbar-separator {
        display: none;
    }

    .page-nav a,
    .login-link,
    .cart-chip,
    .language-switch summary {
        min-height: var(--touch-min);
        min-width: 0;
    }

    .nav-wrap {
        padding-top: 0.85rem;
        padding-bottom: 0.95rem;
    }

    a.header-brand {
        --slogan-text-inset: 27.73px;
        max-width: 100%;
        margin-left: 0;
    }

    .header-brand .logo-wrap img {
        height: 5.25rem;
        max-width: min(100%, 20.4rem);
    }

    .brand-slogan {
        font-size: 0.72rem;
        white-space: normal;
        line-height: 1.35;
    }

    .header-search input[type="search"] {
        font-size: 1rem;
        min-height: 44px;
    }

    .header-search button {
        min-height: 44px;
        padding: 0.6rem 0.9rem;
    }

    .page-nav-actions {
        position: sticky;
        right: 0;
        background: #fff;
        padding-left: 0.35rem;
    }

    .page-nav-strip-inner,
    .category-strip-inner {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.2rem;
        margin-inline: calc(-1 * var(--content-gutter, 1.5cm));
        padding-inline: var(--content-gutter, 1.5cm);
    }


    .cart-dropdown {
        display: none;
    }

    nav.page-nav {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        max-width: none;
        z-index: auto;
        margin-left: 0;
    }

    .category-strip-inner {
        justify-content: flex-start;
    }

    .page-nav ul {
        flex-wrap: nowrap;
    }

    .site-footer {
        padding: 1.5rem 0  max(1.5rem, env(safe-area-inset-bottom, 0));
    }

    .woocommerce .woocommerce-MyAccount-content,
    .woocommerce-cart .woocommerce,
    .woocommerce-checkout .woocommerce {
        max-width: 100%;
    }

    .woocommerce table.shop_table {
        -webkit-overflow-scrolling: touch;
    }
}

/* Sehr schmale Displays */
@media (max-width: 380px) {
    .header-brand .logo-wrap img {
        height: 4.4rem;
    }

    a.header-brand {
        --slogan-text-inset: 24px;
    }

    .page-nav a {
        font-size: 0.74rem;
    }
}

