/* =========================================
   fritts — Product Variant v1 — section styles
   Class prefix: .pv-  (product-variant)
   Tokens come from design.css; spacing in em.
   ========================================= */

:root {
    --pv-section-py: 6em;
    --pv-section-px: 4em;
    --pv-max-w: 80em;
    --pv-card-radius: 2em;
    --pv-bg-soft: #f6f4f1;
    --pv-bg-tint: #efe9e2;
    --pv-text-dark: var(--color-brand-dark-teal);
    --pv-text-muted: rgba(40, 53, 88, 0.65);
    --pv-border: rgba(40, 53, 88, 0.12);
    --pv-overlay-teal: rgba(34, 103, 107, 0.25);
}

.pv-section-inner {
    max-width: var(--pv-max-w);
    margin: 0 auto;
    padding: 0 var(--pv-section-px);
}

.pv-section-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 2.4em;
    line-height: 1.15;
    color: var(--pv-text-dark);
    margin: 0 0 0.6em 0;
}
.pv-section-title--light { color: var(--color-brand-white); }

.pv-section-sub {
    font-family: var(--font-family-primary);
    font-size: 1.05em;
    color: var(--pv-text-muted);
    margin: 0 0 2.5em 0;
    max-width: 40em;
}

/* =========================================
   1. Vorteile — 6 Gründe accordion grid
   ========================================= */
.pv-vorteile {
    background: var(--color-brand-white);
    padding: var(--pv-section-py) 0;
}
.pv-vorteile .pv-section-title { text-align: center; margin-bottom: 2em; }

.pv-vorteile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2em;
    align-items: start;
}

.pv-vorteile-card {
    background: var(--color-brand-white);
    border-radius: 1em;
    padding: 1.4em 1.6em;
    border: 1px solid var(--pv-border);
    transition: box-shadow .2s ease;
}
.pv-vorteile-card[open] { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

.pv-vorteile-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.05em;
    line-height: var(--leading-heading);
    color: var(--pv-text-dark);
}
.pv-vorteile-card summary::-webkit-details-marker { display: none; }

.pv-plus {
    width: 1.4em;
    height: 1.4em;
    border-radius: 50%;
    background: var(--pv-bg-soft);
    position: relative;
    flex-shrink: 0;
    margin-left: 1em;
}
.pv-plus::before, .pv-plus::after {
    content: '';
    position: absolute;
    background: var(--pv-text-dark);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.pv-plus::before { width: 0.7em; height: 2px; }
.pv-plus::after  { width: 2px; height: 0.7em; transition: transform .2s ease; }
.pv-vorteile-card[open] .pv-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.pv-vorteile-card p {
    margin: 1em 0 0 0;
    color: var(--pv-text-muted);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1.55;
}

/* Accordion height transitions handled in product.js */
.pv-vorteile-card .accordion-body {
    overflow: hidden;
}

/* =========================================
   2. Komplett-Paket — 3 bundle cards
   ========================================= */
.pv-paket {
    background: var(--color-brand-white);
    padding: var(--pv-section-py) 0;
}
.pv-paket .pv-section-title { text-align: center; }
.pv-paket .pv-section-sub  { text-align: center; margin-left: auto; margin-right: auto; }

.pv-paket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    align-items: stretch;
}

.pv-paket-grid .pv-paket-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.pv-paket-grid.is-revealed .pv-paket-card { opacity: 1; transform: none; }
.pv-paket-grid.is-revealed .pv-paket-card:nth-child(1) { transition-delay: 0s; }
.pv-paket-grid.is-revealed .pv-paket-card:nth-child(2) { transition-delay: .15s; }
.pv-paket-grid.is-revealed .pv-paket-card:nth-child(3) { transition-delay: .30s; }
.pv-paket-grid.is-revealed .pv-paket-card:nth-child(4) { transition-delay: .45s; }
.pv-paket-grid.is-revealed .pv-paket-card--featured { transition-delay: .75s; }

.pv-paket-card {
    background: var(--pv-bg-soft);
    border-radius: var(--pv-card-radius);
    padding: 1.8em 1.6em 2em;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pv-paket-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }

