/* ============================================================
   19a-store-products.css
   Store Produkt-Kacheln, Grid, Preise, Buttons, Shimmer
   Extrahiert aus 19-store.css (Zeile 1-871)
   ============================================================ */

/* --- Serie-Nummer: Zahl in der H1-Überschrift 20% grösser --- */
.serie-number {
    font-size: 1.3em;
}

/* --- Header Cart Optimization (International Luxury Standard) --- */
.cart-icon-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    /* Apple/Google Touch Standard */
    min-height: 44px;
}

/* Desktop: Gleiche Positionierung wie .icon-link auf anderen Seiten */
.cart-icon-btn--desktop {
    padding: 0;
    min-width: auto;
    min-height: auto;
}

/* Badge-Position: Identisch zu allen anderen Seiten (rechts oben verschoben) */
.cart-icon-btn--desktop .cart-badge {
    top: -0.15rem;
    right: -0.35rem;
}

.cart-icon-btn:hover {
    transform: translateY(-2px);
}

.cart-icon-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1.2;
    /* Feiner für Luxus-Look */
    transition: stroke-width 0.3s ease;
}

.cart-icon-btn:hover .icon {
    stroke-width: 1.5;
}

/* Der Badge - Diskret & Elegant */
.cart-badge {
    position: absolute;
    top: 0.2rem;
    right: 0.1rem;
    background: var(--gold);
    color: var(--white);
    font-size: var(--fs-micro);
    font-weight: 500;
    min-width: var(--cart-badge-size);
    height: var(--cart-badge-size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.1rem;
    font-family: var(--font-primary);
    box-shadow: 0 2px 8px rgba(196, 161, 105, 0.3);
    opacity: 0;
    transform: scale(0.5) translate3d(0, 0, 0);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.cart-badge.is-visible {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
}

/* Animation beim Hinzufügen */
@keyframes cart-ping {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
        filter: brightness(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.cart-icon-btn.animating .icon {
    animation: cart-ping 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badge-pop {
    0% {
        transform: scale(0.5);
    }

    70% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge.animating {
    animation: badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* FELSENFEST: Scrollbar-Stabilität auf html-Ebene.
   Problem: Wenn Kacheln öffnen/schliessen, ändert sich die Seitenhöhe.
   Die Scrollbar erscheint/verschwindet → body-Breite schwankt → 
   Container-Query-Inline-Size (cqi) ändert sich → Logo + Badge driften.
   Fix: overflow-y:scroll erzwingt permanente Scrollbar → stabile Breite.
   Auf Mobile (Overlay-Scrollbars) hat dies keinen visuellen Effekt. */
html:has(.store-page) {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

.store-page {
    /* Seitenhintergrund: 75% Schwarz */
    background-color: #404040;
}



/* Überschreibt die globale main:not(.hero) Regel (höhere Spezifität) */
.store-page main.store-main {
    padding-top: 0;
    padding-bottom: 5rem;
}

.store-value-section {
    /* 75% Schwarz: Konsistent mit neuem dunklen Seitenhintergrund */
    background-color: #404040;
    padding: var(--section-padding) 0 0;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

/* Subtle background aura – angepasst für hellen Hintergrund */
.store-value-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(196, 161, 105, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.store-value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Store Overtitle: Goldene Überzeile über der H1
   Identische visuelle Sprache wie .wirkung-hero__overtitle */
.store-overtitle {
    font-family: var(--font-accent);
    font-size: calc(var(--fs-micro, 0.72rem) * 1.495);
    font-weight: 400;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    /* Optische Zentrierung: gleicht trailing letter-spacing aus */
    text-transform: uppercase;
    /* Ivory Stage: Gold-Dark für besseren Kontrast auf hellem Hintergrund */
    color: var(--gold-dark);
    text-align: center;
    margin: 0 0 clamp(0.8rem, 2vw, 1.2rem);
    opacity: 0;
    animation: wrkFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    position: relative;
    z-index: 1;
}

/* Fallback falls wrkFadeUp nicht geladen ist (Keyframe aus 53-ophyr-wirkung.css) */
@keyframes storeFadeUpOvertitle {
    from {
        opacity: 0;
        transform: translateY(1.2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-overtitle {
    animation: storeFadeUpOvertitle 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* Mobile: etwas kompakter */
@media (max-width: 47.99rem) {
    .store-overtitle {
        letter-spacing: 0.3em;
        text-indent: 0.3em;
        font-size: calc(var(--fs-micro, 0.72rem) * 1.30);
    }
}

.store-value-section .legal-title {
    margin-bottom: clamp(2rem, 8vw, 5rem);
    white-space: nowrap;
    font-size: var(--fs-display);
    text-align: center;
    /* Perfekte Zentrierung ohne unschöne transform-Effekte (Subpixel-Blur) */
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    /* FIX: letter-spacing und text-indent exakt abgestimmt für mathematisch perfekte Zentrierung */
    letter-spacing: clamp(0.06em, 0.5vw, 0.15em);
    text-indent: clamp(0.06em, 0.5vw, 0.15em);
    /* Ivory Stage: Anthrazit-Schwarz für optimale Lesbarkeit auf hellem Hintergrund */
    color: #1a1a1c;
}

/* Einleitungstext: Anthrazit auf hellem Store-Hintergrund, 10% grösser */
.store-value-section .news-body-text {
    color: #2b2b2b;
    font-size: 1.12rem;
}

/* Mobile Override: Verhindert horizontalen Overflow */
@media (max-width: 47.99rem) {
    .store-value-section .legal-title {
        white-space: normal;
        width: 100%;
        left: auto;
        transform: none;
        position: static;
        display: block;
        font-size: calc(var(--fs-display) * 0.8);
        letter-spacing: 0.08em;
        text-indent: 0.08em;
        /* Auch auf Mobile exakt kompensiert */
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        box-sizing: border-box;
        /* FIX: word-break:break-word + hyphens:auto entfernt.
           Verursachte Einzelbuchstaben-Trennung auf Mobile.
           Erbt jetzt globale Baseline (overflow-wrap:break-word). */
        overflow-wrap: break-word;
    }
}



/* --- Store Grid --- */
.store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--container-padding) 5rem;
    padding-left: max(var(--container-padding), env(safe-area-inset-left));
    padding-right: max(var(--container-padding), env(safe-area-inset-right));
    container-type: inline-size;
    overflow-anchor: none;
}

/* FELSENFEST: Auf Mobile → feste Breite via 100vw.
   100vw ignoriert Scrollbar-Breite auf ALLEN mobilen Browsern
   (Overlay-Scrollbars nehmen keinen Layout-Space ein).
   Damit bleibt die Container-Query-Inline-Size (cqi) felsenfest stabil,
   auch wenn die Seite durch Kachel-Expansion scrollbar wird.
   Auf Desktop (≥64rem) greift scrollbar-gutter:stable aus 01-globals.css. */
@media (max-width: 63.99rem) {
    .store-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        /* FELSENFEST: overflow-x:clip verhindert dass äußere Schatten
           oder Sub-Pixel-Rundungen die Kachel visuell nach rechts schieben.
           clip (statt hidden) erzeugt keinen Scroll-Container. */
        overflow-x: clip;
    }
}

/* Edge-to-Edge Mobile: Kacheln füllen 100% Viewport-Breite.
   Seitliche Paddings entfernt — Apple/Hermès/Porsche-Standard.
   Gap reduziert für kompakteres Mobile-Layout. */
@media (max-width: 47.99rem) {
    .store-grid {
        padding-left: 0;
        padding-right: 0;
        gap: 2rem;
    }

    .product-pair {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Desktop Grid: Alle Kacheln volle Breite, vertikal gestapelt */
@media (min-width: 64rem) {
    .store-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(4rem, 6vw, 6rem);
    }

    /* Alle Produkt-Kacheln: volle Breite (identische Grösse) */
    .product-pair {
        grid-column: span 2;
    }
}

/* .product-tile wird als Standalone nicht mehr verwendet (Legacy).
   Sub-Klassen (.product-tile__video, __title etc.) leben innerhalb von .product-pair. */

/* ==========================================================
   Product Pair · Square Diptychon → Big Square · 120Hz Engine
   
   CONCEPT: Two equal squares side by side → click → expand into
   one large unified square. Video scales perfectly with GPU compositing.
   
   PERF: Alle Animationen nur via transform/opacity (Compositor-Thread).
   Grid-Transition für das Layout-Reflow (unvermeidbar, aber optimiert).
   ========================================================== */
/* Kacheln sind immer geöffnet (is-open ist permanent gesetzt) */
.product-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100%;
    border-radius: var(--product-tile-radius);
    overflow: hidden;
    overflow-anchor: none;
    position: relative;
    /* Geöffneter Zustand: Quadrat (1:1), gedeckelt auf 70rem. */
    height: 100cqi;
    max-height: 70rem;
    width: 100%;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 188, 145, 0.15);
    border: 1.5px solid color-mix(in srgb, var(--gold-light) 25%, black 75%);
    background-color: var(--obsidian);
    cursor: default;
    transform: translateZ(0);
    /* GEOMETRIE-LOCK: box-sizing verhindert dass border (1.5px) die Breite der Kachel
       beeinflusst. Alle 4 Kacheln haben exakt identische Content-Box-Grösse. */
    box-sizing: border-box;
}

.product-pair .pp-visual,
.product-pair .pp-brand {
    height: 100%;
    cursor: default;
}

.pp-top-tile {
    display: none;
}

/* Left Column: Video (fills full height via grid stretch) */
.pp-visual {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    min-height: 0;
    overflow: hidden;
    cursor: pointer;
}

.pp-visual .product-tile__video,
.pp-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, 0, 0);
    /* Verhindert feine weisse Linien an den Kanten */
    outline: 1px solid transparent;
    /* Kacheln sind immer geöffnet: Volle Farbe */
    filter: grayscale(0);
    opacity: 1;
}

/* Hover: Kein Scale, kein Filter – Videos bleiben still und natürlich */

/* Right Column: Brand + Details */
.pp-brand {
    grid-column: 2;
    grid-row: 1;
    /* Einheitlicher Hintergrund: 12% Weiss */
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    /* space-between: Inner-Bereich oben, CTA unten.
       Im geschlossenen Zustand ohne CTA wirkt justify-content: flex-start. */
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    min-height: 0;
}

/* --- Produktspezifische Farbschemata (Unterbewusste psychologische Führung) --- */

/* 1. Ophyr Travel (Dunkelblau) - Vertrauen, Weite & Frische
   +10% Aufhellung für feinere Differenzierung auf Anthrazit-Hintergrund */
.product-pair[data-id="ophyr-15"] {
    background-color: #0c1222;
}

.product-pair[data-id="ophyr-15"] .pp-top-tile {
    background-color: #0c1222;
}

/* Ophyr Travel: Kein Video vorhanden – Foto immer sichtbar */
.product-pair[data-id="ophyr-15"] .pp-visual .product-tile__video {
    opacity: 0 !important;
    pointer-events: none;
}

.product-pair[data-id="ophyr-15"] .pp-visual img {
    opacity: 1 !important;
}

.product-pair[data-id="ophyr-15"] .pp-brand {
    background: linear-gradient(135deg, rgba(18, 32, 56, 0.85), rgba(12, 18, 34, 0.95));
}

/* Alle Kacheln: Badge-Box entfernt – nur Titelwort sichtbar, kein Rahmen/Hintergrund (Referenz: Travel) */
.product-pair .pp-brand__set-badge {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    margin-top: 0;
}

.product-pair .pp-brand__set-badge:hover,
.product-pair .pp-brand__set-badge {
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none;
}


/* 2. Ophyr Opus (Dunkelgrün) - Kraft, Fokus & Modernität
   +10% Aufhellung für feinere Differenzierung auf Anthrazit-Hintergrund */
.product-pair[data-id="ophyr-50"] {
    background-color: #0f2118;
}

.product-pair[data-id="ophyr-50"] .pp-top-tile {
    background-color: #0f2118;
}

.product-pair[data-id="ophyr-50"] .pp-brand {
    background: linear-gradient(135deg, rgba(22, 46, 33, 0.85), rgba(15, 33, 24, 0.95));
}


/* --- Produktspezifische Spec-Seal & Preiskachel-Hintergründe ---
   ZIEL: Infokachel (.spec-seal) und Preiskachel (.product-price-block)
   zeigen exakt denselben visuellen Hintergrund wie die Titelkachel
   (.pp-brand__set-badge). Der Hintergrund leitet sich aus der jeweiligen
   Produktfarbe ab, statt aus einem generischen grauen/goldenen Overlay. */

/* Travel (Dunkelblau) – Aufgehellt */
.product-pair[data-id="ophyr-15"] .pp-brand__details .spec-seal {
    background: rgba(12, 18, 34, 0.25);
}

.product-pair[data-id="ophyr-15"] .product-price-block {
    background: rgba(12, 18, 34, 0.35);
    border-color: rgba(218, 190, 145, 0.2);
}

/* Opus (Dunkelgrün) – Aufgehellt */
.product-pair[data-id="ophyr-50"] .pp-brand__details .spec-seal {
    background: rgba(22, 46, 33, 0.25);
}

.product-pair[data-id="ophyr-50"] .product-price-block {
    background: rgba(22, 46, 33, 0.35);
    border-color: rgba(218, 190, 145, 0.2);
}

/* Signature (Dunkelrot) – Aufgehellt */
.product-pair[data-id="ophyr-150"] .pp-brand__details .spec-seal {
    background: rgba(46, 18, 22, 0.25);
}

.product-pair[data-id="ophyr-150"] .product-price-block {
    background: rgba(46, 18, 22, 0.35);
    border-color: rgba(218, 190, 145, 0.2);
}

/* 3. Ophyr Signature (Dunkelrot) - Exklusivität, Status & Leidenschaft
   +10% Aufhellung für feinere Differenzierung auf Anthrazit-Hintergrund */
.product-pair[data-id="ophyr-150"] {
    background-color: #1e0c0f;
}

.product-pair[data-id="ophyr-150"] .pp-top-tile {
    background-color: #1e0c0f;
}

.product-pair[data-id="ophyr-150"] .pp-brand {
    background: linear-gradient(135deg, rgba(46, 18, 22, 0.85), rgba(30, 12, 15, 0.95));
}


/* Serie Valentina (Gold/Bronze) – Exklusivität */
.product-pair[data-id="ophyr-serie-valentina"] .pp-brand__details .spec-seal {
    background: rgba(58, 42, 18, 0.25);
}

.product-pair[data-id="ophyr-serie-valentina"] .product-price-block {
    background: rgba(58, 42, 18, 0.35);
    border-color: rgba(218, 190, 145, 0.2);
}

.product-pair[data-id="ophyr-serie-valentina"] {
    background-color: #241b0b;
}

.product-pair[data-id="ophyr-serie-valentina"] .pp-top-tile {
    background-color: #241b0b;
}

.product-pair[data-id="ophyr-serie-valentina"] .pp-brand {
    background: linear-gradient(135deg, rgba(58, 42, 18, 0.85), rgba(36, 27, 11, 0.95));
}


/* ==========================================================
   VORSCHLAG 1: Flow-Integration
   
   Geschlossen: ::before/::after Spacer zentrieren den Content.
   
   Geöffnet: CTA ist IM Flex-Flow (nicht absolut) → alle
   Elemente verteilen sich natürlich über die gesamte Kachel.
   ::before behält einen Rest-Flex (Breathing Room oben).
   Alle Gaps wachsen → gleichmäßige Verteilung.
   ========================================================== */
/* φ-Basis: 1rem | φ¹ = 1.618rem | φ² = 2.618rem | φ³ = 4.236rem */
.pp-brand__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* flex: 1 statt min-height:100% → Inner wächst, lässt aber Platz für CTA im Flow */
    flex: 1 1 auto;
    width: 100%;
    padding: 0 clamp(1rem, 2.5vw, 1.618rem);
    position: relative;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    transform: translate3d(0, 0, 0);
}

.pp-brand__inner::before,
.pp-brand__inner::after {
    content: '';
    display: none;
}

.pp-brand__inner::-webkit-scrollbar {
    display: none;
}

/* Spacer schiebt CTA ans untere Ende der Kachel */
.pp-brand-spacer {
    display: flex;
    flex: 1 0 0;
    width: 100%;
}

.pp-brand__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Logo positioniert im oberen Fünftel der Kachel */
    height: auto;
    padding-top: 10cqi;
    padding-bottom: 1.618rem;
    width: 100%;
    flex-shrink: 0;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    transform: translate3d(0, 0, 0);
    margin: 0;
    box-sizing: border-box;
}

.pp-brand__quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* φ⁰ zwischen Zitat-Text und Autor */
    text-align: center;
}

/* ==========================================================
   Kaskaden-Parallax · Hollywood Cinema Engine
   
   PHILOSOPHIE: Jede Ebene driftet mit individueller Geschwindigkeit
   UND Verzögerung nach unten. Der Abstand zwischen den Ebenen
   wächst progressiv → wie ein Fächer der sich öffnet.
   
   Am Ende: Perfekter Goldener Schnitt (φ = 1.618)
   - Titel:  φ^0 × Basis = 1.0 × Basis  (geringster Drift)
   - Quote:  φ^1 × Basis = 1.618 × Basis (mittlerer Drift)
   - Details: φ^2 × Basis = 2.618 × Basis (stärkster Drift)
   
   PERF: Pure GPU-Compositing via transform + opacity.
   Easing: Cinematic slow-start → smooth-settle.
   ========================================================== */

/* Titel-Drift entfernt für mehr Stabilität */
.pp-brand__content .product-tile__title,
.pp-brand__content .pp-brand__quote {
    transform: none;
}

/* ==========================================================
   Details Section · Parallax Layer 3 + Cinematic Stagger
   
   PHILOSOPHY: Die Details bilden die 3. Parallax-Ebene (φ²).
   Sie driften am weitesten nach unten → leichtester Layer.
   Jedes Kind-Element faded mit progressivem Versatz ein,
   wobei die Abstände zwischen den Details-Kindern ebenfalls
   wachsen → der Fächer-Effekt setzt sich innerhalb fort.
   ========================================================== */
/* Details: immer geöffnet (grid-row-Expansion ist permanent) */
.pp-brand__details {
    display: grid;
    grid-template-rows: 1fr;
    margin-top: 0;
    width: 100%;
}

.pp-brand__details-inner {
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    display: flex;
    flex-direction: column;
    /* φ¹ = 1.618rem Gap zwischen allen Kind-Elementen */
    gap: 1.618rem;
}

/* Margin-Normalisierung: NUR der flex-gap kontrolliert Abstände */
.pp-brand__details-inner .product-features {
    margin: 0;
}

.pp-brand__details-inner .product-divider {
    margin: 0;
}

.pp-brand__details-inner .product-description {
    margin: 0;
}

.pp-brand__details-inner .product-price-block {
    margin: 0;
    /* GEOMETRIE-LOCK: Identisches Padding wie im CTA-Block (1.2rem rundum).
       Vorher: 1.2rem vertikal vs 1.618rem horizontal → optische Asymmetrie.
       Jetzt: 1.2rem überall → mathematisch exakt, viewport-unabhängig. */
    padding: 1.2rem;
    /* Neutraler Basis-Hintergrund – wird durch produktspezifische Overrides überschrieben */
    background: rgba(26, 26, 28, 0.15);
    border: 0.5px solid rgba(218, 190, 145, 0.2);
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
}

.pp-brand__details-inner .product-trust-badges {
    margin: 0;
    padding: 0;
}

/* Stagger: Items immer sichtbar (Kacheln sind permanent geöffnet).
   Opening-Animation wird von animateSpecLists() in JS gesteuert. */
.pp-brand__details-inner > * {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hollywood Stagger-Opening: progressiver Wasserfall von oben */
.pp-brand__details-inner > *:nth-child(1) { --stagger-i: 0; }
.pp-brand__details-inner > *:nth-child(2) { --stagger-i: 1; }
.pp-brand__details-inner > *:nth-child(3) { --stagger-i: 2; }
.pp-brand__details-inner > *:nth-child(4) { --stagger-i: 3; }
.pp-brand__details-inner > *:nth-child(5) { --stagger-i: 4; }
.pp-brand__details-inner > *:nth-child(6) { --stagger-i: 5; }
.pp-brand__details-inner > *:nth-child(7) { --stagger-i: 6; }

/* Items erscheinen mit progressivem Wasserfall von oben */
.product-pair.is-open .pp-brand__details-inner > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: calc(0.4s + var(--stagger-i, 0) * 0.1s);
}

/* Override text colors for dark background context */
.pp-brand__details .product-info-label {
    color: var(--gold);
    opacity: 0.6;
}

.pp-brand__details .product-features li {
    color: rgba(253, 252, 248, 0.7);
}

.pp-brand__details .product-description {
    color: rgba(253, 252, 248, 0.7);
}

.pp-brand__details .product-divider {
    background: linear-gradient(to right, transparent, rgba(196, 161, 105, 0.25), transparent);
}

.pp-brand .product-price-block {
    background: rgba(26, 26, 28, 0.15);
    border-color: rgba(218, 190, 145, 0.2);
}

.pp-brand .product-price .amount {
    color: rgba(253, 252, 248, 0.9);
}

.pp-brand .price-sub {
    color: rgba(253, 252, 248, 0.4);
}

.pp-brand__details .product-shipping-note {
    font-family: var(--font-primary);
    font-size: var(--fs-micro);
    font-weight: 300;
    color: rgba(253, 252, 248, 0.45);
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
    margin-top: 0.75rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.pp-brand__details .trust-badge-text {
    color: rgba(253, 252, 248, 0.5);
}

/* CTA ist immer sichtbar (Kacheln sind permanent geöffnet) */
.pp-brand__cta {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    z-index: 10;
    border-top: none;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
}

/* Überlappungsschutz: Kein CTA-Kind darf schrumpfen oder kollabieren.
   flex-shrink: 0 verhindert, dass Flex bei Platzmangel Elemente zusammenstaucht. */
.pp-brand__cta>* {
    flex-shrink: 0;
}

.pp-brand__cta .product-price-block {
    min-height: 3.5rem;
    /* GEOMETRIE-LOCK: margin:0 überschreibt den globalen margin-bottom:1.618rem
       und sichert identischen Spacing in ALLEN 4 Kacheln. */
    margin: 0 !important;
    box-sizing: border-box;
}

.pp-brand__cta .btn-buy {
    margin: 0;
    width: 100%;
    min-height: 3.2rem;
    /* Exakt dieselben Rundungen wie die Preis-Kachel */
    border-radius: 0;
}



/* ==========================================================
   Store Chevron Toggle – Akkordeon-Button für Detailtext
   ========================================================== */
.store-chevron-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: clamp(0.8rem, 2vw, 1.2rem) auto;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.store-chevron-toggle:hover {
    background: rgba(196, 161, 105, 0.1);
}

.store-chevron-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

.store-chevron-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--dark-grey);
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.store-chevron-toggle:hover .store-chevron-icon {
    opacity: 0.8;
    color: var(--gold);
}

/* --- Collapse-Panel: Smooth 120 Hz GPU-accelerated --- */
.store-detail-collapse {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.store-detail-collapse.is-open {
    grid-template-rows: 1fr;
}

.store-detail-inner {
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 0.5rem, 0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.store-detail-collapse.is-open .store-detail-inner {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* --- Paracelsus Zitat Styles (Integrated into product-pair) --- */

.store-quote-tile__text {
    font-family: var(--font-accent);
    font-size: var(--fs-body-lg);
    font-weight: 100;
    color: var(--gold);
    /* Exakt wie das Branding-Logo */
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.25em;
    word-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    transform: translateX(-0.125em);
    /* Optical centering fix for 0.25em spacing */
}

.store-quote-tile__author {
    font-family: var(--font-primary);
    font-size: var(--fs-micro);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    /* 90% Weiss */
    opacity: 1;
    /* Opacity auf 1, da we Helligkeit über die Farbe steuern */
    letter-spacing: 0.4em;
    text-transform: uppercase;
    transform: translateX(-0.2em);
    /* Optical centering fix for 0.4em spacing */
}


/* Legacy .product-tile Container-Selektoren entfernt (nicht mehr im HTML verwendet).
   Die folgenden Sub-Klassen werden aktiv innerhalb von .product-pair genutzt. */

.product-tile__title {
    color: var(--gold);
    font-family: var(--font-primary);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    line-height: 1;
    position: relative;
    width: clamp(10.08rem, 23.52cqi, 18.48rem);
    height: auto;
    aspect-ratio: 1488 / 540;
}

.title-brand-combined {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: lighten;
    opacity: 0.88;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4)) brightness(0.95);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Kacheln sind immer geöffnet: Standardzustand */
.product-pair .title-brand-combined {
    opacity: 0.88;
    transform: scale(1) translateZ(0);
}

/* Hover-Effekt auf geöffneten Kacheln */
.product-pair:hover .title-brand-combined {
    opacity: 1;
    filter: drop-shadow(0 6px 20px rgba(212, 188, 145, 0.4)) brightness(1.08) contrast(1.02);
}


/* Badge-Container zur vertikalen Ausrichtung von Badge und Untertitel */
.store-page .pp-brand__badge-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(0.8rem, 2vw, 1.2rem) !important;
    margin-top: 0 !important;
    width: 100% !important;
}

.store-page .pp-brand__badge-container .pp-brand__set-badge {
    margin-top: 0.1875rem !important;
    margin-bottom: -0.1875rem !important;
}

/* Edle, luxuriöse und minimalistische Kachel unter dem Logo */
.pp-brand__set-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin-top: clamp(0.8rem, 2vw, 1.2rem);
    background: transparent;
    border: none;
    border-radius: 0;
    /* Scharfkantiger, diamantähnlicher Schliff */
    font-family: var(--font-accent);
    /* Montserrat */
    font-style: normal;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.4em;
    /* Luxuriöse Weite */
    /* Optische Zentrierung: letter-spacing fügt Abstand NACH jedem Zeichen ein,
       auch nach dem letzten → Text wirkt nach rechts verschoben.
       text-indent gleicht diesen trailing-space exakt aus. */
    text-indent: 0.4em;
    text-transform: uppercase;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    white-space: nowrap;
    transform: perspective(800px) translate3d(0, 0, 0);
    transition: color 1s cubic-bezier(0.22, 1, 0.36, 1),
        letter-spacing 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Edler, minimalistischer Untertitel in Montserrat */
.store-page .pp-brand__set-subtitle {
    font-family: var(--font-accent) !important;
    font-size: clamp(0.75rem, 1.8vw, 0.95rem) !important;
    font-weight: 700 !important;
    color: rgba(253, 252, 248, 0.65) !important;
    letter-spacing: 0.18em !important;
    text-indent: 0.18em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    transition: color 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* set-subtitle: Kacheln sind immer geöffnet */
.store-page .product-pair .pp-brand__set-subtitle {
    color: var(--ivory-polished) !important;
}

.product-pair .pp-brand__set-badge {
    background: transparent;
    border: none;
    color: var(--white);
    box-shadow: none;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    transform: perspective(800px) translate3d(0, 0, 0);
}

@media (hover: hover) and (pointer: fine) {
    .store-page .product-pair:hover .pp-brand__set-subtitle {
        color: var(--ivory-polished) !important;
    }

    .pp-brand__set-badge:hover {
        background: transparent;
        border: none;
        color: var(--white);
        box-shadow: none;
        letter-spacing: 0.4em;
        text-indent: 0.4em;
        transform: perspective(800px) translate3d(0, 0, 0);
    }
}

/* Spezifische Vergrößerung und Hover-Expansionen entfernt, da nun global für alle Kacheln aktiv */

/* Ophyr 15/50/150: Alle drei Editionen nutzen v8-Logos mit identischer
   Ziffern-Schriftgröße und einheitlicher Positionierung. Die Bildbreite
   ist für alle gleich – keine separaten Overrides nötig. */


/* --- Product Details --- */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* product-features: 2-Spalten-Grid (immer geöffnet) */
.product-pair .pp-brand__details-inner .product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.2rem;
    margin: 0;
    flex-direction: unset;
}

.product-features li {
    font-size: var(--fs-body-sm);
    color: var(--text-muted);
    font-weight: 300;
    position: relative;
    padding-left: 1.2rem;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    background: var(--gold);
}

.product-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(196, 161, 105, 0.2), transparent);
    margin: 2rem 0;
    border: none;
}

.product-trust-badges {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.618rem;
    /* φ¹ Gap zwischen den Badges – mathematisch exakt Goldener Schnitt */
    margin: 0;
    /* Margin via flex-gap im Parent (details-inner) gesteuert – kein eigener Margin */
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex: 1 1 0%;
    min-width: 0;
}

.trust-badge-item svg {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    flex-shrink: 0;
    color: var(--gold);
    fill: currentColor;
    transition: transform 0.3s ease;
}

.trust-badge-item img {
    width: auto;
    height: 1.5rem;
    min-height: 1.5rem;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(71%) sepia(13%) saturate(1210%) hue-rotate(3deg) brightness(91%) contrast(87%);
    transition: transform 0.3s ease;
}

.trust-badge-text {
    font-size: var(--fs-badge);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
    font-weight: 400;
    /* FIX: word-break:break-word + hyphens:auto entfernt.
       Erbt globale Baseline → keine Einzelbuchstaben-Trennung. */
    overflow-wrap: break-word;
}

.product-description {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: calc(var(--fs-body-lg) * 1.15);
    line-height: 1.6;
    color: var(--dark-grey);
    text-align: center;
    /* Kompakterer Abstand für Quadrat-Passform */
    margin: 1rem 0;
    font-weight: 300;
    padding: 0 0.5rem;
}

.product-price-block {
    text-align: center;
    /* GEOMETRIE-LOCK: Kein globaler margin-bottom – Abstände werden ausschliesslich
       durch den flex-gap des Parent-Containers (.pp-brand__cta) gesteuert.
       Einheitliches Padding auf allen Seiten – keine Asymmetrie. */
    margin: 0;
    padding: 1.2rem;
    background: rgba(26, 26, 28, 0.15);
    border-radius: 0;
    border: 0.5px solid rgba(218, 190, 145, 0.2);
    box-sizing: border-box;
    width: 100%;
}

/* --- Status Group removed as per brand strategy --- */

/* --- Sold Out Button Style removed --- */

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dark-grey);
    margin-bottom: 0.3rem;
}

.product-price .currency {
    font-size: var(--fs-currency);
    color: var(--gold);
    letter-spacing: 0.1em;
}

.product-price .amount {
    font-family: var(--font-accent);
    font-size: var(--fs-price);
    font-weight: 200;
}

.price-sub {
    font-size: var(--fs-price-sub);
    color: var(--text-muted);
    opacity: 0.5;
    letter-spacing: 0.05em;
}

.price-liter {
    font-family: var(--font-accent);
    font-size: calc(var(--fs-price-sub) * 0.76);
    color: rgba(253, 252, 248, 0.45);
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
    text-align: center;
    font-weight: 300;
}

/* --- Buttons --- */
.btn-buy,
.btn-checkout,
.btn-order {
    width: 100%;
    height: 3.8rem;
    /* Fixe Höhe für absolute Symmetrie */
    background: var(--gold);
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 0;
    font-family: var(--font-accent);
    letter-spacing: 0.25em;
    text-indent: 0.25em;
    font-size: var(--fs-button);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(196, 161, 105, 0.15);
}

.btn-buy {
    color: var(--black);
}

@media (hover: hover) and (pointer: fine) {

    .btn-buy:hover {
        background: var(--gold-dark);
        color: var(--white);
        letter-spacing: 0.3em;
    }
}

/* SHIMMER VARIANTE 2 (shimmer-aura): Entfernt – nur shimmer-sweep wird verwendet */

/* Payment Logos in Produkt-Kacheln: Entfernt – kein HTML-Element im DOM */

/* --- SHIMMER EFFEKT (Liquid Gold Evolution) --- */
.shimmer-sweep {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.shimmer-sweep::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    /* Breiter für weicheren Verlauf */
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.15) 45%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.15) 55%,
            rgba(255, 255, 255, 0) 70%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg) translate3d(0, 0, 0);
    animation: sovereign-liquid-sweep 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes sovereign-liquid-sweep {
    0% {
        transform: translateX(-100%) skewX(-25deg) translate3d(0, 0, 0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    60% {
        transform: translateX(150%) skewX(-25deg) translate3d(0, 0, 0);
        opacity: 0;
    }

    100% {
        transform: translateX(150%) skewX(-25deg) translate3d(0, 0, 0);
        opacity: 0;
    }
}


/* ==========================================================
   Specification Seal · Luxury Certificate Panel
   
   CONCEPT: Ein Analysezertifikat-artiges Panel mit drei Sektionen
   (Komposition, Reinheit, Qualität) – kommuniziert alle
   Produkteigenschaften auf elegante, minimalistische Weise.
   Visuell wie eine Uhren- oder Schmuck-Zertifikatskarte.
   
   SPEZIFITÄT: Alle Selektoren mit .pp-brand__details Kontext
   für maximale Spezifität und Isolation von globalen li-Styles.
   ========================================================== */

/* --- Seal Container: Single Premium Unified Card --- */
.pp-brand__details .spec-seal {
    background: rgba(26, 26, 28, 0.15);
    border: 0.5px solid rgba(218, 190, 145, 0.2);
    border-radius: 0;
    /* φ¹ Padding: mathematisch symmetrisch auf allen vier Seiten */
    padding: clamp(1.2rem, 2.5vw, 1.618rem);
    display: grid;
    /* GEOMETRIE-FIX: Beide Spalten exakt gleich breit (1fr : 1fr) statt 1.2fr : 1fr.
       Perfekte bilaterale Symmetrie – kein optisches Links-Übergewicht mehr. */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    /* Zeilenabstand φ⁰ · Spaltenabstand φ¹ */
    gap: clamp(1rem, 1.8vw, 1.5rem) clamp(1.618rem, 2.5vw, 2.618rem);
    margin: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.pp-brand__details .spec-seal__capacity {
    /* GEOMETRIE-FIX: Capacity-Tag überspannt beide Spalten und ist zentriert.
       Vorher: nur in grid-column:1 (links) → optisches Ungleichgewicht.
       Jetzt: grid-column: 1 / -1 = volle Breite → exakt mittig */
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid color-mix(in srgb, var(--gold) 80%, black 20%);
    padding: 0.35rem 1.2rem;
    /* Symmetrisches horizontales Padding */
    font-family: var(--font-accent), sans-serif;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    /* Symmetrie-Ausgleich beim letter-spacing */
    text-transform: none;
    white-space: nowrap;
    background: color-mix(in srgb, var(--gold) 80%, black 20%);
    border-radius: 4px;
    margin-top: 0.5rem;
    /* Gleichmässiger Abstand nach oben */
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-brand__details .spec-seal__capacity.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sektionen: Spalten innerhalb der vereinheitlichten Karte --- */
.pp-brand__details .spec-seal__section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    overflow: hidden;
    width: 100%;
}

/* Erste Sektion (Edition) geht links oben */
.pp-brand__details .spec-seal__section:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    border-right: 0.5px solid rgba(218, 190, 145, 0.15);
    padding-right: clamp(1.5rem, 2.5vw, 2.2rem);
}

/* Zweite Sektion (Komposition) oben rechts */
.pp-brand__details .spec-seal__section:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Dritte Sektion (Reinheit) unten rechts */
.pp-brand__details .spec-seal__section:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* --- Sektionsüberschriften mit elegantem Whitespace (keine Linien) --- */
.pp-brand__details .spec-seal__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.6rem;
    margin-bottom: 0.8rem;
}

.pp-brand__details .spec-seal__line {
    display: none;
}

.pp-brand__details .spec-seal__label {
    font-family: var(--font-accent);
    font-size: var(--fs-legal);
    letter-spacing: 0.25em;
    color: rgba(196, 161, 105, 0.65);
    text-transform: uppercase;
    font-weight: 400;
    transform: translateX(-0.125em);
}

/* --- Listen: Komposition & Reinheit ---
   Explizite Resets für list-style und li::before,
   damit keine globalen Styles durchschlagen. */
.pp-brand__details .spec-seal__list {
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
    align-self: stretch;
    position: relative;
    /* Für die absolute Ausrichtung der vertikalen Linie */
}

.pp-brand__details .spec-seal__list li {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    position: static;
    margin: 0;
}

/* Expliziter Reset: Blockiert die goldene Raute von .product-features */
.pp-brand__details .spec-seal__list li::before {
    content: none;
    display: none;
    width: 0;
    height: 0;
    background: none;
}

/* Lokale vertikale Fortschrittslinie hinter den Rauten */
.pp-brand__details .spec-seal__line-vertical {
    position: absolute;
    width: 2px;
    background: rgba(110, 85, 49, 0.15);
    /* 50% dunkleres Bronze-Gold im inaktiven Zustand */
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    display: none;
    /* Wird per JS positioniert und angezeigt */
}

.pp-brand__details .spec-seal__line-vertical-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            hsl(37, 44%, 25%) 0%,
            hsl(37, 44%, 30%) 50%,
            hsl(37, 44%, 35%) 100%);
    /* Exakt 50% dunkler als das Gold der Rauten (30% Lightness statt 59% Helligkeit) */
    transform: scaleY(0);
    transform-origin: top center;
}

