.fhs-app {
    --fhs-accent: #007340;
    --fhs-text: #1a1a1a;
    --fhs-muted: #6b7280;
    --fhs-card-bg: #f4f4f4;
    --fhs-card-bg-alt: #ececec;
    --fhs-card-hover: #ececec;
    --fhs-input-bg: #efeeec;
    --fhs-border: #d4d3d0;
    --fhs-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --fhs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --fhs-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--fhs-text);
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 56px;
    align-items: start;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "kern";
}
.fhs-app *,
.fhs-app *::before,
.fhs-app *::after { box-sizing: border-box; }

/* ---------- SIDEBAR ---------- */
.fhs-sidebar {
    position: sticky;
    top: 32px;
    animation: fhsSidebarIn 0.9s var(--fhs-ease-out) both;
}
.fhs-sidebar__title {
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
    color: var(--fhs-text);
    white-space: nowrap;
}
.fhs-sidebar__desc {
    font-size: 15px;
    line-height: 1.55;
    color: var(--fhs-text);
    margin: 0 0 28px;
    max-width: 340px;
}
.fhs-field { margin-bottom: 12px; }
.fhs-field select,
.fhs-field input {
    width: 100%;
    height: 56px;
    padding: 0 20px;
    font-size: 15px;
    background: var(--fhs-input-bg);
    color: var(--fhs-text);
    border: 1px solid transparent;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    transition: background-color 0.4s var(--fhs-ease),
                border-color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-ease),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-field input::placeholder {
    color: var(--fhs-muted);
    transition: color 0.4s var(--fhs-ease), opacity 0.3s var(--fhs-ease);
}
.fhs-field:hover input,
.fhs-field:hover select { background-color: #e7e6e3; }
.fhs-field input:focus,
.fhs-field select:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--fhs-text);
    box-shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.12);
}
.fhs-field input:focus::placeholder { opacity: 0.5; }

/* ---------- NEAR-ME BUTTON ---------- */
.fhs-field--nearme { margin-top: 8px; }
.fhs-nearme {
    width: 100%;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    background: transparent;
    color: var(--fhs-text);
    border: 1px solid var(--fhs-text);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.4s var(--fhs-ease),
                color 0.4s var(--fhs-ease),
                border-color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-ease),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-nearme:hover {
    background: var(--fhs-text);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -12px rgba(0,0,0,0.25);
}
.fhs-nearme:active { transform: translateY(0); }
.fhs-nearme:focus-visible {
    outline: 2px solid var(--fhs-accent);
    outline-offset: 2px;
}
.fhs-nearme:disabled { opacity: 0.75; cursor: progress; }
.fhs-nearme__icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.6s var(--fhs-ease-out);
}
.fhs-nearme:hover .fhs-nearme__icon { transform: translateY(-2px); }
.fhs-nearme.is-loading .fhs-nearme__icon {
    animation: fhsNearmePulse 1.2s ease-in-out infinite;
}
.fhs-nearme.is-active {
    background: var(--fhs-accent);
    border-color: var(--fhs-accent);
    color: #fff;
}
.fhs-nearme.is-active:hover {
    background: #a30d24;
    border-color: #a30d24;
}
.fhs-nearme.is-error {
    border-color: #b91c1c;
    color: #b91c1c;
    background: transparent;
}
@keyframes fhsNearmePulse {
    0%, 100% { transform: scale(1);    opacity: 1;   }
    50%      { transform: scale(1.15); opacity: 0.55; }
}

/* ---------- DISTANCE BADGE ---------- */
.fhs-item__distance {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    padding: 3px 10px;
    background: var(--fhs-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    vertical-align: 3px;
    animation: fhsDistanceIn 0.55s var(--fhs-ease-out) both;
    animation-delay: calc(min(var(--i, 0), 15) * 45ms + 200ms);
}
@keyframes fhsDistanceIn {
    0%   { opacity: 0; transform: scale(0.5) rotate(-4deg); }
    60%  { transform: scale(1.06) rotate(0); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}
.fhs-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
    cursor: pointer;
}

/* ---------- RESULTS ---------- */
.fhs-results { min-width: 0; }
.fhs-results__head {
    font-size: 15px;
    color: var(--fhs-text);
    margin: 0 0 20px;
    padding: 0 4px;
    animation: fhsFadeIn 0.7s var(--fhs-ease-out) both;
}
.fhs-results__head strong { font-weight: 700; }
.fhs-results__count,
.fhs-results__country-label {
    display: inline-block;
    transition: color 0.4s var(--fhs-ease);
}
.fhs-results__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: opacity 0.25s var(--fhs-ease);
}
.fhs-results__list.is-transitioning { opacity: 0.35; }