.pv-paket-card--featured {
    background: linear-gradient(180deg, #00aaa9 0%, #2e676b 100%);
    color: var(--color-brand-white);
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: center;
    gap: 2.4em;
    padding: 2em 2.4em;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.pv-paket-card--featured:hover { transform: translateY(-4px); }
.pv-paket-card--featured .pv-paket-title,
.pv-paket-card--featured .pv-paket-list li { color: var(--color-brand-white); }

.pv-paket-card--featured .pv-paket-image {
    margin-bottom: 0;
    aspect-ratio: 4 / 3;
    align-self: stretch;
}

.pv-paket-card--featured .pv-paket-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pv-paket-card--featured .pv-paket-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    column-gap: 2em;
    row-gap: 0.2em;
    margin-bottom: 1.6em;
}

.pv-paket-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 1em;
    overflow: hidden;
    background: var(--color-brand-white);
    margin-bottom: 1.2em;
}
.pv-paket-card--featured .pv-paket-image { background: rgba(255, 255, 255, 0.08); }
.pv-paket-image img { width: 100%; height: 100%; object-fit: contain; padding: 1em; box-sizing: border-box; }

.pv-paket-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.3em;
    line-height: var(--leading-heading);
    margin: 0 0 0.8em;
    color: var(--pv-text-dark);
}

.pv-paket-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6em;
    flex-grow: 1;
    font-family: var(--font-family-primary);
    font-size: 0.95em;
}
.pv-paket-list li {
    padding: 0.4em 0 0.4em 1.4em;
    position: relative;
    line-height: var(--leading-body);
    color: var(--pv-text-muted);
}
.pv-paket-card--featured .pv-paket-list li { color: rgba(255,255,255,0.85); }
.pv-paket-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-brand-red);
    font-weight: var(--font-weight-bold);
}
.pv-paket-card--featured .pv-paket-list li::before { color: var(--color-brand-white); }

.pv-paket-cta {
    align-self: flex-start;
    background: var(--color-brand-dark-teal);
    color: var(--color-brand-white);
    text-decoration: none;
    padding: 0.85em 1.6em;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.95em;
    transition: background .2s ease;
}
.pv-paket-card--featured .pv-paket-cta { background: var(--color-brand-red); }
.pv-paket-cta:hover { background: var(--color-brand-red); }

/* =========================================
   3. Kundenmeinungen — testimonial track
   ========================================= */
.pv-meinungen {
    background: #ffffff;
    padding: var(--pv-section-py) 0;
}
.pv-meinungen .pv-section-title { text-align: left; margin-bottom: 0.6em; font-size: 3em; line-height: var(--leading-heading); letter-spacing: var(--tracking-display); }

.pv-meinungen-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    margin: 0 0 1.6em 0;
    padding: 0.5em 1em;
    background: var(--color-brand-white);
    border: 1px solid var(--pv-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--pv-text-dark);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pv-meinungen-trust:hover {
    background: var(--color-brand-light-teal);
    border-color: var(--color-brand-light-teal);
    color: var(--color-brand-white);
}
.pv-meinungen-trust-g {
    width: 1.3em;
    height: 1.3em;
    flex: 0 0 auto;
}
.pv-meinungen-trust-stars {
    color: #fbbf24;
    letter-spacing: 0.1em;
    line-height: 1;
}
.pv-meinungen-trust-label {
    font-weight: var(--font-weight-bold);
}

.pv-marquee {
    width: 100svw;
    max-width: 100svw;
    margin-left: calc(50% - 50svw);
    overflow: hidden;
    box-sizing: border-box;
}
.pv-meinungen-track {
    display: flex;
    gap: 1.5em;
    width: max-content;
    will-change: transform;
}

.pv-meinung-card {
    flex: 0 0 20em;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1em;
    opacity: 0.75;
    transition: opacity 0.55s ease;
}
.pv-meinung-card.is-active {
    opacity: 1;
}
.pv-meinung-stars {
    color: #fbbf24;
    font-size: 1.15em;
    letter-spacing: 0.15em;
    line-height: 1;
}
.pv-meinung-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--pv-bg-tint);
    overflow: hidden;
    border-radius: 2em;
}
.pv-meinung-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-meinung-quote {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: 1em;
    line-height: 1.45;
    color: var(--pv-text-dark);
}
.pv-meinung-author {
    margin: 0;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9em;
    color: var(--pv-text-muted);
}

.pv-meinungen-controls {
    display: flex;
    justify-content: flex-start;
    gap: 0.8em;
    margin-top: 2em;
}
.pv-meinungen-btn {
    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    border: 1px solid var(--color-brand-dark-teal);
    background: transparent;
    color: var(--color-brand-dark-teal);
    font-family: var(--font-family-primary);
    font-size: 1.4em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    padding: 0;
}
.pv-meinungen-btn:hover:not(:disabled) {
    background: var(--color-brand-dark-teal);
    color: var(--color-brand-white);
}
.pv-meinungen-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =========================================
   4. Alternating split panels
   ========================================= */
.pv-split {
    background: var(--color-brand-white);
}
.pv-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    height: 65svh;
}
.pv-split-row--reverse { grid-template-columns: 1fr 1fr; }