.pp-brand__details .spec-seal__item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-family: var(--font-accent);
    font-size: var(--fs-spec);
    font-weight: 300;
    color: rgba(253, 252, 248, 0.75);
    letter-spacing: 0.04em;
    line-height: 1.4;
    width: 100%;
    position: relative;
    z-index: 2;
}

.pp-brand__details .spec-seal__item--bold {
    font-weight: 600;
}

/* Feine, goldene Kreispunkte (ehemals Rauten-Marker & Häkchen) */
.pp-brand__details .spec-seal__marker,
.pp-brand__details .spec-seal__check {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    font-size: 0px !important;
    /* Versteckt den Unicode-Text */
    background: #343330;
    /* Innen mit exakter Hintergrundfarbe gefüllt, um die Linie zu überlagern */
    border: 2px solid rgba(196, 161, 105, 0.35);
    /* Exakt so breit wie die vertikale Linie dahinter */
    border-radius: 50%;
    transform: none;
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    flex-shrink: 0;
    margin-top: 0.35rem;
    /* Perfekte vertikale Zentrierung */
    z-index: 3;
}

/* Edler, minimalistischer Lichteffekt (Ring-Expansion) */
.pp-brand__details .spec-seal__marker::after,
.pp-brand__details .spec-seal__check::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1.5px solid var(--gold);
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    border-radius: 50%;
}