/* ---------- ITEM CARD ---------- */
.fhs-item {
    display: grid;
    grid-template-columns: 220px 1fr 200px;
    gap: 32px;
    padding: 32px 36px;
    background: var(--fhs-card-bg);
    border-radius: 20px;
    align-items: start;
    transition: background-color 0.5s var(--fhs-ease),
                transform 0.5s var(--fhs-ease),
                box-shadow 0.5s var(--fhs-ease);
    will-change: transform, opacity;
    animation: fhsItemIn 0.7s var(--fhs-ease-out) both;
    animation-delay: calc(min(var(--i, 0), 15) * 45ms);
}
.fhs-item:hover {
    background-color: var(--fhs-card-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px -16px rgba(0, 0, 0, 0.15);
}

.fhs-item__brand { display: flex; flex-direction: column; gap: 16px; }
.fhs-item__logo {
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
    display: block;
    transition: transform 0.6s var(--fhs-ease-out), filter 0.6s var(--fhs-ease);
}
.fhs-item:hover .fhs-item__logo { transform: scale(1.03); }
.fhs-item__logo--placeholder {
    width: 140px;
    height: 50px;
    background: #d4d3d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.fhs-item__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--fhs-text);
    line-height: 1.3;
}

.fhs-item__info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--fhs-text);
}
.fhs-item__addr,
.fhs-item__contact { display: flex; flex-direction: column; }
.fhs-item__contact a {
    color: var(--fhs-text);
    text-decoration: none;
    transition: color 0.35s var(--fhs-ease), transform 0.35s var(--fhs-ease);
    width: fit-content;
}
.fhs-item__contact a:hover { color: var(--fhs-accent); transform: translateX(2px); }

.fhs-item__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    min-height: 90px;
    height: 100%;
}
.fhs-item__social {
    display: flex;
    gap: 14px;
    align-items: center;
}
.fhs-item__social a {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: var(--fhs-text);
    transition: color 0.4s var(--fhs-ease), transform 0.4s var(--fhs-ease-out);
}
.fhs-item__social a:hover {
    color: var(--fhs-accent);
    transform: translateY(-2px) scale(1.08);
}
.fhs-item__social svg { width: 100%; height: 100%; fill: currentColor; }

.fhs-item__links { display: flex; gap: 28px; align-items: center; }
.fhs-item__links a {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: var(--fhs-text);
    padding-bottom: 4px;
    transition: color 0.35s var(--fhs-ease);
}
.fhs-item__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: left center;
    transition: transform 0.5s var(--fhs-ease-out), height 0.3s var(--fhs-ease);
}
.fhs-item__links a:hover::after {
    height: 2px;
    transform: scaleX(1);
}
.fhs-item__links a.is-webshop { color: var(--fhs-accent); }

/* ---------- STATES ---------- */
.fhs-empty,
.fhs-loading {
    padding: 48px 24px;
    text-align: center;
    color: var(--fhs-muted);
    font-size: 15px;
    background: var(--fhs-card-bg);
    border-radius: 20px;
    animation: fhsFadeIn 0.6s var(--fhs-ease-out) both;
}
.fhs-loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    vertical-align: -2px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: fhsSpin 0.8s linear infinite;
    opacity: 0.5;
}

/* ---------- DRAWER (Side-Sheet von links, 50% Breite) ---------- */
.fhs-item { cursor: pointer; }

.fhs-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}
.fhs-drawer.is-open { pointer-events: auto; visibility: visible; }

.fhs-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 17, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.55s var(--fhs-ease);
}
.fhs-drawer.is-open .fhs-drawer__backdrop { opacity: 1; }

.fhs-drawer__panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    background: #fff;
    box-shadow: 24px 0 80px -20px rgba(0,0,0,0.25);
    transform: translateX(-100%);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
}
.fhs-drawer.is-open .fhs-drawer__panel { transform: translateX(0); }

.fhs-drawer__close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: var(--fhs-card-bg);
    border: none;
    border-radius: 999px;
    color: var(--fhs-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s var(--fhs-ease),
                color 0.4s var(--fhs-ease),
                transform 0.5s var(--fhs-ease-out);
}
.fhs-drawer__close:hover {
    background: var(--fhs-text);
    color: #fff;
    transform: rotate(90deg);
}
.fhs-drawer__close svg { width: 18px; height: 18px; fill: currentColor; }