.pv-split-text {
    padding: 4em 4em 4em 6em;
    box-sizing: border-box;
    background: var(--pv-bg-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pv-split-row--reverse .pv-split-text { padding: 4em 6em 4em 4em; }

.pv-split-eyebrow {
    color: var(--color-brand-red);
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.88em;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
    text-transform: uppercase;
}
.pv-split-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 2em;
    line-height: 1.15;
    margin: 0 0 0.8em;
    color: var(--pv-text-dark);
}
.pv-split-text p {
    font-family: var(--font-family-primary);
    font-size: 1em;
    line-height: 1.6;
    color: var(--pv-text-muted);
    margin: 0 0 1.6em;
}
.pv-split-cta {
    align-self: flex-start;
    background: var(--color-brand-dark-teal);
    color: var(--color-brand-white);
    text-decoration: none;
    padding: 0.9em 1.8em;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.95em;
    transition: background .2s ease;
}
.pv-split-cta:hover { background: var(--color-brand-red); }

.pv-split-image {
    height: 100%;
    background: linear-gradient(135deg, var(--color-brand-light-teal) 0%, var(--color-brand-cyan) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================
   5. 3-Schritte-Prozess
   ========================================= */
.pv-prozess {
    background: var(--color-brand-dark-teal);
    padding: 0;
    color: var(--color-brand-white);
}
.pv-prozess .pv-section-inner { padding: 0; max-width: none; }
.pv-prozess-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 65svh;
}
.pv-prozess-content {
    padding: 3em var(--pv-section-px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    overflow-y: auto;
}
.pv-prozess-content .pv-section-title {
    text-align: left;
    margin-bottom: 0.8em;
}

.pv-prozess-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1em;
    padding: 1em 1.4em;
    margin-bottom: 0.6em;
    transition: background .2s ease;
}
.pv-prozess-step[open] { background: rgba(255,255,255,0.08); }
.pv-prozess-step summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}
.pv-prozess-step summary::-webkit-details-marker { display: none; }
.pv-prozess-step summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.4em;
    line-height: 1;
    color: var(--color-brand-white);
    transition: transform .2s ease;
}
.pv-prozess-step[open] summary::after { content: '−'; }
.pv-prozess-num {
    color: var(--color-brand-red);
    margin-right: 0.6em;
    font-size: 1em;
}
.pv-prozess-step p {
    margin: 0.7em 0 0.7em;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1.55;
}

/* Accordion height transitions handled in product.js */
.pv-prozess-step .accordion-body {
    overflow: hidden;
}
.pv-prozess-cta {
    display: inline-block;
    background: var(--color-brand-red);
    color: var(--color-brand-white);
    text-decoration: none;
    padding: 0.7em 1.4em;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9em;
}
.pv-prozess-image {
    overflow: hidden;
    align-self: stretch;
    height: 100%;
}
.pv-prozess-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================
   6. All-in-One — 4 product cards
   ========================================= */
.pv-allinone {
    background: var(--pv-bg-soft);
    padding: var(--pv-section-py) 0;
}
.pv-allinone .pv-section-title { text-align: left; margin-bottom: 1.4em; font-size: 3em; }

.pv-allinone-grid {
    display: flex;
    gap: 1.5em;
}

.pv-allinone-card {
    flex: 0 0 22em;
    scroll-snap-align: start;
    box-sizing: border-box;
    background: transparent;
    text-decoration: none;
    color: var(--pv-text-dark);
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    transition: opacity .2s ease;
}
.pv-allinone-card:hover { opacity: 0.9; }
.pv-allinone-card:hover .pv-allinone-link { text-decoration: underline; }

.pv-allinone-image {
    aspect-ratio: 2 / 3;
    background: var(--pv-bg-tint);
    border-radius: 0.6em;
    overflow: hidden;
    margin: 0;
}
.pv-allinone-image img { width: 100%; height: 100%; object-fit: contain; display: block; object-position: bottom;}
.pv-allinone-image--video {
    background: #000;
    aspect-ratio: 9 / 16;
    position: relative;
    cursor: pointer;
    outline: none;
}
.pv-allinone-image--video video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.pv-allinone-image--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}
.pv-video-play {
    position: absolute;
    top: 50%; left: 50%;
    width: 4.5em; height: 4.5em;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--color-brand-dark-teal);
    border: none;
    box-shadow: 0 0.5em 1.4em rgba(0, 0, 0, 0.45);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
    pointer-events: none;
    z-index: 2;
}
.pv-allinone-image--video:hover .pv-video-play,
.pv-allinone-image--video:focus-visible .pv-video-play {
    transform: translate(-50%, -50%) scale(1.18);
    background: var(--color-brand-red);
}
.pv-video-play svg { width: 65%; height: 65%; display: block; transform: translateX(3%); }