.pp-brand__details .spec-seal__item.is-active .spec-seal__marker,
.pp-brand__details .spec-seal__item.is-active .spec-seal__check {
    background: #343330;
    /* Füllung bleibt die Hintergrundfarbe */
    border-color: var(--gold);
    box-shadow: 0 0 4px var(--gold);
}

.pp-brand__details .spec-seal__item.is-active .spec-seal__marker::after,
.pp-brand__details .spec-seal__item.is-active .spec-seal__check::after {
    animation: bulletLichteffekt 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Text-Spans in den Listen - einblenden per Kaskade */
.pp-brand__details .spec-seal__text {
    color: rgba(253, 252, 248, 0.75);
    min-width: 0;
    opacity: 0;
    transform: translate3d(12px, 0, 0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-brand__details .spec-seal__item.is-active .spec-seal__text {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes bulletLichteffekt {
    0% {
        transform: rotate(0deg) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: rotate(90deg) scale(2.2);
        opacity: 0;
    }
}

@keyframes checkGlow {
    0% {
        transform: scale(0.85);
        text-shadow: none;
    }

    25% {
        transform: scale(1.3);
        text-shadow: 0 0 12px rgba(196, 161, 105, 1), 0 0 24px rgba(196, 161, 105, 0.5);
    }

    100% {
        transform: scale(1.1);
        text-shadow: 0 0 5px rgba(196, 161, 105, 0.4);
    }
}

/* --- Qualitäts-Metriken (pH + MHD) – nebeneinander --- */
.pp-brand__details .spec-seal__specs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.618rem;
    padding: 0.3rem 0;
}

.pp-brand__details .spec-seal__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.pp-brand__details .spec-seal__spec-label {
    font-family: var(--font-accent);
    font-size: var(--fs-badge);
    letter-spacing: 0.2em;
    color: rgba(196, 161, 105, 0.6);
    text-transform: uppercase;
    font-weight: 400;
}

.pp-brand__details .spec-seal__spec-value {
    font-family: var(--font-accent);
    font-size: var(--fs-body-sm);
    color: rgba(253, 252, 248, 0.8);
    font-weight: 200;
    letter-spacing: 0.05em;
}

/* Vertikaler Trenner zwischen pH und MHD */
.pp-brand__details .spec-seal__spec-divider {
    width: 0.5px;
    height: 2rem;
    background: rgba(196, 161, 105, 0.25);
    flex-shrink: 0;
}

/* Fußnote: "ungeöffnet | geöffnet" */
.pp-brand__details .spec-seal__spec-note {
    font-family: var(--font-accent);
    font-size: var(--fs-badge);
    color: rgba(253, 252, 248, 0.3);
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: -0.15rem;
    display: block;
}


/* ==========================================================
   TABLET: Spec-Seal Stacked Layout (unter 64rem / 1024px)
   ========================================================== */
@media (max-width: 64rem) {
    .pp-brand__details .spec-seal {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.5rem;
        padding: clamp(0.75rem, 3vw, 1.2rem);
    }

    .pp-brand__details .spec-seal__capacity {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0.8rem;
        padding: 0.35rem 1.2rem;
        border: 0.5px solid color-mix(in srgb, var(--gold) 80%, black 20%);
        text-align: center;
        align-self: center;
        justify-self: center;
        display: inline-flex;
    }

    .pp-brand__details .spec-seal__section {
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        align-items: flex-start;
        min-width: 0;
        overflow: visible;
        width: 100%;
    }

    .pp-brand__details .spec-seal__section:nth-child(1) {
        grid-column: 1;
        grid-row: auto;
        border-right: none;
        padding-right: 0;
        border-bottom: 0.5px solid rgba(218, 190, 145, 0.15);
        padding-bottom: 1.2rem;
    }

    .pp-brand__details .spec-seal__section:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
        border-bottom: 0.5px solid rgba(218, 190, 145, 0.15);
        padding-bottom: 1.2rem;
    }

    .pp-brand__details .spec-seal__section:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }
}


/* ==========================================================
   MOBILE: Product Pair – Diptychon → Vertical Stack
   
   Auf Mobile wechselt das horizontale 2-Spalten-Diptychon
   in einen vertikalen Stack: Video oben, Brand darunter.
   
   SPEZIFITÄT:
   .store-page .selector  (0,2,0+) schlägt Desktop (0,1,0)
   sauber über die Kaskade – KEIN !important nötig.
   
   BREAKPOINT: 63.99rem (≈1024px) statt 48rem (768px).
   Stellt sicher, dass Tablet-Formate (iPad 810px, iPad Air 820px,
   iPad Pro 1024px, Surface Pro 912px) den vertikalen Stack bekommen.
   Das Desktop-Grid (19a l.274) startet erst bei min-width:64rem →
   unterhalb davon ist store-grid sowieso 1-spaltig, also muss die
   Kachel selbst ebenfalls vertikal gestapelt sein.
   ========================================================== */
@media (max-width: 63.99rem) {

    /* --- MOBILE: Alle Produktkacheln (Travel, Intense, Signature, Valentina) im Grid anzeigen --- */
    .store-page .product-pair {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        aspect-ratio: auto;
        gap: 0;
        border: none !important;
        border-radius: var(--product-tile-radius);
        background-color: var(--obsidian);
        width: 100%;
        overflow: hidden;
        overflow-anchor: none;
        box-shadow: inset 0 0 0 1.5px rgba(196, 161, 105, 0.10);
        transition: box-shadow 1s cubic-bezier(0.22, 1, 0.36, 1);
        transform: translateZ(0);
        contain: layout style;
    }

    /* FELSENFEST: box-sizing auf ALLEN Kachel-Elementen */
    .store-page .product-pair *,
    .store-page .product-pair *::before,
    .store-page .product-pair *::after {
        box-sizing: border-box;
    }

    /* Mobile: inset border + keine äußeren Shadows */
    .store-page .product-pair {
        height: auto !important;
        box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--gold-light) 25%, black 75%);
    }

    /* Innere Elemente: keine dekorativen Shadows */
    .store-page .product-pair .pp-brand,
    .store-page .product-pair .pp-visual {
        box-shadow: none;
    }

    /* Top-Tile auf Mobile: Logo über dem Foto, über dem Produktnamen */
    .store-page .pp-top-tile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-row: 1;
        grid-column: 1;
        width: 100%;
        min-height: 12rem;
        padding: 2rem 1rem;
        box-sizing: border-box;
        gap: 0.6rem;
    }

    .pp-top-tile__logo {
        display: block;
        width: clamp(7rem, 40vw, 12rem);
        height: auto;
    }

    .pp-top-tile__name {
        margin-top: 0.2rem;
        font-family: var(--font-accent);
        font-size: clamp(0.75rem, 2.2vw, 1.0rem);
        font-weight: 300;
        color: var(--gold);
        letter-spacing: 0.4em;
        text-indent: 0.4em;
        /* Symmetrie-Ausgleich */
        text-transform: uppercase;
        line-height: 1;
    }

    /* Video immer sichtbar und farbig (Kacheln immer geöffnet) */

    /* --- Video/Foto: Volle Breite OBEN, QUADRATISCH ---
       ARCHITEKTUR-WECHSEL: Video ist jetzt grid-row:2.
       Beim Öffnen der Kachel bleibt das Video an exakt derselben
       Stelle stehen – die Details expandieren UNTERHALB des Videos.
       FIX: position:relative + padding-bottom:100% erzwingt echtes 1:1-Quadrat
       unabhängig vom Grid-Auto-Row-Verhalten. */
    .store-page .pp-visual {
        grid-row: 2;
        grid-column: 1;
        /* Quadrat-Trick: padding-bottom=100% erzeugt Höhe = Breite */
        position: relative;
        width: 100%;
        padding-bottom: 100%;
        height: 0;
        border-radius: 0;
        /* FELSENFEST: KEINE Border, KEIN box-shadow → NULL Layout-Einfluss. */
        border: none;
        box-shadow: none;
        overflow: hidden;
    }

    /* Foto/Video absolut im quadratischen Container → füllt ihn vollständig */
    .store-page .pp-visual img,
    .store-page .pp-visual .product-tile__video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* --- Brand-Panel: UNTEN (grid-row:3), expandiert mit dem Inhalt --- */
    .store-page .pp-brand {
        grid-row: 3;
        grid-column: 1;
        aspect-ratio: auto;
        min-height: 100cqi;
        height: auto;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        justify-content: flex-start;
        transition: none;
    }

    /* ==========================================================
       φ-SPACING SYSTEM · Mobile Geöffnet
       
       Mathematisch exaktes Goldener-Schnitt-Raster:
       φ⁰ = 1.000rem  (Micro: Quote-Zeilen, Badge-Abstand)
       φ¹ = 1.618rem  (Detail: Features↔Divider↔Description↔Price↔Badges)
       φ² = 2.618rem  (Section: Padding, Logo↔Quote, Quote↔Details)
       φ³ = 4.236rem  (Major: Oberer Breathing Room)
       ========================================================== */

    /* --- Inner: Horizontales Padding --- */
    .store-page .pp-brand__inner {
        padding: 0 1.2rem;
        height: auto;
        min-height: 0;
        overflow: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
    }

    /* --- Quote: Zeilen-Abstand φ⁰ --- */
    .store-page .pp-brand__quote {
        gap: 1rem;
        /* φ⁰ zwischen Text und Autor */
    }

    /* --- Duplikat-Logo + Name unterhalb Foto: auf Mobile ausblenden ---
       pp-top-tile zeigt Logo und Name bereits ÜBER dem Foto.
       pp-brand__content würde diese Information nochmals zeigen → entfernt. */
    .store-page .product-pair .pp-brand__content {
        display: none;
    }

    /* --- Parallax-Drift auf Mobile deaktiviert (Kacheln immer geöffnet) --- */
    .store-page .product-pair .pp-brand__content .product-tile__title,
    .store-page .product-pair .pp-brand__content .pp-brand__quote {
        transform: none;
    }

    /* --- Logo: KEIN Scale, KEIN Translate auf Mobile --- */
    .store-page .product-pair .title-brand-combined,
    .store-page .product-pair:hover .title-brand-combined {
        transform: none !important;
    }

    /* --- Details: immer geöffnet auf Mobile --- */
    .store-page .product-pair .pp-brand__details {
        transform: none;
        margin-top: 0;
        grid-template-rows: 1fr !important;
    }

    /* Opening Stagger auf Mobile: etwas längere Transition für Luxus-Gefühl */
    .store-page .product-pair .pp-brand__details-inner > * {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
        transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
            transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: calc(0.4s + var(--stagger-i, 0) * 0.12s);
    }

    /* --- Details-Inner: Reduzierte Abstände für ausgeglichene Verteilung auf Mobile --- */
    .store-page .product-pair .pp-brand__details-inner {
        gap: 2rem;
        min-height: 0 !important;
    }

    /* --- Features: Auf Mobile einpaltig (kein 2-Spalten-Grid) --- */
    .store-page .product-pair .product-features {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 0.8rem;
    }

    /* --- Spec-Seal Mobile: Stacked Layout für 3 Spalten --- */
    .store-page .pp-brand__details .spec-seal {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.5rem;
        padding: clamp(0.75rem, 3vw, 1.2rem);
    }

    .store-page .pp-brand__details .spec-seal__capacity {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0.8rem;
        padding: 0.35rem 0.75rem;
        border: 0.5px solid color-mix(in srgb, var(--gold) 80%, black 20%);
        text-align: center;
        align-self: center;
        justify-self: center;
        display: inline-flex;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .store-page .pp-brand__details .spec-seal__capacity.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    .store-page .pp-brand__details .spec-seal__section {
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        align-items: center;
        text-align: center;
        min-width: 0;
        overflow: visible;
        width: 100%;
    }

    .store-page .pp-brand__details .spec-seal__list {
        align-items: center;
        text-align: center;
    }

    .store-page .pp-brand__details .spec-seal__section:nth-child(1) {
        grid-column: 1;
        grid-row: auto;
        border-right: none;
        padding-right: 0;
        border-bottom: 0.5px solid rgba(218, 190, 145, 0.15);
        padding-bottom: 1.2rem;
    }

    .store-page .pp-brand__details .spec-seal__section:nth-child(2) {
        grid-column: 1;
        grid-row: auto;
        border-bottom: 0.5px solid rgba(218, 190, 145, 0.15);
        padding-bottom: 1.2rem;
    }

    .store-page .pp-brand__details .spec-seal__section:nth-child(3) {
        grid-column: 1;
        grid-row: auto;
    }

    .store-page .pp-brand__details .spec-seal__item {
        font-size: clamp(0.65rem, 2.8vw, 0.85rem);
    }

    .store-page .pp-brand__details .spec-seal__label {
        font-size: clamp(0.5rem, 2.2vw, 0.7rem);
        letter-spacing: 0.15em;
    }

    .store-page .pp-brand__details .spec-seal__heading {
        gap: 0;
        margin-top: 0.4rem;
        margin-bottom: 0.6rem;
    }

    /* --- Trust Badges Mobile: Alle 3 Siegel sichtbar & zentriert --- */
    .store-page .product-trust-badges {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: clamp(0.8rem, 3vw, 1.618rem);
        width: 100%;
        padding: 0;
        flex-wrap: nowrap;
    }

    .store-page .trust-badge-item {
        flex: 1 1 0%;
        min-width: 0;
        max-width: 33.33%;
    }

    .store-page .trust-badge-item svg {
        width: 1.3rem;
        height: 1.3rem;
        min-width: 1.3rem;
        min-height: 1.3rem;
    }

    .store-page .trust-badge-item img {
        height: 1.3rem;
        min-height: 1.3rem;
    }

    .store-page .trust-badge-text {
        font-size: clamp(0.65rem, 2.2vw, 0.75rem);
        letter-spacing: 0.05em;
    }

    .store-page .pp-brand-spacer {
        display: none;
    }

    /* --- CTA: Immer sichtbar (Kacheln permanent geöffnet) --- */
    .store-page .pp-brand__cta {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-top: max(2.5rem, 4vh) !important;
        padding: 0 1.2rem 2.5rem !important;
        background: none !important;
        box-shadow: none !important;
        transform: translateY(0) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: max(1rem, 1.2rem) !important;
    }

    /* --- Badges auf Mobile --- */
    .store-page .product-pair .pp-brand__set-badge {
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        font-size: clamp(0.95rem, 2.2vw, 1.15rem);
        letter-spacing: 0.4em;
        text-indent: 0.4em;
    }

    /* --- CTA Button Schriftfarbe bei Klick (Mobile) --- */
    .store-page .btn-buy:active,
    .store-page .btn-buy:focus,
    .store-page .btn-buy:hover {
        color: var(--white) !important;
    }

    /* ==========================================================
       GRAVUR-TRIGGER MOBILE: Exakte vertikale Zentrierung
       
       ZIEL: Der Satz "Ihr Set beinhaltet..." steht EXAKT in der
       horizontalen Mitte zwischen der Unterkante der Preiskachel
       und der Oberkante des RESERVIEREN-Buttons.
       
       ARCHITEKTUR:
       Das Flex-Layout erzeugt automatisch Gaps zwischen ALLEN
       Flex-Kindern. Bei 5 Kindern (Preis, Trigger, Gravur-Reveal,
       Btn-Buy, Btn-Close) gibt es 4 Gaps. Das Problem: Der
       .gravur-reveal hat im geschlossenen Zustand Höhe 0, nimmt
       aber trotzdem einen Gap-Slot ein → asymmetrisch.
       
       LÖSUNG: 
       1. CTA-Gap definiert den Basisabstand (--cta-gap).
       2. .gravur-reveal (geschlossen) bekommt negativen margin-top
          der EXAKT den gap + sich selbst kompensiert → NULL Raum.
       3. Der Trigger bekommt symmetrische margin-top/bottom die
          ZUSÄTZLICH zum CTA-gap wirken.
       4. Ergebnis: Oben-Abstand = gap + trigger-margin-top
                    Unten-Abstand = trigger-margin-bottom + (gap - gap [kompensiert]) 
                    = trigger-margin-bottom
          → Für exakte Zentrierung: margin-top = margin-bottom = gap/2
            So ist: Oben = gap + gap/2, Unten = gap/2 + gap (durch btn)
            Falsch. Besser: gap = 0 zwischen Trigger-Nachbarn, eigene margin.

       DEEP-FIX V2: Verwende eine eigene CSS Custom Property und
       berechne die Abstände so, dass der visuelle Abstand
       Preis↔Trigger == Trigger↔Button EXAKT identisch ist.
       
       Flex-Gap zwischen ALLEN Kindern = --cta-gap.
       Visueller Abstand Preis→Trigger = --cta-gap + trigger.margin-top
       Visueller Abstand Trigger→Button = trigger.margin-bottom + (hidden gravur gap kompensiert)
       
       Für Gleichheit: margin-top = margin-bottom = 0,
       und der einzige gap reicht als Symmetrie.
       Die Kompensation des .gravur-reveal gap muss EXAKT einen gap eliminieren.
       ========================================================== */

    /* --- CTA-Gap (Mobile Gravur-Layout) --- */
    .store-page .pp-brand__cta {
        gap: max(0.8rem, 1.5vh) !important;
    }

    /* Trigger: margin-top = margin-bottom = 0
       → Der Flex-Gap allein bestimmt den Abstand.
       Da gap sowohl VOR als auch NACH dem Trigger wirkt,
       und der .gravur-reveal kompensiert wird,
       steht der Trigger EXAKT in der Mitte.
       
       padding-top/bottom: Minimaler innerer Abstand für
       Touch-Target-Verbesserung (kein Layout-Einfluss). */
    .store-page .gravur-reveal-trigger {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: max(0.2rem, 0.3vh) !important;
        padding-bottom: max(0.2rem, 0.3vh) !important;
    }

    /* ==========================================================
       GRAVUR-REVEAL KOMPENSATION (geschlossener Zustand)
       
       Der .gravur-reveal ist ein Flex-Kind mit grid-template-rows: 0fr
       → visuell Höhe 0, ABER der Flex-Container zählt es als Kind
       und fügt ZWEI Gaps ein (einen vor und einen nach dem Element).
       
       Fix: Negativer margin-top = -1 × gap
       → Eliminiert den Gap VOR dem .gravur-reveal.
       Der Gap NACH dem .gravur-reveal ist der korrekte Abstand
       zum RESERVIEREN-Button und bleibt erhalten.
       
       Ergebnis:
       Visueller Abstand Preis↔Trigger = 1 × gap ✓
       Visueller Abstand Trigger↔Button = 1 × gap ✓
       → EXAKTE ZENTRIERUNG ✓
       ========================================================== */
    .store-page .pp-brand__cta .gravur-reveal {
        margin-top: calc(-1 * max(0.8rem, 1.5vh)) !important;
        transition: grid-template-rows 1.8s cubic-bezier(0.22, 1, 0.36, 1),
            margin-top 1.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .store-page .pp-brand__cta .gravur-reveal.is-active {
        margin-top: 0 !important;
    }

}

/* --- Store Highlight Statement (Intro-Sektion) ---
   Montserrat, 20% grösser als news-lead, 200% mehr Gewicht */
.store-highlight-statement {
    font-family: var(--font-accent);
    font-size: calc(var(--fs-h3) * 1.15);
    font-weight: 900;
    line-height: 2.04;
    color: #ffffff;
    margin: 0;
    padding-left: clamp(1rem, 3vw, 1.5rem);
    border-left: 2px solid var(--gold);
}

/* Reduzierter Abstand zwischen Highlight-Statement und folgendem Absatz */
.store-highlight-statement+.news-body-text {
    margin-top: calc(-1 * clamp(0.5rem, 2vw, 1.2rem));
}

/* Personalisierungshinweis unter dem Preisblock */
.pp-brand__details .product-personalization,
.pp-brand__cta .product-personalization {
    font-family: var(--font-accent);
    font-size: clamp(0.6375rem, 1.53vw, 0.7225rem);
    font-weight: 300;
    color: rgba(226, 208, 180, 0.95);
    /* Hellerer Goldton (+50% Helligkeit) */
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
}

/* ==========================================================
   GRAVUR REVEAL – Eleganter Klick-Trigger + Bild-Einblendung
   Luxuriöse Zeitlupen-Animation (1.8s cubic-bezier)
   ========================================================== */

/* --- Trigger-Button: Erbt das Personalisierungs-Styling, wird klickbar --- */
/* POSITIONIERUNG: Großer margin-top schiebt den Gravur-Satz nach unten,
   horizontal näher zum RESERVIEREN-Button (weg vom Preisblock).
   HINWEIS: Jeweils um 50%, nochmals um 30%, und nochmals um 30% verringert.
   Vertikale Zentrierung: margin-top = margin-bottom (via padding) für exakte Mitte. */
.gravur-reveal-trigger {
    font-family: var(--font-accent);
    font-size: clamp(0.6375rem, 1.53vw, 0.7225rem);
    font-weight: 300;
    color: rgba(226, 208, 180, 0.95);
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
    margin-top: max(0.6rem, clamp(0.49rem, 0.98vw, 0.858rem));
    /* Mindestabstand 0.6rem – verhindert Überlappung auf Tablets */
    margin-bottom: max(0.6rem, clamp(0.49rem, 0.98vw, 0.858rem));
    /* Gleicher Abstand nach unten → exakte vertikale Mitte */
    max-width: 100%;
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 0.5px solid rgba(196, 161, 105, 0);
    padding: 0.4rem 0;
    cursor: pointer;
    position: relative;
    transition: color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        letter-spacing 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        text-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .gravur-reveal-trigger:hover {
        color: var(--gold);
        border-bottom-color: rgba(196, 161, 105, 0.5);
        letter-spacing: 0.12em;
        text-shadow: 0 0 20px rgba(196, 161, 105, 0.2);
    }
}

.gravur-reveal-trigger:active {
    color: var(--gold);
}



/* Fadet den Gravur-Satz aus, wenn aktiv (nur auf Desktop) */
@media (min-width: 64rem) {

    .product-pair.gravur-open .gravur-reveal-trigger,
    .product-pair:has(.gravur-reveal.is-active) .gravur-reveal-trigger {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-0.5rem) !important;
    }
}