.fhs-drawer__scroll {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.fhs-drawer__scroll::-webkit-scrollbar { width: 8px; }
.fhs-drawer__scroll::-webkit-scrollbar-thumb { background: #d4d3d0; border-radius: 4px; }

.fhs-drawer__content {
    padding: 80px 64px 80px;
    max-width: 640px;
}

/* Inner content blocks (each animates in with stagger when drawer opens) */
.fhs-drawer.is-open .fhs-d-block {
    animation: fhsDrawerBlockIn 0.7s var(--fhs-ease-out) both;
}
.fhs-drawer.is-open .fhs-d-block:nth-child(1) { animation-delay: 0.15s; }
.fhs-drawer.is-open .fhs-d-block:nth-child(2) { animation-delay: 0.22s; }
.fhs-drawer.is-open .fhs-d-block:nth-child(3) { animation-delay: 0.29s; }
.fhs-drawer.is-open .fhs-d-block:nth-child(4) { animation-delay: 0.36s; }
.fhs-drawer.is-open .fhs-d-block:nth-child(5) { animation-delay: 0.43s; }
.fhs-drawer.is-open .fhs-d-block:nth-child(6) { animation-delay: 0.5s; }
.fhs-drawer.is-open .fhs-d-block:nth-child(7) { animation-delay: 0.57s; }

.fhs-d-logo {
    max-width: 220px;
    max-height: 80px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 28px;
}
.fhs-d-name {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}
.fhs-d-distance {
    display: inline-flex;
    padding: 4px 12px;
    background: var(--fhs-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    margin-bottom: 24px;
}
.fhs-d-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--fhs-text);
    margin: 0 0 8px;
}
.fhs-d-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e7e6e3;
}
.fhs-d-section__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fhs-muted);
    margin: 0 0 14px;
}
.fhs-d-addr {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}
.fhs-d-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fhs-d-contact a {
    font-size: 17px;
    color: var(--fhs-text);
    text-decoration: none;
    transition: color 0.35s var(--fhs-ease), transform 0.35s var(--fhs-ease);
    width: fit-content;
}
.fhs-d-contact a:hover { color: var(--fhs-accent); transform: translateX(3px); }

.fhs-d-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.fhs-d-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--fhs-text);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.4s var(--fhs-ease), transform 0.4s var(--fhs-ease), box-shadow 0.4s var(--fhs-ease);
}
.fhs-d-cta a:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -16px rgba(0,0,0,0.4);
}
.fhs-d-cta a.is-webshop { background: var(--fhs-accent); }
.fhs-d-cta a.is-webshop:hover { background: #a30d24; }
.fhs-d-cta a.is-ghost {
    background: transparent;
    color: var(--fhs-text);
    border: 1px solid var(--fhs-text);
}
.fhs-d-cta a.is-ghost:hover {
    background: var(--fhs-text);
    color: #fff;
}
.fhs-d-cta svg { width: 16px; height: 16px; fill: currentColor; }

.fhs-d-social {
    display: flex;
    gap: 16px;
}
.fhs-d-social a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--fhs-card-bg);
    color: var(--fhs-text);
    border-radius: 999px;
    transition: background-color 0.4s var(--fhs-ease), color 0.4s var(--fhs-ease), transform 0.4s var(--fhs-ease-out);
}
.fhs-d-social a:hover {
    background: var(--fhs-accent);
    color: #fff;
    transform: translateY(-3px) scale(1.06);
}
.fhs-d-social svg { width: 20px; height: 20px; fill: currentColor; }

@keyframes fhsDrawerBlockIn {
    0%   { opacity: 0; transform: translateX(-14px); filter: blur(2px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@media (max-width: 960px) {
    .fhs-drawer__panel { width: 100vw; }
    .fhs-drawer__content { padding: 80px 28px 64px; }
    .fhs-d-cta a { padding: 12px 16px; font-size: 14px; }
}

body.fhs-no-scroll { overflow: hidden; }

/* ============================================================ */
/* [haendler_kaufen] — Deeplink-Liste auf Produktseiten          */
/* ============================================================ */
.fhs-buy {
    --fhs-accent: #007340;
    --fhs-text: #1a1a1a;
    --fhs-muted: #6b7280;
    --fhs-card-bg: #efeeec;
    --fhs-card-hover: #e3e2df;
    --fhs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --fhs-ease: cubic-bezier(0.22, 1, 0.36, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--fhs-text);
    margin: 40px 0 8px;
    -webkit-font-smoothing: antialiased;
}
.fhs-buy * { box-sizing: border-box; }
.fhs-buy__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}
.fhs-buy__title {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.2;
}
.fhs-buy__copy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    color: var(--fhs-text);
    border: 1px solid var(--fhs-text);
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.4s var(--fhs-ease),
                color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-ease);
}
.fhs-buy__copy:hover {
    background: var(--fhs-text);
    color: #fff;
    transform: translateY(-1px);
}
.fhs-buy__copy.is-copied {
    background: #16a34a;
    border-color: #16a34a;
    color: #fff;
}
.fhs-buy__copy svg { width: 14px; height: 14px; fill: currentColor; }