.pv-video-modal {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2em;
}
.pv-video-modal.is-open { display: flex; }
.pv-video-modal__video {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    background: #000;
}
.pv-video-modal__close {
    position: absolute;
    top: 1.2em; right: 1.4em;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2.6em;
    line-height: 1;
    cursor: pointer;
    padding: 0.1em 0.4em;
}

.pv-allinone-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.6em;
    line-height: 1.15;
    margin: 0;
}
.pv-allinone-card p {
    font-family: var(--font-family-primary);
    font-size: 1em;
    color: var(--pv-text-dark);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}
.pv-allinone-link {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1em;
    color: var(--color-brand-red);
    margin-top: auto;
}

/* =========================================
   7. FAQ
   ========================================= */
.pv-faq {
    background: var(--color-brand-white);
    padding: var(--pv-section-py) 0;
}
.pv-faq .pv-section-title { text-align: center; }
.pv-faq .pv-section-sub  { text-align: center; margin-left: auto; margin-right: auto; }

.pv-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em 1.5em;
}

.pv-faq-col { display: flex; flex-direction: column; gap: 0.8em; }

.pv-faq-item {
    border-bottom: 1px solid var(--pv-border);
    padding: 1.1em 0.4em;
}
.pv-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1em;
    line-height: var(--leading-heading);
    color: var(--pv-text-dark);
}
.pv-faq-item summary::-webkit-details-marker { display: none; }
.pv-faq-item summary::after {
    content: '+';
    font-size: 1.4em;
    color: var(--pv-text-muted);
    margin-left: 1em;
    transition: transform .2s ease;
}
.pv-faq-item[open] summary::after { content: '−'; }
.pv-faq-item p {
    margin: 0.9em 0 0;
    color: var(--pv-text-muted);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1.55;
}

/* Accordion height transitions handled in product.js */
.pv-faq-item .accordion-body {
    overflow: hidden;
}

/* =========================================
   8. Final CTA — Termin wizard on PV-background
   Self-contained (home.css is not linked here),
   phone-in-hand intentionally absent.
   ========================================= */
.pv-pulse-detail {
    position: relative;
    width: 100%;
    /* background-image: url('/Assets/image-termin.jpeg'); */
    background-color: var(--color-brand-dark-teal);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.pv-pulse-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--pv-overlay-teal);
    pointer-events: none;
    z-index: 1;
}
.pv-pulse-detail .pulse-detail-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
    gap: 2em;
    padding: 6em 4em;
}
.pv-pulse-detail .pulse-detail-cta {
    width: 100%;
    display: flex;
    justify-content: stretch;
}
.pv-pulse-detail .pulse-detail-cta .termin-stage {
    width: 100%;
    padding: 0;
    min-height: 0;
    display: flex;
    justify-content: center;
}

/* Experts card — right column on desktop, stacks below wizard on mobile */
.pv-pulse-detail .pulse-experts {
    display: flex;
    flex-direction: column;
    background: var(--color-brand-dark-teal);
    border-radius: 1.5em;
    padding: 1em 1em 0.5em;
    color: #fff;
    font-family: var(--font-family-primary);
    gap: 0.75em;
    align-self: stretch;
}
.pv-pulse-detail .pulse-experts-card {
    background: #fff;
    color: #1a2c2e;
    border-radius: 2em;
    padding: 1.5em 1.25em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5em;
    flex: 1;
}
.pv-pulse-detail .pulse-experts-portraits { display: flex; justify-content: center; align-items: center; }
.pv-pulse-detail .pulse-experts-portrait {
    width: 4.5em;
    height: 4.5em;
    border-radius: 50%;
    border: 3px solid var(--color-brand-dark-teal);
    background: #eee;
    margin: 0 -0.5em;
    overflow: hidden;
    display: block;
    flex: 0 0 auto;
}
.pv-pulse-detail .pulse-experts-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.25);
    display: block;
}
.pv-pulse-detail .pulse-experts-portraits .pulse-experts-portrait:nth-child(2) { z-index: 1; transform: translateY(-0.25em); }
.pv-pulse-detail .pulse-experts-names {
    font-weight: 700;
    color: var(--color-brand-dark-teal);
    font-size: 1.25em;
    margin: 0.25em 0 0;
}
.pv-pulse-detail .pulse-experts-names span { color: var(--color-brand-red); margin: 0 0.15em; font-weight: 400; }
.pv-pulse-detail .pulse-experts-role {
    font-style: italic;
    font-size: 0.9em;
    color: #4a4a4a;
    margin: 0;
}
.pv-pulse-detail .pulse-experts-pill {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 0.8em;
    letter-spacing: 0.04em;
    padding: 0.7em 1.2em;
    border-radius: 50px;
    display: inline-block;
    margin: 0.5em 0 0.25em;
    text-align: center;
}
.pv-pulse-detail .pulse-experts-body {
    font-size: 0.9em;
    line-height: 1.5;
    color: #333;
    margin: 0;
}
.pv-pulse-detail .pulse-experts-body strong { color: #1a1a1a; }
.pv-pulse-detail .pulse-experts-body em strong { color: var(--color-brand-dark-teal); font-style: italic; }
.pv-pulse-detail .pulse-experts-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25em;
    margin-top: 0.4em;
}
.pv-pulse-detail .pulse-experts-stars {
    color: var(--color-brand-dark-teal);
    font-size: 1.1em;
    letter-spacing: 0.15em;
}
.pv-pulse-detail .pulse-experts-rating p {
    font-size: 0.85em;
    color: #333;
    margin: 0;
    line-height: 1.35;
}
.pv-pulse-detail .pulse-experts-trust {
    list-style: none;
    padding: 0.5em 0.75em 0.75em;
    margin: 0;
    color: #fff;
    font-size: 0.8em;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    text-align: center;
}
.pv-pulse-detail .pulse-experts-trust li::before {
    content: "✓  ";
    color: #fff;
    font-weight: 700;
}