/* --- Reveal-Container: grid-rows 0fr → 1fr für flüssige Expansion --- */
/* HINWEIS: margin-top kompensiert den doppelten Gap bei geschlossener Gravur.
   Der negative margin-top neutralisiert den CTA-gap + den margin-bottom des Triggers,
   sodass der Button direkt nach dem Trigger folgt (exakte Zentrierung bleibt erhalten). */
.gravur-reveal {
    display: grid;
    grid-template-rows: 0fr;
    /* GEOMETRIE-LOCK: Kompensiert exakt CTA-gap (1rem) + trigger-margin-bottom (max(0.6rem,...)).
       Damit folgt der AUSWÄHLEN-Button direkt nach dem Trigger ohne visuellen Leerraum. */
    margin-top: calc(-1rem - max(0.6rem, clamp(0.49rem, 0.98vw, 0.858rem)));
    transition: grid-template-rows 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        margin-top 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    width: 100%;
}

.gravur-reveal.is-active {
    grid-template-rows: 1fr;
    margin-top: 0;
}

/* Inner-Wrapper für overflow:hidden im 0fr-Zustand */
.gravur-reveal__image-wrap {
    min-height: 0;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

/* --- Bild: Cinematic Slow-Motion Zoom-In --- */
.gravur-reveal__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0;
    transform: scale(1.08) translate3d(0, 0, 0);
    filter: brightness(0.85);
    transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 2.4s cubic-bezier(0.22, 1, 0.36, 1),
        filter 2.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin-top: clamp(0.8rem, 2vw, 1.2rem);
}