.fhs-buy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 8px;
}
.fhs-buy__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    background: var(--fhs-card-bg);
    border-radius: 6px;
    transition: background-color 0.45s var(--fhs-ease),
                transform 0.45s var(--fhs-ease),
                box-shadow 0.45s var(--fhs-ease);
    animation: fhsBuyCardIn 0.65s var(--fhs-ease-out) both;
    animation-delay: calc(min(var(--i, 0), 12) * 50ms);
}
.fhs-buy__card:hover {
    background: var(--fhs-card-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -16px rgba(0,0,0,0.18);
}
.fhs-buy__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.fhs-buy__logo {
    flex: 0 0 56px;
    width: 56px;
    height: 40px;
    object-fit: contain;
    object-position: left center;
    display: block;
}
.fhs-buy__logo--placeholder {
    width: 56px;
    height: 40px;
    background: #d4d3d0;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    border-radius: 4px;
    text-transform: uppercase;
}
.fhs-buy__meta { min-width: 0; }
.fhs-buy__name {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: var(--fhs-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fhs-buy__loc {
    font-size: 13px;
    color: var(--fhs-muted);
    margin: 2px 0 0;
}

.fhs-buy__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--fhs-text);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-ease),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-buy__btn.is-primary { background: var(--fhs-accent); }
.fhs-buy__btn.is-fallback { background: transparent; color: var(--fhs-text); border: 1px solid var(--fhs-text); }
.fhs-buy__btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--fhs-ease-out); }
.fhs-buy__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -12px rgba(0,0,0,0.35);
}
.fhs-buy__btn.is-primary:hover { background: #a30d24; }
.fhs-buy__btn.is-fallback:hover { background: var(--fhs-text); color: #fff; }
.fhs-buy__btn:hover svg { transform: translateX(3px); }

.fhs-buy__more {
    margin-top: 16px;
    border-top: 1px solid #e7e6e3;
    padding-top: 16px;
}
.fhs-buy__more summary {
    cursor: pointer;
    font-size: 14px;
    color: var(--fhs-muted);
    padding: 6px 0;
    transition: color 0.3s var(--fhs-ease);
}
.fhs-buy__more summary:hover { color: var(--fhs-text); }
.fhs-buy__grid--secondary { margin-top: 12px; opacity: 0.92; }

.fhs-buy--empty {
    padding: 24px;
    background: var(--fhs-card-bg);
    text-align: center;
    color: var(--fhs-muted);
    border-radius: 6px;
}

@keyframes fhsBuyCardIn {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .fhs-buy__card { grid-template-columns: 1fr; padding: 16px; }
    .fhs-buy__btn { justify-content: center; }
}

/* ============================================================ */
/* [produktfinder] — AI-Suche                                    */
/* ============================================================ */
.fhs-finder {
    --fhs-accent: #007340;
    --fhs-text: #1a1a1a;
    --fhs-muted: #6b7280;
    --fhs-card-bg: #efeeec;
    --fhs-card-hover: #e3e2df;
    --fhs-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --fhs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--fhs-text);
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 0;
    -webkit-font-smoothing: antialiased;
}
.fhs-finder * { box-sizing: border-box; }

.fhs-finder__intro {
    text-align: center;
    margin-bottom: 32px;
    animation: fhsFadeIn 0.8s var(--fhs-ease-out) both;
}
.fhs-finder__title {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #007340 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.fhs-finder__subtitle {
    font-size: 17px;
    line-height: 1.55;
    color: var(--fhs-muted);
    margin: 0;
    max-width: 540px;
    margin-inline: auto;
}

.fhs-finder__form {
    animation: fhsFadeIn 0.9s var(--fhs-ease-out) 0.1s both;
}
.fhs-finder__inputwrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--fhs-card-bg);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 6px 6px 6px 24px;
    transition: background-color 0.4s var(--fhs-ease),
                border-color 0.4s var(--fhs-ease),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-finder__inputwrap:focus-within {
    background: #fff;
    border-color: var(--fhs-text);
    box-shadow: 0 18px 50px -20px rgba(0,0,0,0.18);
}
.fhs-finder__spark {
    width: 22px; height: 22px;
    flex-shrink: 0;
    margin-right: 14px;
    fill: var(--fhs-accent);
    animation: fhsSparkPulse 2.6s ease-in-out infinite;
}
.fhs-finder__input {
    flex: 1;
    min-width: 0;
    height: 56px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 17px;
    font-family: inherit;
    color: var(--fhs-text);
    outline: none;
}
.fhs-finder__input::placeholder { color: var(--fhs-muted); transition: opacity 0.3s; }
.fhs-finder__inputwrap:focus-within .fhs-finder__input::placeholder { opacity: 0.5; }

.fhs-finder__submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 22px;
    background: var(--fhs-text);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-ease),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-finder__submit:hover:not(:disabled) {
    background: var(--fhs-accent);
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -16px rgba(200, 16, 46, 0.5);
}
.fhs-finder__submit:hover:not(:disabled) .fhs-finder__arrow { transform: translateX(3px); }
.fhs-finder__submit:disabled { opacity: 0.7; cursor: wait; }
.fhs-finder__submit.is-loading { background: var(--fhs-accent); }
.fhs-finder__arrow {
    width: 16px; height: 16px;
    transition: transform 0.4s var(--fhs-ease-out);
}