@media (max-width: 60em) {
    .pv-pulse-detail .pulse-detail-inner {
        grid-template-columns: 1fr;
        padding: 3em 1.5em;
    }
    .pv-pulse-detail .pulse-detail-cta {
        width: 100%;
        max-width: none;
        justify-content: center;
    }
}

/* =========================================
   Carousel (shared by Meinungen + All-in-One)
   Track bleeds past the right padding of
   .pv-section-inner so cards spill toward
   the viewport edge, matching the 1KOMMA5°
   layout. Parent section clips on the right.
   ========================================= */
.pv-meinungen,
.pv-allinone { overflow-x: clip; }

.pv-carousel {
    position: relative;
    width: 100svw;
    max-width: 100svw;
    margin-left: calc(50% - 50svw);
    box-sizing: border-box;
}
.pv-carousel-track {
    display: flex;
    gap: 3.5em;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: var(--pv-section-px);
    padding-right: var(--pv-section-px);
    padding-bottom: 0.5em;
    box-sizing: border-box;
}
.pv-carousel-track::-webkit-scrollbar { display: none; }
.pv-carousel-spacer {
    flex: 0 0 24svw;
    opacity: 0;
    scroll-snap-align: start;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.pv-carousel-nav { padding: 0 var(--pv-section-px); }

/* Center the All-in-One row when it fits; fall back to start on overflow */
.pv-allinone .pv-carousel-track { justify-content: safe center; }
.pv-allinone .pv-carousel-nav { display: none; }

.pv-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.8em;
    margin-top: 2em;
}
.pv-carousel-btn {
    width: 2.75em;
    height: 2.75em;
    border-radius: 50%;
    border: 1px solid var(--color-brand-dark-teal);
    background: var(--color-brand-white);
    color: var(--color-brand-dark-teal);
    font-size: 1.1em;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
    font-family: var(--font-family-primary);
}
.pv-carousel-btn:hover:not(:disabled) {
    background: var(--color-brand-red);
    color: var(--color-brand-white);
    border-color: var(--color-brand-red);
}
.pv-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* =========================================
   Responsive — tablet/mobile collapse
   ========================================= */
@media (max-width: 60em) {
    :root { --pv-section-py: 4em; --pv-section-px: 2em; }
    .pv-section-title { font-size: 2em; }
    .pv-paket-grid { grid-template-columns: 1fr 1fr; }
    .pv-meinung-card,
    .pv-allinone-card { flex: 0 0 16em; }
    .pv-split-row,
    .pv-split-row--reverse { grid-template-columns: 1fr; }
    .pv-split-row--reverse { display: flex; flex-direction: column-reverse; }
    .pv-split-text { padding: 3em 2em; }
    .pv-split-row--reverse .pv-split-text { padding: 3em 2em; }
    .pv-split-image { height: 18em; }
    .pv-prozess-grid { grid-template-columns: 1fr; }
    .pv-prozess-image { height: 18em; }
    .pv-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 40em) {
    :root { --pv-section-py: 3em; --pv-section-px: 1.2em; }
    .pv-section-title { font-size: 1.65em; }
    .pv-vorteile-grid { grid-template-columns: 1fr; }
    .pv-paket-grid { grid-template-columns: 1fr; gap: 2.2em; }
    .pv-paket-card--featured {
        grid-template-columns: 1fr;
        padding: 1.8em 1.6em 2em;
        gap: 1.2em;
    }
    .pv-paket-card--featured .pv-paket-list { grid-template-columns: 1fr; grid-auto-flow: row; }
    .pv-meinung-card,
    .pv-allinone-card { flex: 0 0 14em; }
    .pv-cta-title { font-size: 1.8em; }
}