.gravur-reveal.is-active .gravur-reveal__img {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
    filter: brightness(1);
}

/* Closing: schnellere Rückblende */
.gravur-reveal:not(.is-active) .gravur-reveal__img {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Hinweistext: Verzögertes Einblenden nach Bild --- */
.gravur-reveal__hint {
    font-family: var(--font-accent);
    font-size: clamp(0.6375rem, 1.53vw, 0.7225rem);
    font-weight: 300;
    color: rgba(226, 208, 180, 0.95);
    letter-spacing: 0.08em;
    text-indent: 0.08em;
    line-height: 1.6;
    text-align: center;
    margin: clamp(0.6rem, 1.5vw, 1rem) auto 0;
    max-width: 85%;
    opacity: 0;
    transform: translate3d(0, 0.8rem, 0);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

.gravur-reveal.is-active .gravur-reveal__hint {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.gravur-reveal:not(.is-active) .gravur-reveal__hint {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0s;
}

/* Kompakter Preisblock in der Sticky CTA-Sektion */
.pp-brand__cta .product-price-block {
    margin: 0;
    padding: 0.6rem 1.2rem;
    background: rgba(218, 190, 145, 0.04);
    border: 0.5px solid rgba(218, 190, 145, 0.12);
    border-radius: 0;
    width: 100%;
}

/* Produktspezifische Brand-Hintergrundfarben (Kacheln immer geöffnet) */
.store-page .product-pair[data-id="ophyr-15"] .pp-brand {
    background: linear-gradient(135deg, #122038, #0c1222);
}

.store-page .product-pair[data-id="ophyr-15"] .spec-seal,
.store-page .product-pair[data-id="ophyr-15"] .product-price-block {
    background: linear-gradient(135deg, #122038, #0c1222) !important;
}

.store-page .product-pair[data-id="ophyr-50"] .pp-brand {
    background: linear-gradient(135deg, #162e21, #0f2118);
}

.store-page .product-pair[data-id="ophyr-50"] .spec-seal,
.store-page .product-pair[data-id="ophyr-50"] .product-price-block {
    background: linear-gradient(135deg, #162e21, #0f2118) !important;
}

.store-page .product-pair[data-id="ophyr-150"] .pp-brand {
    background: linear-gradient(135deg, #2e1216, #1e0c0f);
}

.store-page .product-pair[data-id="ophyr-150"] .spec-seal,
.store-page .product-pair[data-id="ophyr-150"] .product-price-block {
    background: linear-gradient(135deg, #2e1216, #1e0c0f) !important;
}

.store-page .product-pair[data-id="ophyr-serie-valentina"] .pp-brand {
    background: linear-gradient(135deg, #3a2a12, #241b0b);
}

.store-page .product-pair[data-id="ophyr-serie-valentina"] .spec-seal,
.store-page .product-pair[data-id="ophyr-serie-valentina"] .product-price-block {
    background: linear-gradient(135deg, #3a2a12, #241b0b) !important;
}

/* ==========================================================
   GRAVUR REVEAL BACKGROUND FADING (DESKTOP ONLY)
   Fades out the price tile and specification infobox when
   the engraving preview is opening/active on desktop.
   ========================================================== */
@media (min-width: 64rem) {

    /* Set up transition parameters on the elements for a smooth fade out/in */
    .pp-brand__details {
        transition: grid-template-rows 1s cubic-bezier(0.22, 1, 0.36, 1),
            margin-top 1s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .pp-brand__cta .product-price-block {
        transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    /* Fade-out active state when engraving reveal is active */
    .product-pair.gravur-open .pp-brand__details,
    .product-pair:has(.gravur-reveal.is-active) .pp-brand__details {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-2rem) !important;
    }

    .product-pair.gravur-open .pp-brand__cta .product-price-block,
    .product-pair:has(.gravur-reveal.is-active) .pp-brand__cta .product-price-block {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-1rem) !important;
    }
}

/* ==========================================================
   "ALLE DETAILS" Hint · Mobile Only
   
   PHILOSOPHY: Ein subtiler, luxuriöser Hinweis der dem User
   signalisiert, dass die Kachel geöffnet ist und Details
   sichtbar werden. Elegant ein- und ausgeblendet, synchron
   mit der Kachel-Öffnungsanimation.
   
   DESKTOP: Komplett ausgeblendet (display:none).
   MOBILE: Lebt im pp-brand__content, unter dem Badge.
   ========================================================== */

/* Desktop: ALLE DETAILS komplett versteckt */
.pp-brand__details-hint {
    display: none;
}

/* Mobile: Eleganter Hint unter dem Logo/Badge */
@media (max-width: 63.99rem) {

    .store-page .pp-brand__details-hint {
        display: block;
        font-family: var(--font-accent);
        font-size: clamp(0.55rem, 1.8vw, 0.7rem);
        font-weight: 300;
        letter-spacing: 0.35em;
        text-indent: 0.35em;
        text-transform: uppercase;
        color: var(--gold);
        text-align: center;
        opacity: 0;
        transform: translate3d(0, 0.5rem, 0);
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
            letter-spacing 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        margin-top: clamp(0.8rem, 2vw, 1.2rem);
    }



    /* Hint immer sichtbar (Kacheln permanent geöffnet) */
    .store-page .pp-brand__details-hint {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        letter-spacing: 0.45em;
        text-indent: 0.45em;
    }


}


/* ==========================================================
   IVORY STAGE · Store-spezifische Anpassungen
   Übergangszone Hero → Ivory + Paracelsus-Zitat auf Hell
   ========================================================== */

/* --- Hero-Divider: Auf Store-Seite unsichtbar (kein Schatten-Effekt) --- */
.store-page .hero-divider {
    display: none;
}

/* --- Paracelsus-Zitat: Verwendet die globalen Styles aus 03-hero.css ---
   Identisch zur Startseite — keine Store-spezifischen Overrides nötig. */

/* --- Reveal-Overlay: Anpassung für hellen Hintergrund ---
   Auf hellem BG muss das Reveal-Overlay Ivory sein, nicht Obsidian */
.store-page .reveal::after {
    background-color: #F5F0E8;
}

/* --- Store Grid: Schatten-Anpassung für hellen Hintergrund ---
   Auf hellem BG sind subtilere Schatten nötig (nur auf Desktop) */
@media (min-width: 64rem) {
    /* Desktop: Subtilerer Schatten auf hellem Hintergrund (immer geöffneter Zustand) */
    .store-page .product-pair {
        box-shadow:
            0 50px 100px -20px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(212, 188, 145, 0.12);
    }
}

/* Edge-to-Edge Mobile: Kacheln füllen 100% Viewport-Breite und haben 90-Grad-Ecken.
   Überschreibt die Rundungen aus dem max-width: 63.99rem Block. */
@media (max-width: 47.99rem) {
    .store-page .product-pair {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* Desktop: pp-brand immer sichtbar, pp-visual normale Spalte */