.fhs-finder__examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
    align-items: center;
}
.fhs-finder__exlabel {
    font-size: 13px;
    color: var(--fhs-muted);
    margin-right: 4px;
}
.fhs-finder__chip {
    padding: 7px 14px;
    background: transparent;
    border: 1px solid #d4d3d0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    color: var(--fhs-text);
    cursor: pointer;
    transition: all 0.3s var(--fhs-ease);
}
.fhs-finder__chip:hover {
    background: var(--fhs-text);
    color: #fff;
    border-color: var(--fhs-text);
    transform: translateY(-1px);
}

.fhs-finder__result { margin-top: 36px; min-height: 60px; }

.fhs-finder__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px 24px;
    color: var(--fhs-muted);
    font-size: 14px;
    animation: fhsFadeIn 0.4s var(--fhs-ease-out) both;
}
.fhs-finder__dots { display: inline-flex; gap: 8px; }
.fhs-finder__dots span {
    width: 10px; height: 10px;
    background: var(--fhs-accent);
    border-radius: 50%;
    animation: fhsDotBounce 1.2s ease-in-out infinite;
}
.fhs-finder__dots span:nth-child(2) { animation-delay: 0.15s; }
.fhs-finder__dots span:nth-child(3) { animation-delay: 0.3s; }

.fhs-finder__summary {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.04), rgba(200, 16, 46, 0.10));
    border: 1px solid rgba(200, 16, 46, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
    animation: fhsSummaryIn 0.6s var(--fhs-ease-out) both;
}
.fhs-finder__sparkle {
    width: 20px; height: 20px;
    fill: var(--fhs-accent);
    flex-shrink: 0;
    margin-top: 2px;
    animation: fhsSparkPulse 2.2s ease-in-out infinite;
}
.fhs-finder__summary p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--fhs-text);
}

.fhs-finder__cards { display: flex; flex-direction: column; gap: 14px; }
.fhs-finder__card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 24px;
    background: var(--fhs-card-bg);
    border-radius: 10px;
    align-items: start;
    transition: background-color 0.5s var(--fhs-ease), transform 0.5s var(--fhs-ease), box-shadow 0.5s var(--fhs-ease);
    animation: fhsCardSlideIn 0.7s var(--fhs-ease-out) both;
    animation-delay: calc(var(--i, 0) * 80ms + 200ms);
}
.fhs-finder__card:hover {
    background: var(--fhs-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -20px rgba(0,0,0,0.18);
}
.fhs-finder__img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
}
.fhs-finder__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4d3d0;
}
.fhs-finder__img--placeholder svg { width: 60px; height: 60px; }

.fhs-finder__sku {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--fhs-muted);
    margin: 0 0 6px;
    font-weight: 600;
    text-transform: uppercase;
}
.fhs-finder__name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.fhs-finder__desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--fhs-muted);
    margin: 0 0 14px;
}
.fhs-finder__attrs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    margin-bottom: 18px;
}
.fhs-finder__attr {
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}
.fhs-finder__attrkey { color: var(--fhs-muted); flex-shrink: 0; }
.fhs-finder__attrval { color: var(--fhs-text); font-weight: 500; }

.fhs-finder__why {
    padding: 14px 16px;
    background: rgba(200, 16, 46, 0.06);
    border-left: 3px solid var(--fhs-accent);
    border-radius: 4px;
    margin-bottom: 16px;
}
.fhs-finder__whylabel {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fhs-accent);
    margin-bottom: 4px;
}
.fhs-finder__why p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--fhs-text);
}

.fhs-finder__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.fhs-finder__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transition: background-color 0.4s var(--fhs-ease),
                color 0.4s var(--fhs-ease),
                border-color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-ease),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-finder__cta svg {
    width: 15px; height: 15px;
    fill: currentColor;
    transition: transform 0.4s var(--fhs-ease-out);
}
.fhs-finder__cta--primary {
    background: var(--fhs-accent);
    color: #fff;
}
.fhs-finder__cta--primary:hover {
    background: #a30d24;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -14px rgba(200, 16, 46, 0.55);
}
.fhs-finder__cta--primary:hover svg { transform: scale(1.1); }
.fhs-finder__cta--ghost {
    background: transparent;
    color: var(--fhs-text);
    border: 1px solid #d4d3d0;
}
.fhs-finder__cta--ghost:hover {
    background: var(--fhs-text);
    color: #fff;
    border-color: var(--fhs-text);
    transform: translateY(-1px);
}
.fhs-finder__cta--ghost:hover svg { transform: translateX(3px); }