/* ============================================================
   Migrated from legacy/product.css (original product page styles
   — hero, accordion sidebar, comparison overlay, footer, etc.)
   ============================================================ */
/* =========================================
   FRITTS — Product Page Styles (product.html)
   Loaded after design.css + main.css.
   ========================================= */

/* =========================================
   Header overrides for product page
   (always solid, higher z-index)
   ========================================= */
header {
    z-index: 200;
    background-color: var(--color-brand-dark-teal);
}

.logo img {
    width: var(--logo-width);
    height: var(--logo-height);
    object-fit: contain;
}

/* =========================================
   Body override — scrollable, padded for fixed header
   ========================================= */
body {
    overflow-y: auto;
    background-color: var(--color-brand-white);
    padding-top: var(--header-height, 3.6em);
}

/* =========================================
   Product Hero Section
   ========================================= */
.product-hero {
    position: relative;
    width: var(--frame-w);
    height: calc(100vh - var(--header-height, 3.6em));
    height: calc(100svh - var(--header-height, 3.6em));
    overflow: hidden;
    margin-top: -1px;
}

/* app-frame flows naturally for scrollable layout */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.product-hero.sidebar-open .hero-overlay {
    opacity: 0;
}

.hero-text-content {
    position: absolute;
    top: 10%;
    left: 15%;
    max-width: 40%;
    pointer-events: auto;
    text-align: center;
}

.hero-headline {
    color: var(--color-brand-red);
    font-family: var(--font-family-primary);
    font-size: 2.4em;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

.hero-subtext {
    color: var(--color-brand-white);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    opacity: 0.85;
    color: var(--color-brand-red);
}

/* =========================================
   Products Overview Section (white)
   ========================================= */
.products-overview {
    background-color: var(--color-brand-white);
    padding: 6em 5% 7em;
}

.products-overview__header {
    text-align: center;
    margin-bottom: 4em;
}

.products-overview__title {
    font-family: var(--font-family-primary);
    font-size: 2.8em;
    font-weight: 700;
    color: var(--color-brand-dark-teal);
    margin: 0 0 0.4em;
    line-height: 1.2;
}

.products-overview__subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.1em;
    font-weight: 400;
    color: var(--color-brand-navy);
    opacity: 0.7;
    margin: 0;
}

/* ---- Individual product cards ---- */
.products-overview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5em;
    max-width: 75em;
    margin: 0 auto 4em;
}

.product-card {
    background: var(--color-brand-white);
    border: 1px solid rgba(34, 103, 107, 0.15);
    border-radius: 1.5em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-0.5em);
    box-shadow: 0 1em 3em rgba(34, 103, 107, 0.12);
}