.fhs-finder__error,
.fhs-finder__empty {
    padding: 28px;
    text-align: center;
    background: var(--fhs-card-bg);
    border-radius: 10px;
    color: var(--fhs-muted);
    font-size: 15px;
    animation: fhsFadeIn 0.5s var(--fhs-ease-out) both;
}
.fhs-finder__error { color: #b91c1c; }

@keyframes fhsSparkPulse {
    0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
    50%      { transform: scale(1.15) rotate(8deg); opacity: 0.85; }
}
@keyframes fhsDotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40%           { transform: scale(1);   opacity: 1; }
}
@keyframes fhsSummaryIn {
    0%   { opacity: 0; transform: translateY(8px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fhsCardSlideIn {
    0%   { opacity: 0; transform: translateY(20px); filter: blur(3px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

::view-transition-old(fhs-finder-result),
::view-transition-new(fhs-finder-result) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 720px) {
    .fhs-finder__inputwrap { flex-direction: column; padding: 12px; border-radius: 18px; }
    .fhs-finder__spark { display: none; }
    .fhs-finder__input { width: 100%; height: 48px; }
    .fhs-finder__submit { width: 100%; justify-content: center; margin-top: 8px; }
    .fhs-finder__card { grid-template-columns: 1fr; }
    .fhs-finder__img { width: 100%; height: 200px; }
}

/* ============================================================ */
/* [fortis_produkte] — Produkt-Übersicht (Bento / 2030)         */
/* ============================================================ */
.fhs-prods {
    --fhs-accent: #ff2d3d;
    --fhs-ink: #0a0a0a;
    --fhs-text: #141414;
    --fhs-muted: #6e6e68;
    --fhs-cream: #f5f3ee;
    --fhs-cream-soft: #ebe9e2;
    --fhs-dark: #0a0a0a;
    --fhs-dark-soft: #161614;
    --fhs-line: rgba(0,0,0,0.08);
    --fhs-line-on-dark: rgba(255,255,255,0.10);
    --fhs-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --fhs-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --fhs-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --fhs-tx: 0deg;
    --fhs-ty: 0deg;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", Roboto, sans-serif;
    color: var(--fhs-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "ss02", "cv01", "kern", "tnum";
    background: var(--fhs-cream);
    padding: 56px 32px 96px;
    margin: 0 -24px;
    overflow: hidden;
    position: relative;
}
.fhs-prods::before {
    /* Sehr subtile Mesh-Gradient-Schicht im Hintergrund */
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(ellipse 40% 50% at 80% 10%, rgba(255, 45, 61, 0.06), transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 90%, rgba(10, 10, 10, 0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.fhs-prods > * { position: relative; z-index: 1; }
.fhs-prods * { box-sizing: border-box; }
.fhs-prods a { color: inherit; text-decoration: none; }

/* ---------- HERO (Split-Editorial) ---------- */
.fhs-prods__hero {
    max-width: 1400px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: end;
    padding-top: 8px;
    animation: fhsFadeIn 0.9s var(--fhs-ease-out) both;
}
.fhs-prods__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fhs-ink);
    margin-bottom: 24px;
    padding: 7px 14px 7px 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fhs-prods__eyebrowdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fhs-accent);
    animation: fhsAvailPulse 2.6s ease-in-out infinite;
}
.fhs-prods__title {
    font-size: clamp(48px, 7.5vw, 112px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.045em;
    margin: 0;
    color: var(--fhs-ink);
}
.fhs-prods__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--fhs-accent);
}
.fhs-prods__heroright {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.fhs-prods__subtitle {
    font-size: 17px;
    line-height: 1.55;
    color: var(--fhs-muted);
    margin: 0;
    max-width: 380px;
}
.fhs-prods__searchwrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 4px 4px 4px 18px;
    box-shadow:
        0 1px 0 rgba(0,0,0,0.04),
        0 10px 30px -10px rgba(0,0,0,0.08);
    transition: box-shadow 0.5s var(--fhs-ease);
}
.fhs-prods__searchwrap:focus-within {
    box-shadow:
        0 0 0 1px var(--fhs-ink),
        0 18px 40px -16px rgba(0,0,0,0.18);
}
.fhs-prods__searchicon {
    width: 18px;
    height: 18px;
    color: var(--fhs-muted);
    flex-shrink: 0;
}
.fhs-prods__search {
    flex: 1;
    height: 52px;
    padding: 0 12px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: var(--fhs-ink);
    outline: none;
}
.fhs-prods__search::placeholder { color: var(--fhs-muted); }
.fhs-prods__kbd {
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--fhs-muted);
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1;
}

/* ---------- FILTER-BAR ---------- */
.fhs-prods__filterbar {
    max-width: 1400px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fhsFadeIn 0.9s var(--fhs-ease-out) 0.08s both;
}
.fhs-prods__pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.04);
    padding: 4px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fhs-prods__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: var(--fhs-text);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.45s var(--fhs-ease),
                color 0.45s var(--fhs-ease);
}
.fhs-prods__pill:hover { background: rgba(0,0,0,0.05); }
.fhs-prods__pill.is-active {
    background: var(--fhs-ink);
    color: #fff;
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.4);
}
.fhs-prods__pillcount {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.55;
    font-variant-numeric: tabular-nums;
}
.fhs-prods__pill.is-active .fhs-prods__pillcount { opacity: 0.8; }

.fhs-prods__counter {
    margin: 0;
    font-size: 13px;
    color: var(--fhs-muted);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}
.fhs-prods__counterval {
    color: var(--fhs-ink);
    font-weight: 700;
    font-size: 14px;
    margin-right: 4px;
}

/* ---------- BENTO GRID ---------- */
.fhs-prods__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 340px;
    gap: 14px;
}

/* ---------- CARD ---------- */
.fhs-prods__card {
    position: relative;
    background: var(--fhs-cream-soft);
    border-radius: 22px;
    overflow: hidden;
    perspective: 1200px;
    transform: rotateX(var(--ty)) rotateY(var(--tx));
    transition: transform 0.6s var(--fhs-spring),
                background-color 0.6s var(--fhs-ease),
                box-shadow 0.6s var(--fhs-ease);
    animation: fhsProdCardIn 0.8s var(--fhs-ease-out) both;
    animation-delay: calc(min(var(--i, 0), 12) * 60ms + 0.2s);
    box-shadow:
        0 1px 0 rgba(0,0,0,0.04),
        0 4px 12px -6px rgba(0,0,0,0.06);
    contain: content;
}
.fhs-prods__card:hover {
    box-shadow:
        0 1px 0 rgba(0,0,0,0.06),
        0 28px 60px -24px rgba(0,0,0,0.22);
}
.fhs-prods__card::after {
    /* Cursor-folgender Glow */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.45), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--fhs-ease);
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 2;
}
.fhs-prods__card:hover::after { opacity: 1; }

/* Größen-Varianten (Bento) */
.fhs-prods__card--featured { grid-column: span 2; grid-row: span 2; }
.fhs-prods__card--wide     { grid-column: span 2; }
.fhs-prods__card--normal   { grid-column: span 1; }

.fhs-prods__card--dark { background: var(--fhs-dark); color: #fff; }
.fhs-prods__card--dark .fhs-prods__media { background: linear-gradient(180deg, #1a1a18 0%, #0a0a0a 100%); }
.fhs-prods__card--dark .fhs-prods__ph { color: rgba(255,255,255,0.5); }
.fhs-prods__card--dark .fhs-prods__catlabel { color: var(--fhs-accent); }
.fhs-prods__card--dark .fhs-prods__skulabel { color: rgba(255,255,255,0.55); }
.fhs-prods__card--dark .fhs-prods__name { color: #fff; }
.fhs-prods__card--dark .fhs-prods__keyspecval { color: #fff; }
.fhs-prods__card--dark .fhs-prods__keyspeclabel { color: rgba(255,255,255,0.55); }
.fhs-prods__card--dark .fhs-prods__speckey { color: rgba(255,255,255,0.55); }
.fhs-prods__card--dark .fhs-prods__specval { color: rgba(255,255,255,0.95); }
.fhs-prods__card--dark .fhs-prods__index { color: rgba(255,255,255,0.18); }
.fhs-prods__card--dark .fhs-prods__cta { color: #fff; }
.fhs-prods__card--dark .fhs-prods__topbadge { background: rgba(255,255,255,0.1); color: #fff; }
.fhs-prods__card--dark .fhs-prods__hoverbody { border-top-color: var(--fhs-line-on-dark); }

.fhs-prods__cardlink {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Index-Nummer als Design-Element */
.fhs-prods__index {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(0,0,0,0.18);
    font-variant-numeric: tabular-nums;
    z-index: 3;
}

/* Top-Badge (Empfehlung) */
.fhs-prods__topbadge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    background: rgba(255,255,255,0.7);
    color: var(--fhs-ink);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3;
}
.fhs-prods__topbadgedot {
    width: 8px;
    height: 8px;
    background: var(--fhs-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 45, 61, 0.6);
}

/* Media (Produktbild) */
.fhs-prods__media {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.6s var(--fhs-ease);
}
.fhs-prods__media img {
    width: 64%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 30px 30px rgba(0,0,0,0.15));
    transition: transform 0.8s var(--fhs-spring), filter 0.6s var(--fhs-ease);
}
.fhs-prods__ph {
    width: 50%;
    max-width: 200px;
    height: auto;
    color: rgba(0,0,0,0.45);
    transition: transform 0.8s var(--fhs-spring), opacity 0.6s var(--fhs-ease);
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.1));
}
.fhs-prods__card:hover .fhs-prods__ph,
.fhs-prods__card:hover .fhs-prods__media img {
    transform: scale(1.08) translateY(-4px) rotate(-2deg);
}
.fhs-prods__card--featured .fhs-prods__media img { width: 50%; max-width: 460px; }
.fhs-prods__card--featured .fhs-prods__ph { width: 36%; max-width: 240px; }
.fhs-prods__card--wide .fhs-prods__ph { width: 32%; }

/* Overlay (Card-Info, sliding-reveal on hover) */
.fhs-prods__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px 26px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(245, 243, 238, 0.92) 30%, var(--fhs-cream-soft) 70%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2;
    transition: background 0.6s var(--fhs-ease);
}
.fhs-prods__card--dark .fhs-prods__overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.85) 30%, var(--fhs-dark) 70%);
}