.product-card__image {
    position: relative;
    height: 16em;
    background: linear-gradient(135deg, #f4f8f8 0%, #e8f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image img {
    max-width: 80%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__body {
    padding: 2em 2em 2.5em;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__title {
    font-family: var(--font-family-primary);
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-brand-dark-teal);
    margin: 0 0 0.75em;
}

.product-card__text {
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    font-weight: 400;
    color: var(--color-brand-navy);
    opacity: 0.75;
    line-height: 1.7;
    margin: 0 0 1.5em;
    flex: 1;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    font-weight: 700;
    color: var(--color-brand-red);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.product-card__cta:hover {
    gap: 0.9em;
}

.product-card__arrow {
    width: 0.85em;
    height: 0.85em;
    filter: brightness(0) saturate(100%) invert(33%) sepia(88%) saturate(2000%) hue-rotate(350deg) brightness(95%) contrast(90%);
}

/* ---- Bundle card ---- */
.bundle-card {
    max-width: 75em;
    margin: 0 auto;
    background: var(--color-brand-white);
    border: 1px solid rgba(34, 103, 107, 0.15);
    border-radius: 1.5em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s ease;
}

.bundle-card:hover {
    box-shadow: 0 1em 3em rgba(34, 103, 107, 0.10);
}

.bundle-card__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(34, 103, 107, 0.08);
}

.bundle-card__img-item {
    background: linear-gradient(135deg, #f4f8f8 0%, #e8f0f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5em 1.5em 1.5em;
    gap: 1em;
}

.bundle-card__img-item img {
    max-width: 80%;
    height: 14em;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.bundle-card:hover .bundle-card__img-item img {
    transform: scale(1.03);
}

.bundle-card__img-label {
    font-family: var(--font-family-primary);
    font-size: 0.85em;
    font-weight: 700;
    color: var(--color-brand-dark-teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bundle-card__body {
    padding: 3em 3.5em 3.5em;
    text-align: center;
}

.bundle-card__title {
    font-family: var(--font-family-primary);
    font-size: 2em;
    font-weight: 700;
    color: var(--color-brand-dark-teal);
    margin: 0 0 0.75em;
}

.bundle-card__text {
    font-family: var(--font-family-primary);
    font-size: 1em;
    font-weight: 400;
    color: var(--color-brand-navy);
    opacity: 0.75;
    line-height: 1.8;
    margin: 0 auto 2em;
    max-width: 50em;
}

.bundle-card__features {
    display: flex;
    justify-content: center;
    gap: 3em;
    margin-bottom: 2.5em;
    flex-wrap: wrap;
}

.bundle-card__feature {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    font-weight: 600;
    color: var(--color-brand-dark-teal);
}

.bundle-card__feature-icon {
    color: var(--color-brand-red);
    font-size: 0.6em;
}

.bundle-card__cta {
    display: inline-block;
}

/* =========================================
   Jetzt Vergleichen — fixed button
   ========================================= */
.btn-compare {
    position: absolute;
    top: -4em;
    left: 5%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    background-color: var(--color-brand-red);
    color: var(--color-brand-white);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    padding: 0.8em 1.2em;
    border-radius: 1.5em 1.5em 0 0;
    z-index: 15;
    transition: opacity 0.5s ease, transform 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 -0.25em 1.25em rgba(232, 65, 40, 0.4);
}

.btn-compare::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5em;
    height: 0.75em;
    background-color: var(--color-brand-red);
}

.btn-compare:hover {
    transform: translateY(-0.25em);
}

.btn-compare-icon {
    width: 2.5em;
    height: 2.5em;
    background-color: var(--color-brand-dark-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.btn-compare-icon img {
    width: 1em;
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
}

.btn-compare.comparison-open .btn-compare-icon {
    transform: rotate(180deg);
}

/* =========================================
   Comparison Backdrop (dark overlay)
   ========================================= */
.comparison-backdrop {
    position: fixed;
    top: 0;
    left: var(--frame-offset, 0);
    width: var(--frame-w, 100%);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.comparison-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* =========================================
   Comparison Overlay (fixed, slides up)
   ========================================= */
.comparison-overlay {
    position: fixed;
    bottom: 0;
    left: var(--frame-offset, 0);
    width: var(--frame-w, 100%);
    height: 75vh;
    background-color: var(--color-brand-red);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 1.875em 1.875em 0 0;
    display: flex;
    flex-direction: column;
}

.comparison-overlay.open {
    transform: translateY(0);
    border-radius: 0;
}

/* Scrollable wrapper — holds padded content + full-width footer */
.comparison-overlay__scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-overlay__scroll::-webkit-scrollbar {
    width: 0.25em;
}

.comparison-overlay__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.comparison-overlay__scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.125em;
}

/* Padded content area inside the scroll wrapper */
.comparison-overlay__content {
    padding: 2.4em 5% 4em;
}

/* Footer inside the overlay — full width, sits below padded content */
.overlay-footer {
    z-index: auto;
    width: 100%;
}

/* Lock background scroll when overlay is open */
body.overlay-open {
    overflow: hidden;
}

/* Hide the fixed button+overlay when in-flow section is visible */
.comparison-overlay.at-section {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* =========================================
   Comparison Section — in-flow (red)
   ========================================= */
.comparison-section {
    background-color: var(--color-brand-red);
    padding: 5em 5% 6em;
}

.comparison-section-inner {
    max-width: 75em;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3em;
}

.comparison-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.1em;
    color: var(--color-brand-white);
    opacity: 0.9;
    margin-bottom: 0.5em;
}

.comparison-title {
    font-family: var(--font-family-primary);
    font-size: 2.8em;
    font-weight: 700;
    color: var(--color-brand-white);
    line-height: 1.2;
}

.comparison-icons {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 3em;
}

.comparison-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.comparison-icon-circle {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 0.125em solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.comparison-icon-circle:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.comparison-icon-circle img {
    width: 2.5em;
    height: 2.5em;
}

.comparison-icon-label {
    color: var(--color-brand-white);
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.0625em;
}

.comparison-text-content {
    max-width: 50em;
    margin: 0 auto;
    color: var(--color-brand-white);
    font-size: 1.05em;
    line-height: 1.8;
    text-align: center;
}

.comparison-text-content .fade-in-block {
    opacity: 0;
    transform: translateY(1.875em);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.comparison-text-content .fade-in-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.comparison-text-content p {
    margin-bottom: 1.5em;
}

.comparison-text-content strong {
    color: var(--color-brand-white);
    font-weight: 700;
}


/* =========================================
   Accordion Sidebar
   ========================================= */
.accordion-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    z-index: 100;
}

.accordion-item {
    position: relative;
    height: 100%;
    width: 6.25em;
    min-width: 6.25em;
    flex-shrink: 0;
    overflow: hidden;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                min-width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item.active {
    width: calc(0.35 * var(--frame-w) + 6.25em);
    min-width: calc(0.35 * var(--frame-w) + 6.25em);
    cursor: default;
}

/* Accordion background colors */
.bg-photo {
    background-color: var(--color-brand-dark-teal);
}

.bg-waerme {
    background-color: var(--color-brand-red);
}

.bg-wall {
    background-color: var(--color-brand-light-teal);
}

/* Tab strip — anchored to left of item */
.tab-strip {
    position: absolute;
    left: 0;
    top: 0;
    width: 6.25em;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 1em;
    z-index: 2;
}

.tab-arrow {
    width: 2.75em;
    height: 2.75em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: rotate(180deg);
    opacity: 0.5;
}

.tab-arrow img {
    width: 100%;
    object-fit: contain;
}

.accordion-item.active .tab-arrow {
    transform: rotate(0);
    opacity: 1;
}

.tab-text {
    color: var(--color-brand-white);
    font-weight: 700;
    font-size: 4.5vh;
    font-size: 4.5svh;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    -webkit-writing-mode: vertical-lr;
}

/* Expandable content — anchored to right */
.accordion-content {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(0.35 * var(--frame-w));
    padding: 4em 3em 0em 3em;
    opacity: 0;
    transform: translateX(1.875em);
    transition: opacity 0.15s ease, transform 0.15s ease;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
}

.accordion-item.active .accordion-content {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

/* Content header — always visible, never scrolls */
.content-header {
    flex-shrink: 0;
    padding-bottom: 1.5em;
}

/* Swap zone — fills remaining space, stacks image and details */
.content-swap-zone {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

/* Content styling */
.content-category {
    font-size: 0.75em;
    color: var(--color-brand-white);
    margin-bottom: 0.5em;
}

.content-title {
    font-family: var(--font-family-primary);
    font-size: 2em;
    font-weight: 700;
    color: var(--color-brand-white);
    line-height: 1.2;
    margin-bottom: 1em;
    text-transform: uppercase;
    max-width: 12em;
}

.content-subtitle {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1em;
}

.content-link {
    color: var(--color-brand-white);
    text-decoration: none;
    font-size: 0.85em;
    font-weight: var(--font-weight-regular, 400);
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
}

.content-link__arrow {
    width: 0.8em;
    height: 0.8em;
    vertical-align: middle;
}

.content-link__arrow--back {
    transform: scaleX(-1);
}

.bg-photo .content-link {
    color: var(--color-brand-red);
}

/* Image wrapper fills swap zone; image anchored to its bottom */
.content-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateY(var(--product-slide-distance, 2em));
    transition: opacity var(--product-slide-duration, 0.5s) ease, transform var(--product-slide-duration, 0.5s) var(--product-slide-easing, ease);
}

.accordion-item.active .content-image-wrapper {
    transform: translateY(0);
}

.content-image-wrapper img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.content-details {
    position: absolute;
    inset: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95em;
    line-height: 1.6;
    padding: 0.5em 1em 5em 0;
    opacity: 0;
    transform: translateX(1.5em);
    transition: opacity var(--product-slide-duration, 0.5s) ease, transform var(--product-slide-duration, 0.5s) var(--product-slide-easing, ease);
    overflow-y: auto;
    pointer-events: none;
}

.content-details.is-visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.content-image-wrapper.is-hidden {
    opacity: 0;
    transform: translateY(var(--product-slide-distance, 2em));
    pointer-events: none;
}

/* Fast close — prevent text bleeding over image */
.accordion-item:not(.active) .content-image-wrapper {
    opacity: 0;
    transform: translateY(var(--product-slide-distance, 2em));
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.accordion-item:not(.active) .content-details {
    opacity: 0;
    transform: translateX(1.5em);
    transition: opacity 0.1s ease, transform 0.1s ease;
    overflow: hidden;
}

.content-details::-webkit-scrollbar {
    width: 0.25em;
}

.content-details::-webkit-scrollbar-track {
    background: transparent;
}

.content-details::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.125em;
}

.content-details ul {
    padding-left: 1.2em;
    margin: 1em 0;
}

.content-details li {
    margin-bottom: 0.5em;
}