.fhs-prods__overlayhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fhs-prods__catlabel { color: var(--fhs-accent); }
.fhs-prods__skulabel { color: var(--fhs-muted); font-variant-numeric: tabular-nums; }

.fhs-prods__name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--fhs-ink);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fhs-prods__card--featured .fhs-prods__name { font-size: 28px; }

/* Key-Spec (z.B. "5,0 mm" als großes Number-Display) */
.fhs-prods__keyspec {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.fhs-prods__keyspecval {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--fhs-ink);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.fhs-prods__card--featured .fhs-prods__keyspecval { font-size: 56px; }
.fhs-prods__keyspeclabel {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fhs-muted);
}

/* Hover-Body (slidet rein) */
.fhs-prods__hoverbody {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s var(--fhs-ease),
                opacity 0.4s var(--fhs-ease),
                margin-top 0.6s var(--fhs-ease);
    margin-top: 0;
}
.fhs-prods__card:hover .fhs-prods__hoverbody,
.fhs-prods__card:focus-within .fhs-prods__hoverbody {
    max-height: 280px;
    opacity: 1;
    margin-top: 16px;
}

.fhs-prods__specs {
    list-style: none;
    margin: 0 0 16px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fhs-prods__specs li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
}
.fhs-prods__speckey {
    color: var(--fhs-muted);
    flex-shrink: 0;
}
.fhs-prods__specval {
    color: var(--fhs-ink);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fhs-prods__cardfoot {
    display: flex;
    justify-content: flex-end;
}
.fhs-prods__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--fhs-ink);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background-color 0.4s var(--fhs-ease),
                transform 0.4s var(--fhs-spring),
                box-shadow 0.4s var(--fhs-ease);
}
.fhs-prods__card--dark .fhs-prods__cta { background: #fff; color: var(--fhs-ink); }
.fhs-prods__cta svg { width: 14px; height: 14px; transition: transform 0.4s var(--fhs-ease-out); }
.fhs-prods__card:hover .fhs-prods__cta { transform: translateY(-2px) scale(1.02); }
.fhs-prods__card:hover .fhs-prods__cta svg { transform: translateX(4px); }

/* ---------- LEERZUSTÄNDE ---------- */
.fhs-prods__empty,
.fhs-prods--empty {
    grid-column: 1 / -1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
    color: var(--fhs-muted);
    font-size: 15px;
    background: rgba(0,0,0,0.04);
    border-radius: 22px;
    animation: fhsFadeIn 0.5s var(--fhs-ease-out) both;
}

@keyframes fhsProdCardIn {
    0%   { opacity: 0; transform: translateY(24px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fhsAvailPulse {
    0%, 100% { transform: scale(1);   opacity: 1;   }
    50%      { transform: scale(1.6); opacity: 0.4; }
}

::view-transition-old(fhs-prods-grid),
::view-transition-new(fhs-prods-grid) {
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1200px) {
    .fhs-prods__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 320px; }
    .fhs-prods__card--featured { grid-column: span 2; }
}
@media (max-width: 900px) {
    .fhs-prods { padding: 40px 20px 60px; }
    .fhs-prods__hero { grid-template-columns: 1fr; gap: 32px; }
    .fhs-prods__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
    .fhs-prods__card--featured,
    .fhs-prods__card--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
    .fhs-prods { padding: 28px 16px 48px; margin: 0 -16px; }
    .fhs-prods__grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
    .fhs-prods__card--featured,
    .fhs-prods__card--wide,
    .fhs-prods__card--normal { grid-column: span 1; grid-row: span 1; }
}

/* ---------- KEYFRAMES ---------- */
@keyframes fhsItemIn {
    0%   { opacity: 0; transform: translateY(14px); filter: blur(2px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes fhsFadeIn {
    0%   { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fhsSidebarIn {
    0%   { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fhsSpin {
    to { transform: rotate(360deg); }
}

/* View Transitions (Chrome/Edge/Safari TP): nahtlose Filter-Crossfades */
::view-transition-old(fhs-list),
::view-transition-new(fhs-list) {
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .fhs-item, .fhs-sidebar, .fhs-results__head, .fhs-empty, .fhs-loading { animation: none !important; }
    .fhs-item:hover { transform: none; }
    .fhs-item:hover .fhs-item__logo { transform: none; }
    .fhs-item__contact a:hover { transform: none; }
    .fhs-item__social a:hover { transform: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .fhs-app { grid-template-columns: 1fr; gap: 32px; }
    .fhs-sidebar { position: static; }
    .fhs-sidebar__title { font-size: 28px; }
}
@media (max-width: 720px) {
    .fhs-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }
    .fhs-item__right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-height: 0;
    }
    .fhs-item__links { gap: 18px; }
}
