/* 
 * OPHYR GLOBAL DESIGN SYSTEM v2.0 - STABILIZED & COMPRESSED
 * Authenticated premium style for Ophyr Web Experience.
 * Design fidelity: 100% (No visual changes).
 */

:root {
    --bg-dark-brown: #0a0806;
    --btn-bg: #14110e;
    --btn-border: rgba(255, 255, 255, 0.85);
    --btn-border-hover: var(--color-gold-bright);
    --input-border: rgba(255, 255, 255, 0.7);
    --divider-color: rgba(197, 164, 126, 0.5);

    /* HSL Tokens - Basis 100% Brightness */
    --tp-h: 0;
    --tp-s: 0%;
    --tp-l: 100%;
    /* text-primary */
    --ts-h: 33;
    --ts-s: 8%;
    --ts-l: 61%;
    /* text-secondary */
    --cg-h: 32;
    --cg-s: 39%;
    --cg-l: 63%;
    /* color-gold */
    --cgh-h: 32;
    --cgh-s: 49%;
    --cgh-l: 71%;
    /* color-gold-hover */
    --cgb-h: 44;
    --cgb-s: 100%;
    --cgb-l: 73%;
    /* color-gold-bright */
    --ci-h: 45;
    --ci-s: 47%;
    --ci-l: 97%;
    /* color-ivory */
    --cgt-h: 33;
    --cgt-s: 40%;
    --cgt-l: 55%;
    /* color-gold-text */
    --tm-h: 29;
    --tm-s: 9%;
    --tm-l: 67%;
    /* text-muted */
    --nav-a: 0.7;

    --text-primary: hsl(var(--tp-h), var(--tp-s), var(--tp-l));
    --text-secondary: hsl(var(--ts-h), var(--ts-s), var(--ts-l));
    --color-gold: hsl(var(--cg-h), var(--cg-s), var(--cg-l));
    --color-gold-hover: hsl(var(--cgh-h), var(--cgh-s), var(--cgh-l));
    --color-gold-bright: hsl(var(--cgb-h), var(--cgb-s), var(--cgb-l));
    --color-ivory: hsl(var(--ci-h), var(--ci-s), var(--ci-l));
    --color-gold-text: hsl(var(--cgt-h), var(--cgt-s), var(--cgt-l));
    --text-muted: hsl(var(--tm-h), var(--tm-s), var(--tm-l));

    --border-radius: 6px;
    --transition-speed: 0.3s;
    --rolex-bezier: cubic-bezier(0.25, 1, 0.35, 1);
    --glass-bg: rgba(11, 9, 7, 0.4);
    --glass-blur: 10px;
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* --- DESKTOP BRIGHTNESS (90%) --- */
@media (min-width: 992px) {
    :root {
        --tp-l: 90%;
        --ts-l: 90%;
        --cg-l: 90%;
        --cgh-l: 90%;
        --cgb-l: 90%;
        --ci-l: 90%;
        --cgt-l: 90%;
        --tm-l: 90%;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 1.5px solid var(--color-gold);
    outline-offset: 2px;
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.4);
}

.nav-item-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    stroke: #ffffff;
    stroke-width: 1.5;
    vertical-align: -2px;
    transition: all 0.5s var(--rolex-bezier);
    opacity: 0.88;
}

.nav-item:hover .nav-item-icon,
.nav-item.active .nav-item-icon {
    opacity: 1;
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark-brown);
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    background-image: url('bilder/ophyr-hero-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
}

/* Specific background for Home page */
body.page-home {
    background-image: none !important;
}

/* Prevent double background for specific pages */
body.page-technologie,
body.page-wirkung,
body.page-store,
body.page-concierge,
body.page-design {
    background: transparent !important;
}

/* --- BACKGROUND VIDEO --- */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.bg-video.is-playing {
    opacity: 1;
}

/* =========================================================
   NAVIGATION (TOP NAV) — Horizontal Bar System
   Ported from 7_OPHYR with project design tokens
   ========================================================= */

/* Outer wrapper: gradient background spans full width */
.top-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 8, 6, 1) 0%, rgba(10, 8, 6, 1) 25%, rgba(10, 8, 6, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 20px 0;
    box-sizing: border-box;
    transition: transform 0.8s var(--rolex-bezier), opacity 1.5s ease, filter 1.5s ease;
}

body.idle-mode .top-nav-wrapper {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 1.2s var(--rolex-bezier), opacity 1.2s ease;
}

body.idle-mode .wio-hero.is-compact,
body.idle-mode .konto-hero.is-compact,
body.idle-mode .kontakt-hero.is-compact {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 1.2s var(--rolex-bezier), opacity 1.2s ease;
}

/* Scroll arrows */
.nav-scroll-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.nav-scroll-arrow.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-scroll-arrow.nav-arrow-left {
    left: 0;
    background: linear-gradient(to right, rgba(10, 8, 6, 0.95) 30%, transparent 100%);
    padding-left: 4px;
}

.nav-scroll-arrow.nav-arrow-right {
    right: 0;
    background: linear-gradient(to left, rgba(10, 8, 6, 0.95) 30%, transparent 100%);
    padding-right: 4px;
}

.nav-scroll-arrow svg {
    width: 16px;
    height: 16px;
    stroke: rgba(220, 179, 123, 0.6);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.nav-scroll-arrow:hover svg {
    stroke: rgba(220, 179, 123, 1);
}

/* Inner nav: scrollable, max-width constrained */
.top-nav {
    position: relative;
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 0 2vw;
    box-sizing: border-box;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.top-nav::-webkit-scrollbar {
    display: none;
}

.nav-item {
    flex: 0 0 auto;
    min-width: 0;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: rgba(84, 58, 32, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    padding: clamp(6px, 0.8vw, 12px) clamp(10px, 1.2vw, 16px);
    font-size: clamp(8px, 1vw, 11.5px);
    font-weight: 300;
    letter-spacing: clamp(1px, 0.1vw, 1.5px);
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.4s ease, font-weight 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--rolex-bezier);
    box-shadow: inset 0 0 0 1px rgba(220, 179, 123, 0.35);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    position: relative;
}

/* GHOST LAYER: Reserves bold width to prevent jitter on hover/active */
.nav-item::after {
    display: block;
    content: attr(data-text);
    letter-spacing: inherit;
    text-transform: uppercase;
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

/* Home Icon Navigation Override */
.nav-item.nav-home {
    padding: 8px 18px;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 80px;
    min-height: 40px;
}

.nav-item.nav-home::after {
    display: none !important;
}

.nav-item.nav-home img {
    height: 26px;
    width: auto;
    min-width: 50px;
    object-fit: contain;
    display: block;
    transition: filter 0.4s ease, transform 0.4s ease;
}

/* Hover: only on mouse devices (prevents iOS double-tap bugs) */
@media (hover: hover) {
    .nav-item:hover {
        font-weight: 600 !important;
        color: #ffffff !important;
        box-shadow: inset 0 0 0 1px rgba(220, 179, 123, 0.7);
    }
    .nav-item:hover { background-color: rgba(220, 179, 123, 0.5); }
    .nav-item.nav-home:hover img { filter: brightness(0) saturate(100%) invert(100%); }
}

/* Active state */
.nav-item.active {
    font-weight: 600 !important;
    color: #1a140d !important;
    background-color: rgba(220, 179, 123, 0.9);
    box-shadow: inset 0 0 0 1px rgba(220, 179, 123, 0.9);
}

.nav-item.nav-home.active img {
    filter: brightness(0) saturate(100%) invert(100%);
}

/* --- CONTAINERS & GLASS PANELS --- */
.standard-container,
.faq-container,
.login-container,
.glass-panel {
    background-color: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: none;
    border-radius: 24px;
    box-shadow: inset 0 0 0 0.5px var(--color-gold), 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.6s var(--rolex-bezier), background-color 3.5s ease;
    width: 75%;
    max-width: 1000px;
    margin: 30px auto 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    /* Unified top margin from navigation */
}

/* Consistent spacing between stacked blocks */
.faq-container+.faq-container,
.standard-container+.standard-container {
    margin-top: 30px;
}

.glass-panel {
    width: auto;
    margin: 0;
}

.standard-content-block {
    padding: 100px 40px;
    text-align: center;
}

.standard-title {
    color: var(--color-gold);
    font-weight: 300;
    letter-spacing: 4px;
    font-size: 32px;
    margin: 0;
}

.standard-text {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 15px;
    font-weight: 300;
}

/* --- FAQ / WIRKUNG ACCORDION --- */
.faq-block-header {
    text-align: left;
    padding: 25px 40px;
    color: var(--bg-dark-brown);
    background: rgba(252, 249, 242, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 0.8px solid rgba(255, 255, 255, 0.8);
    position: sticky;
    top: 60px;
    z-index: 20;
}

.faq-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid rgba(197, 164, 126, 0.12);
    cursor: pointer;
    position: relative;
    transition: background-color 0.8s ease, transform 0.7s var(--rolex-bezier), box-shadow 0.7s var(--rolex-bezier);
    will-change: transform, background-color, box-shadow;
    transform: translateZ(0);
}

.faq-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.faq-item:hover {
    background-color: rgba(197, 164, 126, 0.08);
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-number {
    order: 3;
    padding: 30px 40px 30px 10px;
    font-size: 16px;
    color: var(--color-gold);
    opacity: 0.6;
}

.faq-title {
    order: 1;
    padding: 30px 0 30px 40px;
    color: var(--color-gold);
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.8px;
    white-space: nowrap;
    margin-right: auto;
    transition: transform 0.6s var(--rolex-bezier), color 0.6s ease;
}

.faq-item:hover .faq-title {
    color: var(--color-gold-bright);
    transform: translateX(8px);
}

.faq-toggle-btn {
    order: 2;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 1.5;
    transition: transform 0.8s var(--rolex-bezier), stroke 0.4s ease;
}

.faq-item.open .arrow-icon,
.faq-header:hover .arrow-icon {
    stroke: var(--color-gold-bright);
}

.faq-item.open .arrow-icon {
    transform: rotate(180deg);
}

.faq-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.7s var(--rolex-bezier);
}

.faq-item.open .faq-detail {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 30px;
}

.faq-content-wrapper {
    padding: 0 40px;
}

.faq-intro,
.faq-subtext {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.85;
    margin-bottom: 15px;
}

/* --- FOOTER --- */
.ophyr-footer {
    width: 100%;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: block;
    margin: 0 auto 30px;
    width: 160px;
    opacity: 0.88;
}

.footer-line {
    width: 60%;
    max-width: 600px;
    height: 1px;
    margin: 0 auto 30px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.97) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.footer-claim {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    width: 80%;
    opacity: 0.88;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
}

.footer-links a {
    color: rgba(197, 164, 126, 0.35);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(197, 164, 126, 0.7);
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION / KLAPPTEXT
   ═══════════════════════════════════════════════════════════════ */
.accordion-group {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    background: rgba(30, 24, 18, 0.45);
    border: 0.5px solid rgba(197, 164, 126, 0.08);
    border-radius: 0;
    margin-bottom: -0.5px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease, z-index 0.4s ease;
}

.accordion-item:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.accordion-item:last-child {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    margin-bottom: 0;
}

.accordion-item:hover {
    background: rgba(30, 24, 18, 0.6);
    z-index: 10;
}

.accordion-item[open] {
    background: rgba(30, 24, 18, 0.55);
    border-color: rgba(197, 164, 126, 0.15);
    z-index: 20;
}

.accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    color: rgba(240, 236, 225, 0.8);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    user-select: none;
}

.accordion-item[open] summary {
    font-size: 17.5px;
    font-weight: 500;
    color: rgba(240, 236, 225, 1);
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 200;
    color: rgba(197, 164, 126, 0.5);
    transition: transform 0.4s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-item[open] summary::after {
    transform: rotate(45deg);
    color: rgba(197, 164, 126, 0.8);
}

.accordion-item summary:hover {
    color: rgba(240, 236, 225, 1);
}

.accordion-body {
    padding: 0 28px 28px;
    color: rgba(240, 236, 225, 0.5);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.accordion-item[open] .accordion-body {
    font-size: 16.25px;
    font-weight: 400;
}

.accordion-body h3 {
    color: rgba(197, 164, 126, 0.6);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 28px 0 10px;
}

.accordion-body h3:first-child {
    margin-top: 0;
}

.accordion-body p {
    margin: 0 0 14px;
}

.accordion-body ul {
    padding-left: 20px;
    margin: 8px 0 14px;
}

.accordion-body ul li {
    margin-bottom: 6px;
}

.accordion-body a {
    color: rgba(197, 164, 126, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.accordion-body a:hover {
    color: rgba(197, 164, 126, 1);
}

.accordion-section-title {
    color: rgba(197, 164, 126, 0.5);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 50px auto 16px;
    max-width: 900px;
    padding-left: 4px;
}

.accordion-section-title:first-of-type {
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 9000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(197, 164, 126, 0.5);
    background: rgba(11, 9, 7, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 12px);
    transition: opacity 0.4s ease, transform 0.4s ease,
        background 0.3s ease, border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.scroll-top-btn:hover {
    background: rgba(197, 164, 126, 0.2);
    border-color: rgba(197, 164, 126, 0.8);
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.25);
    transform: translate(-50%, -2px);
}

.scroll-top-btn svg {
    width: 14px;
    height: 14px;
    stroke: rgba(197, 164, 126, 0.9);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease;
}

.scroll-top-btn:hover svg {
    stroke: rgba(197, 164, 126, 1);
}

/* --- RESPONSIVE ARCHITECTURE --- */

@media (max-width: 991px) {

    .standard-container,
    .faq-container,
    .login-container {
        width: 90%;
        margin: 20px auto 0 auto;
    }

    .faq-header {
        flex-direction: row;
        align-items: center;
    }

    .faq-number {
        padding: 24px 0 24px 20px;
        font-size: 24px;
        width: 80px;
    }

    .faq-title {
        padding: 24px 10px 24px 0;
        font-size: 14px;
        white-space: normal;
    }

    .faq-subtitle {
        display: none;
    }

    .faq-toggle-btn {
        padding: 0 20px;
    }

    .faq-content-wrapper {
        padding: 0 20px 20px 20px;
    }

    .faq-intro,
    .faq-subtext {
        font-size: 14px;
    }

    .store-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 50px;
    }

    .store-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {

    /* ── MOBILE TOP-NAV ── */
    .top-nav-wrapper {
        position: fixed;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0;
    }

    .nav-scroll-arrow {
        display: none !important;
    }

    .top-nav {
        position: relative;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-sizing: border-box;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: stretch;
        padding: 15px 20px 0px 20px;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .top-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        font-size: 11px !important;
        padding: 10px 18px !important;
        margin: 0;
        min-width: 0;
        text-align: center;
        border-radius: 6px;
        border: none !important;
        flex: 0 0 auto !important;
        max-width: none !important;
        width: auto !important;
        scroll-snap-align: start;
        font-weight: 400 !important;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
        white-space: nowrap !important;
        color: #ffffff !important;
        background-color: transparent !important;
        backdrop-filter: blur(8px) !important;
        transition:
            background-color 1.2s var(--rolex-bezier),
            color 1.2s var(--rolex-bezier),
            padding 1.2s var(--rolex-bezier),
            box-shadow 1.2s var(--rolex-bezier);
    }

    .nav-item.nav-home img {
        height: 24px;
        margin-top: 1px;
    }

    /* Active / Expanding state on mobile */
    .top-nav:not(.js-slider-ready) .nav-item.active,
    .nav-item.active,
    .nav-item.expanding {
        color: rgba(197, 164, 126, 0.9) !important;
        background-color: transparent !important;
        box-shadow: inset 0 0 0 0.5px rgba(197, 164, 126, 0.4) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        font-weight: 500 !important;
        z-index: 15;
        padding: 10px 30px !important;
        scroll-snap-align: center;
    }

    .nav-item.dissolving {
        color: #ffffff !important;
        background-color: transparent !important;
        box-shadow: inset 0 0 0 0px rgba(197, 164, 126, 0) !important;
        padding: 10px 18px !important;
        min-width: 0 !important;
    }

    .nav-item.active.nav-home {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-item:last-child,
    .nav-item.active:last-child {
        border-bottom: none;
    }

    .ophyr-footer {
        padding: 40px 20px;
    }

    .footer-line {
        width: 80%;
    }

    /* --- ULTRA-SPECIFIC SYMMETRIC BOX MODEL OVERRIDE (Mobile) --- */
    body .standard-container,
    body .faq-container,
    body .login-container,
    body .glass-panel,
    body .standard-content-block,
    body .faq-content-wrapper,
    body .login-left-col,
    body .login-right-col,
    body .modal-content {
        padding: 20px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        height: auto !important;
        min-height: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body .standard-container,
    body .faq-container,
    body .login-container {
        width: 90vw;
        margin: 12vw auto;
        padding: 0 !important;
        flex-direction: column !important;
        transform: translate3d(0, 0, 0);
        will-change: transform;
    }

    body .standard-content-block *:last-child,
    body .faq-content-wrapper *:last-child,
    body .login-left-col *:last-child,
    body .login-right-col *:last-child,
    body .glass-panel *:last-child,
    body .modal-content *:last-child,
    body .faq-item *:last-child {
        margin-bottom: 0 !important;
    }

    body .standard-text,
    body .benefit-text,
    body .faq-subtext {
        margin-bottom: 15px !important;
    }

    body .standard-title,
    body .login-t1 {
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }

    .login-left-col,
    .login-right-col {
        width: 100% !important;
        padding: 20px;
        border: none;
    }

    .login-left-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .faq-block-header {
        top: 60px;
        padding: 5.5vw 8vw;
        font-size: 1.9vw;
        font-weight: 800;
        letter-spacing: 0.8vw;
        text-align: center !important;
        background-color: rgba(252, 249, 242, 0.6) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        transform: translate3d(0, 0, 0);
        will-change: transform, opacity;
        z-index: 30;
    }

    .faq-number {
        padding: 8vw 8vw 8vw 0;
        font-size: 2.6vw;
        opacity: 0.6;
        order: 3;
        flex: 0 0 10vw !important;
        text-align: right;
    }

    .faq-toggle-btn {
        order: 2;
        flex: 0 0 10vw !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .faq-item:hover {
        background-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .faq-title {
        font-size: 4.4vw;
        padding: 8vw 0 8vw 8vw;
        line-height: 1.3;
        order: 1;
        flex: 1 !important;
        text-align: left;
    }

    .faq-content-wrapper {
        padding: 0 8vw 10vw 8vw;
    }

    .faq-intro,
    .faq-subtext {
        font-size: 3.6vw;
        line-height: 1.8;
        opacity: 0.95;
    }

    .arrow-icon {
        width: 4.5vw;
        height: 4.5vw;
    }

    .login-t1,
    .standard-title,
    .store-card-title {
        text-align: center !important;
        font-size: 3.6vw;
        margin-bottom: 8vw;
        padding: 0 5vw !important;
        transform: translate3d(0, 0, 0);
    }

    .login-column {
        padding: 10vw 0;
    }

    .store-container {
        flex-direction: column;
        width: 84vw;
        gap: 8vw;
    }

    .store-card {
        padding: 12vw 8vw;
        min-height: auto;
    }

    .ophyr-footer {
        padding: 20vw 8vw;
    }

    .footer-logo {
        width: 40vw;
        margin-bottom: 8vw;
    }

    .footer-claim {
        width: 60vw;
    }

    .bg-video {
        display: none !important;
    }
}

/* Page Specific Overrides */
.page-was-ist-ophyr .faq-intro {
    font-weight: 400;
}

.page-wirkung .bg-video {
    display: block !important;
}

/* --- LOGIN PAGE STYLES --- */
.login-container {
    width: 90%;
    max-width: 650px;
    margin: 30px auto 30px auto;
    display: flex;
    flex-direction: column;
}

.login-left-col,
.login-right-col {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
}

#login-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.login-left-col {
    border-bottom: 1px solid rgba(197, 164, 126, 0.3);
}

.login-form-group {
    margin-bottom: 30px;
    position: relative;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.eye-icon {
    position: absolute;
    right: 0;
    bottom: 12px;
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.4);
    fill: none;
    cursor: pointer;
    transition: stroke 0.3s;
    z-index: 5;
}

.eye-icon:hover {
    stroke: var(--color-gold);
}

.login-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(197, 164, 126, 0.4);
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    padding: 10px 0;
    outline: none;
    transition: border-color var(--transition-speed);
}

.login-input:focus {
    border-bottom: 1px solid var(--color-gold);
}

/* (Concierge card styles consolidated below in section ~line 2300+) */

.auth-field-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-gold-bright);
    font-size: 14px;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    padding: 0;
    width: 100%;
}

.auth-field-input::placeholder {
    color: rgba(197, 164, 126, 0.3);
}

.flacon-segment {
    width: 75px !important;
    height: 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(197, 164, 126, 0.15) !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    color: var(--color-gold-bright) !important;
    transition: all 0.4s ease !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
    cursor: text !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 99 !important;
    -webkit-user-select: text !important;
    user-select: text !important;
}

.flacon-segment:focus {
    border-color: var(--color-gold-bright) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 15px rgba(197, 164, 126, 0.1);
    outline: none;
}

.flacon-segment::placeholder {
    opacity: 0.2;
}

/* Specific styling for the Verify card - Grows with its content */
#card-area-3 {
    min-height: 550px;
    align-items: flex-start;
    transition: all 1s var(--rolex-bezier);
}

#card-area-3.is-expanded {
    height: auto !important;
    min-height: 850px;
    padding-bottom: 240px;
}

/* --- PRO-MODE COCKPIT (SLIDER & FONT LIST) --- */
.cockpit-wing {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    min-width: 140px;
    /* Space for labels on the right */
}

/* Vertical Slider Styles */
.cockpit-slider-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vertical-slider {
    -webkit-appearance: none;
    width: 6px;
    height: 120px;
    background: rgba(197, 164, 126, 0.1);
    border-radius: 3px;
    outline: none;
    writing-mode: bt-lr;
    /* IE/Legacy support */
    appearance: slider-vertical;
    /* Modern support */
}

/* Custom Thumb for Webkit */
.vertical-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.4);
    transition: all 0.3s ease;
}

.vertical-slider::-webkit-slider-runnable-track {
    background: rgba(197, 164, 126, 0.2);
    border-radius: 3px;
}

/* Font List Layout (Right Wing) - Flush Left (Adjacent to Screen) */
.cockpit-wing-fonts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    min-width: 60px;
}

/* (.font-option-row, .font-preview-name, .unique-config-input consolidated below) */

/* --- PRECISION SCALE (FONT SIZE) --- */
.size-scale-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.size-option-box {
    position: relative;
    cursor: pointer;
}

.size-option-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.size-box-content {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(197, 164, 126, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s var(--rolex-bezier);
}

.size-option-box input:checked+.size-box-content {
    border-color: var(--color-gold-bright);
    color: var(--color-gold-bright);
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.2);
}

.size-option-box:hover .size-box-content {
    border-color: rgba(197, 164, 126, 0.6);
}

/* --- THE COCKPIT (WING LAYOUT) --- */
/* --- THE COCKPIT (VERTICAL STACK REDESIGN) --- */
.cockpit-container {
    display: flex;
    flex-direction: row;
    /* Horizontal on desktop */
    align-items: stretch;
    /* Unify height of controls and card */
    justify-content: center;
    gap: 50px;
    margin: 50px auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .cockpit-container {
        flex-direction: column;
        gap: 30px;
    }
}

.cockpit-controls-column {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Push buttons to bottom, sliders to top */
    padding: 10px 0;
    /* Align perfectly with card visual top/bottom */
}

.cockpit-sliders-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cockpit-slider-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.cockpit-fonts-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 5px;
    align-items: flex-end;
    /* Align font names to the right */
}

.cockpit-buttons-column {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
}

/* Horizontal Slider Container */
.cockpit-sliders-row {
    display: flex;
    justify-content: center;
    gap: 45px;
    width: 100%;
    max-width: 600px;
    /* Matches card width for geometric perfection */
}

.cockpit-slider-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.horizontal-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(197, 164, 126, 0.15);
    border-radius: 2px;
    outline: none;
}

.horizontal-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.4);
    transition: all 0.3s ease;
}

/* Font Selection Row */
.cockpit-fonts-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 600px;
    /* Perfectly aligned with card and sliders */
    padding: 10px 0;
    border-top: 1px solid rgba(197, 164, 126, 0.1);
}

.font-option-row {
    cursor: pointer;
    transition: all 0.4s var(--rolex-bezier);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Force content to the right */
    gap: 10px;
    height: 30px;
}

.font-preview-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s var(--rolex-bezier);
}

.font-option-row input:checked+.font-preview-name {
    color: var(--color-gold-bright);
    text-shadow: 0 0 10px rgba(197, 164, 126, 0.4);
    transform: scale(1.1);
    transform-origin: center center;
    /* Balanced scaling */
    font-weight: 600;
}

/* Adjusted font sizes for horizontal row harmony */
.font-name-serif {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.font-name-sans {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.font-name-script {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
}

.font-name-roman {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
}

.cockpit-label {
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 600;
}

#unique-preview-content {
    position: relative;
    padding: 0 50px;
    /* Safe distance for text from bars */
    width: 100%;
    box-sizing: border-box;
}

.preview-focus-bar {
    position: absolute;
    width: 1px;
    /* Precision line */
    height: 30px;
    background: var(--color-gold-bright);
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.4);
    transition: all 0.5s var(--rolex-bezier);
    opacity: 0.92;
    z-index: 5;
    animation: focus-shimmer 2s infinite ease-in-out;
}

@keyframes focus-shimmer {

    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(197, 164, 126, 0.3);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(197, 164, 126, 0.8);
    }
}

#focus-indicator-bar-left {
    left: 15px;
    /* Exact 15px from inner edge */
}

#focus-indicator-bar-right {
    right: 15px;
    /* Exact 15px from inner edge */
}

/* --- SUBTLE LABEL GLOW AT THE TOP --- */
.line-label-active {
    color: var(--color-gold-bright) !important;
    text-shadow: 0 0 5px rgba(197, 164, 126, 0.3);
    transition: all 0.4s ease;
}

/* --- THE BRASS PLATE (PREMIUM UPGRADE) --- */
.brass-plate {
    background: #c5a47e !important;
    /* Base Fallback */
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%),
        url('bilder/brushed_brass_gold.png') center/cover no-repeat !important;
    border: 1px solid rgba(197, 164, 126, 0.9) !important;
    box-shadow:
        inset 0 0 50px rgba(0, 0, 0, 0.2),
        0 15px 45px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(197, 164, 126, 0.2) !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    animation: brass-subtle-shimmer 12s infinite ease-in-out;
}

@keyframes brass-subtle-shimmer {

    0%,
    100% {
        filter: brightness(1) contrast(1);
    }

    50% {
        filter: brightness(1.04) contrast(1.02);
    }
}

.brass-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.brass-engraving {
    color: rgba(45, 25, 10, 0.92) !important;
    mix-blend-mode: multiply !important;
    text-shadow: 0 0.5px 0px rgba(255, 255, 255, 0.4) !important;
    position: relative;
    z-index: 3;
}


.unique-config-input:focus {
    border-color: rgba(197, 164, 126, 0.4) !important;
    background: rgba(255, 255, 255, 0.05);
}

.preview-line {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.3s var(--rolex-bezier);
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 600;
    /* Increased weight for better 'engraving' presence */
}

.unique-config-input {
    text-align: center;
    caret-color: #ffffff !important;
    letter-spacing: 0.1em;
}

.char-counter {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    min-width: 45px;
    text-align: left;
    letter-spacing: 1px;
    font-weight: 300;
}

/* --- CUSTOM PASSWORD MASKING (Anti-Browser-Tooltip) --- */
.masked-password {
    -webkit-text-security: disc !important;
    text-security: disc !important;
}

.unmasked-password {
    -webkit-text-security: none !important;
    text-security: none !important;
}

.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
}

.login-input::placeholder {
    color: rgba(197, 164, 126, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    font-size: 11px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid rgba(197, 164, 126, 0.4);
    cursor: pointer;
    position: relative;
    border-radius: 1px;
    flex-shrink: 0;
    margin-top: 0;
    transition: all 0.3s;
}

.checkbox-group input[type="checkbox"]:checked,
.checkbox-group input[type="radio"]:checked {
    border-color: var(--color-gold);
}

.checkbox-group input[type="checkbox"]:checked::after,
.checkbox-group input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 4.5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--color-gold);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.checkbox-text,
.forgot-password-link {
    max-width: none;
}

.forgot-password-link {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: none;
    padding-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.3s;
    line-height: 1.4;
    text-align: right;
}

.forgot-password-link:hover {
    color: var(--color-gold);
}

.auth-btn {
    width: 100%;
    background-color: rgba(11, 9, 7, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-primary);
    border: 1px solid rgba(197, 164, 126, 0.4);
    padding: 18px;
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.5s var(--rolex-bezier);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-btn:hover {
    background-color: rgba(197, 164, 126, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold-bright);
}

.mandatory-text {
    margin-top: 15px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.gold-star {
    color: var(--color-gold);
}

.mandatory-star {
    margin-left: -2px;
    margin-right: 2px;
    position: relative;
    top: 1px;
}

.login-t1 {
    display: block !important;
    width: 100% !important;
    margin: 0 auto 60px auto !important;
    padding: 18px !important;
    border: 1px solid rgba(197, 164, 126, 0.4) !important;
    border-radius: 40px !important;
    background: transparent !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 2.8px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: var(--text-primary) !important;
    line-height: normal !important;
    box-sizing: border-box !important;
}

/* --- UNIFIED BENEFIT LIST --- */
.login-benefit-panel {
    width: 100%;
    margin-bottom: 50px;
}

.benefit-icon {
    width: 25px;
    height: 25px;
    stroke: #c5a47e !important;
    stroke-width: 1.8 !important;
    fill: none;
    flex-shrink: 0;
    margin-top: 0;
}

.benefit-icon * {
    stroke: #c5a47e !important;
    stroke-width: 1.8 !important;
}

/* --- NEW CLEAN BENEFITS DESIGN --- */
.benefits-heading {
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 2;
    color: var(--text-primary);
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0 35px 0;
    font-weight: 500;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    cursor: pointer;
}

.benefit-text-block {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 25px;
}

.benefit-title {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.benefit-arrow {
    width: 14px;
    height: 14px;
    stroke: rgba(197, 164, 126, 0.6);
    stroke-width: 1.5;
    fill: none;
    transition: transform 0.4s var(--rolex-bezier);
}

/* (.booking-label consolidated in Concierge section below) */

.benefit-item.open .benefit-arrow {
    transform: rotate(180deg);
}

.benefit-dropdown {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s var(--rolex-bezier), opacity 0.5s ease, margin-top 0.4s ease;
}

.benefit-item.open .benefit-dropdown {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.benefit-description {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* --- EXPANDABLE REGISTRATION FORM --- */
.expandable-form {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1.2s var(--rolex-bezier), opacity 1s ease;
    width: 100%;
}

.expandable-form.open {
    max-height: 1500px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 40px;
    overflow: visible !important;
    /* Forces the dropdown list to be visible outside the form */
}

.reg-dropdown-label {
    color: var(--text-primary);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.dropdown-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
    /* Predefined height for stable click area */
    cursor: pointer;
}

.reg-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    color: transparent !important;
}

.reg-dropdown:focus {
    color: transparent !important;
}

.reg-dropdown option {
    color: #000;
}

/* Ophyr Premium JS Dropdown */
.custom-select {
    position: absolute;
    top: 5px;
    /* Aligned better with the line */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.custom-select-trigger {
    width: 100%;
    height: 100%;
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid rgba(197, 164, 126, 0.4);
    transition: border-color 0.3s var(--rolex-bezier);
}

.custom-select.open .custom-select-trigger {
    border-bottom-color: var(--color-gold);
}

.custom-select-trigger:not(.has-value) {
    color: rgba(197, 164, 126, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    pointer-events: none;
    background-color: rgba(11, 9, 7, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid var(--color-gold);
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding-bottom: 0;

    /* Elegant Animation State Closed */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height 0.6s var(--rolex-bezier), opacity 0.5s ease, transform 0.5s var(--rolex-bezier), visibility 0.6s;
}

.custom-select.open .custom-select-options {
    max-height: 280px;
    /* Reduced back for better mobile/laptop fit */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-option {
    padding: 14px 15px;
    color: #b5aca3;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border-bottom: 1px solid rgba(197, 164, 126, 0.4);
}

.custom-option:last-child {
    border-bottom: none;
    margin-bottom: 50px !important;
    /* Guaranteed scrollable space below OTHERS */
}

.custom-option:hover {
    background: rgba(197, 164, 126, 0.1);
    color: var(--color-gold);
}

.custom-select-options::-webkit-scrollbar {
    width: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 126, 0.3);
    border-radius: 3px;
}

.dropdown-arrow {
    position: absolute;
    right: 0;
    bottom: 8px;
    /* Corrected to sit on the selection line */
    width: 14px;
    height: 14px;
    stroke: var(--color-gold-bright) !important;
    stroke-width: 2px !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    pointer-events: none;
    z-index: 11;
    transition: transform 0.4s var(--rolex-bezier), stroke 0.3s ease;
}

.dropdown-wrapper.open .dropdown-arrow {
    transform: rotate(180deg);
}

.full-width-text {
    max-width: 100% !important;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.6;
}

/* --- FORM VALIDATION BRILLIANCE (CLEAN) --- */
/* Removed persistent touched/invalid lines to maintain subtle design on blur */


input[type="date"] {
    color-scheme: dark;
    cursor: pointer;
}

input[type="date"]:invalid::-webkit-datetime-edit {
    color: rgba(197, 164, 126, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

input[type="date"]:invalid {
    color: rgba(197, 164, 126, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(72%) sepia(17%) saturate(1001%) hue-rotate(348deg) brightness(95%) contrast(92%);
    cursor: pointer;
    opacity: 0.9;
    transition: transform 0.3s var(--rolex-bezier);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* --- FORGOT PASSWORD MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--rolex-bezier), visibility 0.5s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: rgba(11, 9, 7, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 0.5px solid rgba(197, 164, 126, 0.25);
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.5s var(--rolex-bezier);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(197, 164, 126, 0.5);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    padding: 10px;
}

.modal-close:hover {
    color: var(--color-gold);
}

.modal-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 25px;
    text-align: center;
}

.modal-text {
    font-size: 13px;
    color: #b5aca3;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.5px;
}

.store-notice {
    text-align: center;
    color: var(--color-gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 30px;
}

/* --- STORE CARDS --- */
.store-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px auto 30px auto;
    width: 90%;
    max-width: 750px;
}

.store-card {
    flex: 1;
    background-color: rgba(11, 9, 7, 0.45);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.8s var(--rolex-bezier);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Light-Sweep (Shine) Effect */
.store-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.store-card:hover::after {
    left: 150%;
    transition: left 1.5s var(--rolex-bezier);
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(197, 164, 126, 0.2), transparent 70%);
    opacity: 0.4;
    transition: opacity 0.8s var(--rolex-bezier);
    z-index: 0;
    pointer-events: none;
}

.store-card:hover {
    border-color: rgba(197, 164, 126, 0.6);
    transform: translateY(-7px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 40px rgba(197, 164, 126, 0.1);
}

.store-card:hover::before {
    opacity: 0.8;
}

.store-card * {
    position: relative;
    z-index: 1;
}

.store-card-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(197, 164, 126, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background: radial-gradient(circle at center, rgba(197, 164, 126, 0.05), transparent 80%);
    transition: all 0.8s var(--rolex-bezier);
}

.store-card:hover .store-card-icon {
    border-color: var(--color-gold);
    background: radial-gradient(circle at center, rgba(197, 164, 126, 0.15), transparent 70%);
    box-shadow: 0 0 30px rgba(197, 164, 126, 0.2);
    transform: scale(1.05);
}

/* (:root variables consolidated at top of file) */

.store-card-icon svg {
    width: 13px;
    height: 13px;
    stroke: rgba(197, 164, 126, 0.4);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.6s var(--rolex-bezier);
}

.store-card:hover .store-card-icon svg {
    stroke: var(--color-gold);
}

.store-card-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 5px;
    /* Increased for premium feel */
    text-transform: uppercase;
    margin-bottom: 30px;
    transition: color 0.6s ease;
}

.store-card:hover .store-card-title {
    color: var(--color-gold-bright);
}

.store-card-text {
    color: #b5aca3;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 300;
    max-width: 280px;
}

/* --- IDLE FADE EFFECT --- */
.login-t1,
.faq-block-header,
.standard-title,
.store-card-title,
.glass-panel,
.store-card,
.faq-item {
    transition: all 0.6s var(--rolex-bezier), opacity 0.6s ease;
}

body.idle-mode .login-t1,
body.idle-mode .faq-block-header,
body.idle-mode .standard-title,
body.idle-mode .store-card-title {
    opacity: 0.1 !important;
    transition: opacity 3.5s ease-in-out !important;
}

#registration-success-container .login-t1 {
    background-color: rgba(11, 9, 7, 0.5) !important;
}

body.idle-mode #registration-success-container .login-t1 {
    opacity: 1 !important;
    transition: none !important;
}

body.idle-mode .glass-panel,
body.idle-mode .store-card {
    background-color: rgba(11, 9, 7, 0.1) !important;
    border-color: rgba(197, 164, 126, 0.05) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    transition: background-color 3.5s ease, border-color 3.5s ease, box-shadow 3.5s ease !important;
}

/* --- UTILITIES --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- CONCIERGE CARD --- */
.page-title-h1 {
    transform: translateY(0);
    animation: fadeInHeader 1.2s var(--rolex-bezier);
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concierge-card {
    display: flex;
    background-color: rgba(6, 4, 3, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 164, 126, 0.4);
    border-radius: 20px;
    padding: 60px 40px;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto 100px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.8s var(--rolex-bezier);
    position: relative;
    overflow: visible;
}

.concierge-card.is-expanded {
    max-width: 1200px;
    padding: 80px 50px;
    background-color: rgba(6, 4, 3, 0.6);
}

.concierge-left {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* Label stays at top */
    position: relative;
    min-height: 200px;
}

.concierge-label {
    color: var(--color-gold);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-top: 0;
    opacity: 0.8;
    margin-bottom: 80px;
    /* Added safety margin for scrolling distance */
}

.concierge-back-btn {
    position: sticky;
    top: 83vh;
    /* Fine-tuned with an additional 20px equivalent lower offset */
    left: 0;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.6s var(--rolex-bezier);
    z-index: 20;
    padding: 10px 0;
    text-decoration: none;
    font-family: inherit;
    font-weight: 500;
    align-self: flex-start;
}

.back-arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s var(--rolex-bezier);
    stroke: currentColor;
}

.concierge-back-btn:hover {
    color: var(--color-gold-bright);
    filter: drop-shadow(0 0 8px rgba(197, 164, 126, 0.3));
}

.concierge-back-btn:hover .back-arrow-icon {
    transform: translateX(-8px);
}

.concierge-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    min-width: 0;
}

.concierge-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.concierge-text {
    color: #b5aca3;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    margin: 0 0 45px 0;
}

.concierge-btn {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(197, 164, 126, 0.4);
    color: var(--color-gold);
    padding: 16px 32px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s var(--rolex-bezier);
    font-family: inherit;
    font-weight: 500;
}

.concierge-btn:hover {
    background-color: rgba(197, 164, 126, 0.08);
    border-color: var(--color-gold);
    color: var(--color-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- CONCIERGE BOOKING FORM --- */
#booking-form-container {
    border-top: 1px solid rgba(197, 164, 126, 0.4);
    margin-top: 30px !important;
    padding-top: 10px;
}

.booking-section {
    margin-bottom: 35px;
}

.booking-label {
    color: rgba(197, 164, 126, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.booking-options-row {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping for buttons */
    gap: 15px;
}

.booking-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.scrollable-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible !important;
    /* Allow the borders/shadows to show top/bottom */
    padding: 25px 5px 35px 5px;
    /* 5px horizontal to prevent left border clipping while maximizing space */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(255, 255, 255, 0.05);
}

/* Edler Custom Scrollbar für Desktop (Chrome, Edge, Safari) */
.scrollable-row::-webkit-scrollbar {
    height: 20px;
    /* Sehr massiv, wie gewünscht */
    background-color: transparent;
}

.scrollable-row::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    margin: 0 5px;
}

.scrollable-row::-webkit-scrollbar-thumb {
    background-color: rgba(197, 164, 126, 0.6);
    border-radius: 20px;
    border: none !important;
    /* Forces the thumb to occupy the full track height */
    box-shadow: inset 0 0 0 20px rgba(197, 164, 126, 0.6);
    /* Trick to fill the track */
}

.scrollable-row::-webkit-scrollbar-thumb:hover {
    background-color: rgba(197, 164, 126, 0.9);
    box-shadow: inset 0 0 0 20px rgba(197, 164, 126, 0.9);
}

.scrollable-row::-webkit-scrollbar-corner {
    display: none;
}

.scrollable-row::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.booking-option-box {
    cursor: pointer;
    flex-shrink: 0;
}

.booking-option-box input {
    display: none;
}

.booking-box-content {
    border: 1px solid rgba(197, 164, 126, 0.4);
    border-radius: 6px;
    background: transparent;
    color: #b5aca3;
    transition: all 0.4s var(--rolex-bezier);
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-box-content:hover {
    border-color: rgba(197, 164, 126, 0.4);
    background: rgba(197, 164, 126, 0.08);
    color: #ffffff;
}

.booking-option-box input:checked+.booking-box-content {
    border-color: var(--color-gold-bright);
    color: var(--color-gold-bright);
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.45), rgba(197, 164, 126, 0.15));
    box-shadow: inset 0 0 25px rgba(197, 164, 126, 0.25), 0 0 35px rgba(197, 164, 126, 0.35);
    transform: scale(1.02);
    position: relative;
    z-index: 10;
    /* Ensures the border and shadow stay above other elements during transition */
}

.day-box {
    flex-direction: column;
    padding: 15px;
    min-width: 65px;
    height: 80px;
}

/* Today Tile Styling (Sticky & Blurred) */
.heute-box-sticky {
    position: sticky;
    left: 0;
    z-index: 5;
    background: inherit;
    padding-right: 15px;
    /* Spacing from next tile */
}

.heute-content {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(8px) grayscale(0.5);
    -webkit-backdrop-filter: blur(8px) grayscale(0.5);
    border-color: rgba(197, 164, 126, 0.2) !important;
    opacity: 0.6;
    cursor: default !important;
    position: relative;
    overflow: hidden;
}

.heute-status {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 7px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
}

.box-month {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    height: 12px;
    display: block;
    opacity: 0.8;
}

.box-day-name {
    font-size: 11px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.box-day-num {
    font-size: 15px;
    font-weight: 500;
}

.basic-box {
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    min-width: 80px;
    width: 100%;
}

.icon-box {
    flex-direction: row;
    padding: 14px 15px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    gap: 8px;
    width: 100%;
}

.book-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .page-wirkung .bg-video {
        display: block !important;
    }

    .concierge-card {
        flex-direction: column;
        padding: 40px 30px;
        margin: 50px auto;
        width: 84vw;
    }

    .concierge-left {
        flex: auto;
        margin-bottom: 25px;
    }

    .concierge-label {
        font-size: 26px;
        margin-top: 0;
    }

    .concierge-right {
        padding-left: 0;
    }

    .concierge-title {
        font-size: 20px;
        margin-bottom: 25px;
        text-align: left !important;
    }

    .concierge-text {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .concierge-btn {
        width: 100%;
        text-align: center;
        padding: 18px;
    }
}


/* --- PRODUCT DETAIL MODAL --- */

.product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.product-modal-container {
    background: rgba(30, 24, 18, 0.78);
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    border: 0.5px solid rgba(197, 164, 126, 0.18);
    border-radius: 24px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-modal-container::-webkit-scrollbar {
    width: 3px;
}

.product-modal-container::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 126, 0.3);
    border-radius: 3px;
}

.product-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 0.5px solid rgba(197, 164, 126, 0.15);
    margin-bottom: 36px;
}

.product-modal-name {
    color: rgba(197, 164, 126, 0.7);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.product-modal-price {
    color: rgba(240, 236, 225, 0.9);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(240, 236, 225, 0.3);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-modal-close:hover {
    color: rgba(197, 164, 126, 0.8);
    transform: scale(1.1);
}

.product-modal-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-modal-image-col {
    flex: 1;
    min-width: 0;
}

.product-detail-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.product-modal-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.product-specs-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 0.5px solid rgba(197, 164, 126, 0.2);
    padding-left: 16px;
}

.product-specs-block p {
    color: rgba(240, 236, 225, 0.55);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

.product-reservieren-btn {
    margin-top: 20px;
    padding: 18px 40px !important;
}

@media (max-width: 768px) {
    .product-modal-container {
        padding: 32px 24px;
        max-height: 90vh;
    }

    .product-modal-body {
        flex-direction: column;
        gap: 24px;
    }

    .product-modal-image-col {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CART ICON (NAV)
   ═══════════════════════════════════════════════════════════════ */
.cart-icon-btn {
    position: fixed;
    top: 130px;
    right: 30px;
    z-index: 9999;
    background: rgba(11, 9, 7, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 0.5px solid rgba(197, 164, 126, 0.25);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-gold, #c5a47e);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.35, 1);
    pointer-events: auto;
}

.cart-icon-btn:hover {
    background: rgba(197, 164, 126, 0.12);
    border-color: rgba(197, 164, 126, 0.5);
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(197, 164, 126, 0.15);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #c5a47e, #a47d4e);
    color: #0a0806;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 8px rgba(197, 164, 126, 0.4);
    animation: badgePop 0.3s cubic-bezier(0.25, 1, 0.35, 1);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ═══════════════════════════════════════════════════════════════
   CART DRAWER (Slide-in from right)
   ═══════════════════════════════════════════════════════════════ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 2500;
    transition: opacity 0.6s ease;
}

.cart-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -540px;
    width: 520px;
    max-width: 90vw;
    height: 100vh;
    background: rgba(14, 11, 8, 0.92);
    backdrop-filter: blur(40px) saturate(130%);
    -webkit-backdrop-filter: blur(40px) saturate(130%);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    border-left: 0.5px solid rgba(197, 164, 126, 0.15);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.cart-drawer.is-open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 0.5px solid rgba(197, 164, 126, 0.12);
}

.cart-drawer-title {
    color: var(--color-gold, #c5a47e);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: none;
    color: var(--color-gold, #c5a47e);
    font-size: 28px;
    font-weight: 200;
    cursor: pointer;
    transition: transform 0.4s ease;
    line-height: 1;
}

.cart-drawer-close:hover {
    transform: rotate(90deg);
}

/* Cart Empty */
.cart-empty-msg {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Cart Items */
.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 164, 126, 0.2) transparent;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 0.5px solid rgba(197, 164, 126, 0.15);
    animation: cartItemSlideIn 0.4s cubic-bezier(0.25, 1, 0.35, 1) forwards;
}

@keyframes cartItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 80px;
    height: 100px;
    border-radius: 2px;
    overflow: hidden;
    background: transparent;
    flex-shrink: 0;
    border: 0.5px solid rgba(197, 164, 126, 0.1);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.cart-item-name {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-item-desc {
    color: rgba(197, 164, 126, 0.75);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cart-item-price {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.cart-qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 0;
    border: 0.5px solid rgba(197, 164, 126, 0.3);
    background: transparent;
    color: var(--color-gold, #c5a47e);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cart-qty-btn:hover {
    background: rgba(197, 164, 126, 0.1);
    border-color: rgba(197, 164, 126, 0.8);
    color: #fff;
}

.cart-qty-value {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    width: 24px;
    text-align: center;
}

.cart-remove-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(197, 164, 126, 0.4);
    cursor: pointer;
    padding: 4px;
    transition: color 0.4s ease;
}

.cart-remove-btn:hover {
    color: #fff;
}

/* Cart Footer */
.cart-footer {
    padding: 30px;
    border-top: 0.5px solid rgba(197, 164, 126, 0.15);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-total-label {
    color: rgba(197, 164, 126, 0.5);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cart-total-amount {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.cart-shipping-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-align: right;
}

.cart-checkout-btn {
    width: 100%;
    padding: 18px;
    background-color: #1A1918;
    border: 1px solid rgba(197, 164, 126, 0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.35, 1), background-color 0.4s ease, border-color 0.4s ease;
}

.cart-checkout-btn:hover {
    background-color: rgba(197, 164, 126, 0.08);
    border-color: rgba(197, 164, 126, 0.6);
    color: var(--color-gold, #c5a47e);
    box-shadow: none;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   CART TOAST
   ═══════════════════════════════════════════════════════════════ */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: rgba(14, 11, 8, 0.95);
    border: 0.5px solid rgba(197, 164, 126, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 14px 24px;
    color: #f0ece1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

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

/* ═══════════════════════════════════════════════════════════════
   ADD-TO-CART BUTTON (in Product Modal)
   ═══════════════════════════════════════════════════════════════ */
.product-add-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.12), rgba(197, 164, 126, 0.04));
    border: 1px solid rgba(197, 164, 126, 0.4);
    color: var(--color-gold, #c5a47e);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.35, 1);
    width: 100%;
}

.product-add-cart-btn:hover {
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.22), rgba(197, 164, 126, 0.08));
    border-color: rgba(197, 164, 126, 0.7);
    box-shadow: 0 6px 24px rgba(197, 164, 126, 0.15);
    transform: translateY(-2px);
}

.product-add-cart-btn svg {
    stroke: var(--color-gold, #c5a47e);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   STORE CARD PRICE
   ═══════════════════════════════════════════════════════════════ */
.store-card-price {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 8px;
    transition: color 0.4s ease;
}

.store-card:hover .store-card-price {
    color: var(--color-gold, #c5a47e);
}

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
body.page-checkout {
    background: #0a0806;
    background-image: url('bilder/ophyr-hero-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.checkout-main {
    padding: 120px 40px 80px;
    min-height: 100vh;
}

.checkout-container {
    max-width: 650px;
    margin: 0 auto;
    align-items: start;
}

.checkout-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.checkout-section-label {
    color: var(--color-gold, #c5a47e);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.checkout-section-header .checkout-section-label {
    margin-bottom: 0;
}

.checkout-login-icon {
    color: rgba(197, 164, 126, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-login-icon:hover {
    color: var(--color-gold, #c5a47e);
    transform: scale(1.05);
}

/* Billing Form */
.checkout-billing {
    background: rgba(11, 9, 7, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 0.5px solid rgba(197, 164, 126, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: none;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-form-row {
    display: flex;
    gap: 16px;
}

.checkout-form-row-2col>.checkout-field {
    flex: 1;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-field label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.checkout-field input,
.checkout-field select {
    background: rgba(255, 255, 255, 0.04);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    padding: 14px 16px;
    color: #f0ece1;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    outline: none;
}

.checkout-field input:focus,
.checkout-field select:focus {
    border-color: rgba(197, 164, 126, 0.5);
    background: rgba(197, 164, 126, 0.02);
    box-shadow: none;
}

.checkout-field input.is-invalid {
    border-color: rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.checkout-field select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.checkout-divider {
    height: 0.5px;
    background: linear-gradient(90deg, transparent, rgba(197, 164, 126, 0.2), transparent);
    margin: 8px 0;
}

/* Stripe Payment Info */
.stripe-payment-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.stripe-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Pay Button */
.checkout-pay-btn {
    width: 100%;
    padding: 20px;
    background-color: #1A1918;
    border: 1px solid rgba(197, 164, 126, 0.2);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.5s ease;
}

.checkout-pay-btn:hover:not(:disabled) {
    background-color: rgba(197, 164, 126, 0.08);
    border-color: rgba(197, 164, 126, 0.6);
    color: var(--color-gold, #c5a47e);
    box-shadow: none;
    transform: translateY(0);
}

.checkout-pay-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#checkout-pay-amount {
    font-weight: 400;
    opacity: 0.7;
}

.checkout-back-link {
    text-align: center;
    margin-top: 8px;
}

.checkout-back-link a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.checkout-back-link a:hover {
    color: var(--color-gold, #c5a47e);
}

/* Checkout Message */
.checkout-message {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    animation: fadeInMsg 0.3s ease;
}

.checkout-message-info {
    background: rgba(197, 164, 126, 0.08);
    border: 0.5px solid rgba(197, 164, 126, 0.3);
    color: var(--color-gold, #c5a47e);
}

.checkout-message-error {
    background: rgba(220, 53, 69, 0.08);
    border: 0.5px solid rgba(220, 53, 69, 0.3);
    color: #f0ece1;
}

@keyframes fadeInMsg {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Order Summary Styles - now stripped of background since it's inline */

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    flex-shrink: 0;
    border: 0.5px solid rgba(197, 164, 126, 0.1);
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.checkout-item-name {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.checkout-item-desc {
    color: rgba(197, 164, 126, 0.75);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.checkout-item-qty {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
}

.checkout-item-price {
    color: var(--color-gold, #c5a47e);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.checkout-summary-divider {
    height: 0.5px;
    background: linear-gradient(90deg, transparent, rgba(197, 164, 126, 0.15), transparent);
    margin: 12px 0;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.checkout-summary-row-mwst {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.checkout-shipping-value {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.checkout-summary-total {
    color: #f0ece1;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 0 0;
}

.checkout-empty {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 40px 0;
}

.checkout-empty a {
    color: var(--color-gold, #c5a47e);
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – Cart & Checkout
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cart-icon-btn {
        top: 100px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .cart-drawer {
        max-width: 100vw;
        width: 100vw;
        right: -100vw;
    }

    .cart-toast {
        right: 15px;
        bottom: 20px;
        left: 15px;
        text-align: center;
    }

    .checkout-main {
        padding: 100px 16px 60px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-billing,
    .checkout-summary {
        padding: 24px;
        border-radius: 16px;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-form-row {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════════
   WIO SECTIONS (was-ist-ophyr, wirkung, technologie)
   Consolidated from inline <style> blocks.
   ═══════════════════════════════════════════════════════════════ */

/* ── Group Container ── */
.wio-group {
    position: relative;
}

/* ── Sentinel for IntersectionObserver ── */
.wio-hero-sentinel {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

/* ── Hero ── */
.wio-hero {
    text-align: center;
    padding: 140px 40px 60px;
    animation: heroFadeIn 1.2s cubic-bezier(0.25, 1, 0.35, 1) both;
}

.wio-hero-label {
    animation: heroFadeIn 0.8s cubic-bezier(0.25, 1, 0.35, 1) 0.1s both;
}

.wio-hero-title {
    animation: heroFadeIn 1s cubic-bezier(0.25, 1, 0.35, 1) 0.25s both;
}

.wio-hero-subtitle {
    animation: heroFadeIn 1s cubic-bezier(0.25, 1, 0.35, 1) 0.45s both;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Divider ── */
.wio-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.wio-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 164, 126, 0.2), transparent);
}

.wio-hero-label {
    color: var(--color-gold, #c5a47e);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wio-hero-title {
    font-family: 'Myriad Pro Condensed', 'Myriad Pro', sans-serif;
    font-stretch: condensed;
    color: #f0ece1;
    font-size: clamp(47px, 6.7vw, 80px);
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.3;
    max-width: 1000px;
    white-space: nowrap;
    margin: 0 auto;
}

.wio-hero-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 24px;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Section (connected image+text tiles) ── */
.wio-section {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 70vh;
    gap: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.35, 1),
        transform 1s cubic-bezier(0.25, 1, 0.35, 1);
}

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

/* ── Colored Section Bars (Balken) ── */
.wio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.35, 1) 0.2s, width 1.5s cubic-bezier(0.25, 1, 0.35, 1) 0.2s;
}

.wio-section.is-visible::before {
    opacity: 1;
    width: 100vw;
}

/* Reinstwasser (Ocean Blue Field) */
#wio-wasser::before {
    background: linear-gradient(90deg, transparent 0%, rgba(60, 130, 240, 0.8) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(60, 130, 240, 0.5);
}

/* 24 Karat Gold (Warm Gold Field) */
#wio-gold::before {
    background: linear-gradient(90deg, transparent 0%, var(--color-gold-bright) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(197, 164, 126, 0.5);
}

/* Silizium (Silver/Platinum Field) */
#wio-silizium::before {
    background: linear-gradient(90deg, transparent 0%, rgba(200, 210, 230, 0.8) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(200, 210, 230, 0.5);
}

.wio-section.wio-reverse {
    direction: rtl;
}

.wio-section.wio-reverse>* {
    direction: ltr;
}

/* Image Column */
.wio-image-col {
    position: relative;
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.wio-image-col img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.wio-section:hover .wio-image-col img {
    transform: scale(1.03);
}

.wio-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Text Column */
.wio-text-col {
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 16px 16px 0;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    margin-left: -1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: relative;
}

/* Reversed sections */
.wio-section.wio-reverse .wio-image-col {
    border-radius: 0 16px 16px 0;
}

.wio-section.wio-reverse .wio-text-col {
    border-radius: 16px 0 0 16px;
    border-left: 0.5px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    margin-left: 0;
    margin-right: -1px;
    text-align: center;
    align-items: center;
}

.wio-section.wio-reverse .wio-specs li {
    flex-direction: row-reverse;
}

/* Typography */
.wio-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.wio-title {
    font-family: 'Myriad Pro Condensed', 'Myriad Pro', sans-serif;
    font-stretch: condensed;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.25;
    margin: 0;
}

/* ── Detail Accordion Toggle ── */
.wio-detail-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0 0;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.wio-detail-toggle:hover {
    opacity: 0.85;
}

.wio-detail-toggle::before,
.wio-detail-toggle::after {
    display: none;
}

.wio-detail-toggle svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: rgba(197, 164, 126, 0.6);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.wio-text-col.is-open .wio-detail-toggle svg {
    transform: rotate(180deg);
}

.wio-text-col.is-open .wio-detail-toggle {
    opacity: 0.2;
}

/* ── Collapsible Detail Content ── */
.wio-detail-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 2.2s cubic-bezier(0.15, 1, 0.05, 1),
        opacity 1.8s ease 0.2s;
    will-change: max-height, opacity;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wio-text-col.is-open .wio-detail-content {
    max-height: 1200px;
    opacity: 1;
}

.wio-detail-inner {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wio-section.wio-reverse .wio-detail-toggle {
    justify-content: center;
}

/* Detail specs */
.wio-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wio-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.wio-specs li::before {
    content: '';
    width: 18px;
    height: 0.5px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.wio-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.75;
    margin: 0;
}

/* Accordion wrapper (was-ist-ophyr) */
.wio-accordion-wrapper {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.wio-hero {
    position: sticky;
    top: 0;
    z-index: 50;
    pointer-events: none;
    will-change: padding, background-color, transform, opacity;
    transition: padding 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        backdrop-filter 0.6s ease 0.1s,
        border-color 0.6s ease 0.2s,
        transform 0.8s var(--rolex-bezier),
        opacity 0.8s ease;
}

.wio-hero .wio-hero-label,
.wio-hero .wio-hero-title,
.wio-hero .wio-hero-subtitle {
    will-change: transform, opacity;
}

.wio-hero .wio-hero-label {
    transition: font-size 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
        height 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
        margin 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
        opacity 0.5s ease 0.2s;
}

.wio-hero .wio-hero-title {
    transition: font-size 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        letter-spacing 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        line-height 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.wio-hero .wio-hero-subtitle {
    transition: font-size 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
        height 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
        margin 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
        opacity 0.5s ease 0.25s;
}

.wio-hero.is-compact {
    height: 78px;
    padding: 0 40px !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    background: rgba(20, 18, 14, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 0.5px solid rgba(197, 164, 126, 0.12);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: auto;
}

.wio-hero.is-compact .wio-hero-label {
    font-size: 0;
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease 0.05s,
        font-size 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        height 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
        margin 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.wio-hero.is-compact .wio-hero-title {
    font-size: clamp(20px, 2.6vw, 30px);
    letter-spacing: 0.5px;
    line-height: 1;
    margin: 0;
    max-width: none;
    width: 100%;
    transition: font-size 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
        letter-spacing 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
        line-height 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.wio-hero.is-compact .wio-hero-subtitle {
    font-size: 0;
    margin-top: 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease,
        font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
        height 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
        margin 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

/* ── WIO Responsive ── */
@media (max-width: 768px) {
    .wio-hero-title {
        white-space: normal;
    }

    .wio-hero.is-compact {
        height: 78px;
        padding: 0 20px !important;
    }

    .wio-hero.is-compact .wio-hero-title {
        font-size: 24px;
    }

    .wio-hero {
        padding: 120px 24px 40px;
    }

    .wio-intro-statement {
        padding: 0 24px;
    }

    .wio-section {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 24px;
        min-height: auto;
        margin-bottom: 40px;
        will-change: transform, opacity;
        transform: translateZ(0);
    }

    .wio-section.wio-reverse {
        direction: ltr;
    }

    .wio-image-col,
    .wio-section.wio-reverse .wio-image-col {
        border-radius: 16px 16px 0 0;
    }

    .wio-image-col img {
        min-height: 260px;
    }

    .wio-text-col,
    .wio-section.wio-reverse .wio-text-col {
        padding: 24px 20px;
        border-radius: 0 0 16px 16px;
        border-left: 0.5px solid rgba(255, 255, 255, 0.1);
        border-right: 0.5px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        text-align: center;
        align-items: center;
    }

    .wio-accordion-wrapper {
        padding: 0 16px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE HERO QUOTE
   ═══════════════════════════════════════════════════════════════ */
.home-main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Changed from center to allow pushing down */
    min-height: 100vh;
    padding: 0 20px 80px;
    /* Removed top padding to not offset the 100vh margin calculation */
    position: relative;
    z-index: 10;
}

.home-hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 30vh auto 0;
    /* 100vh top margin pushes it exactly below the initial background image */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.home-quote {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-stretch: normal;
    margin: 0;
    color: rgba(245, 238, 222, 0.92);
    font-size: clamp(15px, 2vw, 26px);
    font-weight: 200;
    font-style: normal;
    line-height: 2.1;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.home-quote-author {
    color: var(--color-gold);
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.home-hero-balken {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold-bright) 50%, transparent 100%);
    box-shadow: 0 0 12px rgba(197, 164, 126, 0.5);
    margin: -10px auto 0;
    opacity: 1;
    /* Animation wird von .flüstern-balken oder anderen Klassen gesteuert */
}

@media (max-width: 768px) {
    .home-quote {
        font-size: clamp(24px, 6vw, 32px);
    }

    .home-quote-author {
        letter-spacing: 4px;
        font-size: 11px;
    }
}

/* --- GLOW EFFECT BEHIND TEXT --- */
.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin-top: -300px;
    margin-left: -300px;
    background: conic-gradient(
        from 45deg at 50% 50%, 
        transparent 0deg, 
        rgba(210, 175, 115, 0.25) 70deg, 
        transparent 140deg, 
        transparent 180deg, 
        rgba(210, 175, 115, 0.25) 250deg, 
        transparent 320deg
    );
    filter: blur(50px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    animation: fadeInGlow 2s ease forwards 6.6s, circularGlow 20s linear infinite 6.6s;
}

@keyframes fadeInGlow {
    to { opacity: 1; }
}

@keyframes circularGlow {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* ═══════════════════════════════════════════════════════════════
   CHECKOUT ITEM MODAL (EXACT STORE TILE MATCH)
   ═══════════════════════════════════════════════════════════════ */
.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.65);
    backdrop-filter: blur(25px) saturate(1.2);
    -webkit-backdrop-filter: blur(25px) saturate(1.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

.checkout-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal-container {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 1000px;
    background-color: #2F2D2B;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.checkout-modal-left {
    flex: 1;
    background: linear-gradient(135deg, #37332E 0%, #2A2723 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.checkout-modal-left img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}

.checkout-modal-right {
    flex: 1.1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2D2B29;
    position: relative;
}

.checkout-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.checkout-modal-close:hover {
    color: rgba(197, 164, 126, 0.8);
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Typography matching the store tile exactly */
.checkout-tile-title {
    font-family: 'Myriad Pro Condensed', 'Myriad Pro', sans-serif;
    font-stretch: condensed;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0;
}

.checkout-tile-subtitle {
    font-size: 15px;
    font-style: italic;
    color: rgba(197, 164, 126, 0.75);
    margin-bottom: 24px;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 1px;
}

.checkout-tile-chevron {
    margin-bottom: 24px;
    opacity: 0.3;
}

.checkout-tile-specs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
}

.checkout-tile-specs p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 300;
    text-align: center;
}

.checkout-tile-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 48px;
    font-weight: 500;
    text-align: left;
    max-width: 85%;
    border-width: 0.5px 0;
    border-style: solid;
    border-color: rgba(197, 164, 126, 0.5);
    padding: 24px 0;
}

.checkout-tile-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.checkout-tile-price-main {
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.checkout-tile-currency {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.checkout-tile-baseprice {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.checkout-tile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 56px;
    background-color: #1A1918;
    border: 1px solid rgba(197, 164, 126, 0.2);
    color: rgba(197, 164, 126, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.5s ease;
}

.checkout-tile-btn:hover {
    background-color: rgba(197, 164, 126, 0.08);
    border-color: rgba(197, 164, 126, 0.6);
    color: var(--color-gold, #c5a47e);
}

@media (max-width: 768px) {
    .checkout-modal-container {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }

    .checkout-modal-left {
        padding: 40px;
        min-height: 250px;
    }

    .checkout-modal-right {
        padding: 40px 20px;
    }

    .checkout-tile-desc {
        max-width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════
   INVESTOR PORTAL MODAL 
   ═══════════════════════════════════════════════════════ */
.investor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.investor-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.investor-modal-content {
    width: 90%;
    max-width: 440px;
    background: rgba(20, 18, 14, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 0.5px solid rgba(197, 164, 126, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.investor-modal-overlay.is-open .investor-modal-content {
    transform: translateY(0);
}

.investor-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(240, 236, 225, 0.4);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.investor-modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.investor-modal-header {
    margin-bottom: 32px;
}

.investor-modal-title {
    color: rgba(197, 164, 126, 0.9);
    font-family: 'Myriad Pro Condensed', 'Myriad Pro', sans-serif;
    font-stretch: condensed;
    font-size: 32px;
    letter-spacing: 2px;
    font-weight: 200;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.investor-modal-text {
    color: rgba(240, 236, 225, 0.5);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.investor-pin-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.investor-pin-segment {
    width: 50px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #f0ece1;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.investor-pin-segment:focus {
    border-color: rgba(197, 164, 126, 0.6);
    background: rgba(197, 164, 126, 0.08);
    box-shadow: 0 0 16px rgba(197, 164, 126, 0.15);
}

.investor-error-msg {
    color: #e57373;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.investor-error-msg.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.investor-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.2) 0%, rgba(197, 164, 126, 0.08) 100%);
    border: 0.5px solid rgba(197, 164, 126, 0.3);
    border-radius: 12px;
    color: rgba(197, 164, 126, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 0;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.investor-submit-btn:hover {
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.35) 0%, rgba(197, 164, 126, 0.15) 100%);
    border-color: rgba(197, 164, 126, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(197, 164, 126, 0.1);
}

@keyframes shakeError {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-6px);
    }

    40%,
    80% {
        transform: translateX(6px);
    }
}

.shake-error {
    animation: shakeError 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .investor-modal-content {
        padding: 40px 24px;
    }

    .investor-pin-segment {
        width: 44px;
        height: 54px;
        font-size: 20px;
    }
}


/* ═══════════════════════════════════════════════════════
   TEMPLE OF ALCHEMY (STARTSEITE)
   ═══════════════════════════════════════════════════════ */
.chiaroscuro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, transparent 0%, rgba(5, 4, 3, 0.8) 70%, #050403 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ensure background video is behind the overlay */
.bg-video {
    z-index: 0;
}

/* Ensure main content is above the overlay */
.temple-main {
    position: relative;
    z-index: 10;
    padding-bottom: 120px;
}

.home-main {
    z-index: 10;
    position: relative;
}

.temple-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10vh 5%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

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

/* ── Colored Section Bars for Acts ── */

/* ═══════════════════════════════════════════════════════
   VORSCHLAG A — "Blanc vers Or" (AKTIV – verstärkt)
   Phase 1 (0–70%): Linie wächst in leuchtendem WEISS auf
   Phase 2 (70–100%): Farbe wechselt zu Gold / Farbe
   ═══════════════════════════════════════════════════════ */
@keyframes lineGrowWhiteToGold_1 {
    0% {
        width: 0;
        opacity: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1.0) 50%, transparent 100%);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 255, 255, 0.4);
    }

    8% {
        opacity: 1;
    }

    70% {
        width: 100vw;
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1.0) 50%, transparent 100%);
        box-shadow: 0 0 30px rgba(255, 255, 255, 1.0), 0 0 70px rgba(255, 255, 255, 0.5);
    }

    100% {
        width: 100vw;
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, rgba(200, 120, 50, 0.9) 50%, transparent 100%);
        box-shadow: 0 0 15px rgba(200, 120, 50, 0.6);
    }
}

@keyframes lineGrowWhiteToGold_2 {
    0% {
        width: 0;
        opacity: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1.0) 50%, transparent 100%);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 255, 255, 0.4);
    }

    8% {
        opacity: 1;
    }

    70% {
        width: 100vw;
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1.0) 50%, transparent 100%);
        box-shadow: 0 0 30px rgba(255, 255, 255, 1.0), 0 0 70px rgba(255, 255, 255, 0.5);
    }

    100% {
        width: 100vw;
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, rgba(100, 180, 255, 0.9) 50%, transparent 100%);
        box-shadow: 0 0 15px rgba(100, 180, 255, 0.6);
    }
}

@keyframes lineGrowWhiteToGold_3 {
    0% {
        width: 0;
        opacity: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1.0) 50%, transparent 100%);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 50px rgba(255, 255, 255, 0.4);
    }

    8% {
        opacity: 1;
    }

    70% {
        width: 100vw;
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 1.0) 50%, transparent 100%);
        box-shadow: 0 0 30px rgba(255, 255, 255, 1.0), 0 0 70px rgba(255, 255, 255, 0.5);
    }

    100% {
        width: 100vw;
        opacity: 1;
        background: linear-gradient(90deg, transparent 0%, var(--color-gold-bright) 50%, transparent 100%);
        box-shadow: 0 0 15px rgba(197, 164, 126, 0.6);
    }
}

.temple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    /* Kein transition mehr – animation übernimmt alles */
}

#act-1.is-visible::before {
    animation: lineGrowWhiteToGold_1 2.8s cubic-bezier(0.25, 1, 0.35, 1) 0.2s both;
}

#act-2.is-visible::before {
    animation: lineGrowWhiteToGold_2 2.8s cubic-bezier(0.25, 1, 0.35, 1) 0.2s both;
}

#act-3.is-visible::before {
    animation: lineGrowWhiteToGold_3 2.8s cubic-bezier(0.25, 1, 0.35, 1) 0.2s both;
}

/* ═══════════════════════════════════════════════════════
   VORSCHLAG B — "Glühen" (auskommentiert – zum Aktivieren:
   die @keyframes unten einkommentieren und die
   animation-Angaben oben ersetzen)

   Konzept: Linie wächst von der Mitte aus. Der wachsende
   Front-Bereich ist kalt-weiß, das Zentrum "erhitzt" sich
   erst am Ende zu Gold – wie ein Metall das glüht.
   ═══════════════════════════════════════════════════════
@keyframes lineGlowB_1 {
    0%   { width: 0;      opacity: 0;
           background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 8px rgba(255,255,255,0.4); }
    30%  { width: 30vw;   opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 12px rgba(255,255,255,0.6); }
    70%  { width: 100vw;  opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(240,200,150,0.9) 50%, transparent 100%);
           box-shadow: 0 0 20px rgba(240,200,150,0.5); }
    100% { width: 100vw;  opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(200,120,50,0.85) 50%, transparent 100%);
           box-shadow: 0 0 15px rgba(200,120,50,0.5); }
}
@keyframes lineGlowB_2 {
    0%   { width: 0;      opacity: 0;
           background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 8px rgba(255,255,255,0.4); }
    30%  { width: 30vw;   opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 12px rgba(255,255,255,0.6); }
    70%  { width: 100vw;  opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(190,215,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 20px rgba(190,215,255,0.5); }
    100% { width: 100vw;  opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(100,180,255,0.85) 50%, transparent 100%);
           box-shadow: 0 0 15px rgba(100,180,255,0.5); }
}
@keyframes lineGlowB_3 {
    0%   { width: 0;      opacity: 0;
           background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 8px rgba(255,255,255,0.4); }
    30%  { width: 30vw;   opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
           box-shadow: 0 0 12px rgba(255,255,255,0.6); }
    70%  { width: 100vw;  opacity: 1;
           background: linear-gradient(90deg, transparent 0%, rgba(240,220,160,0.9) 50%, transparent 100%);
           box-shadow: 0 0 20px rgba(240,220,160,0.5); }
    100% { width: 100vw;  opacity: 1;
           background: linear-gradient(90deg, transparent 0%, var(--color-gold-bright) 50%, transparent 100%);
           box-shadow: 0 0 15px rgba(197,164,126,0.5); }
}
   ═══════════════════════════════════════════════════════ */


.temple-image-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.temple-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 50px 10px rgba(10, 8, 6, 1);
    pointer-events: none;
}

.temple-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 50vh;
}

.temple-content {
    max-width: 800px;
}

.temple-act-title {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}



\n.temple-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 48px;
    color: var(--color-ivory);
    margin: 0 0 30px 0;
    letter-spacing: 2px;
}

.temple-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {


    \n.temple-heading {
        font-size: 32px;
    }

    .temple-text {
        font-size: 14px;
    }
}


/* ═══════════════════════════════════════════════════════
   TEMPLE ACT LABELS (Screenshot-exact)
   ═══════════════════════════════════════════════════════ */
.temple-act-label {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 0.85;
}

/* Override temple-heading to match screenshot exactly */
.temple-heading {
    font-family: 'Playfair Display', serif !important;
    color: var(--color-ivory, #f0ece1) !important;
    font-size: clamp(36px, 5vw, 62px) !important;
    font-weight: 400 !important;
    font-style: italic !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 40px 0 !important;
    line-height: 1.25 !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

/* Override temple-text to match screenshot exactly */
.temple-text {
    font-family: 'Inter', sans-serif !important;
    color: rgba(240, 236, 225, 0.75) !important;
    font-size: clamp(14px, 1.3vw, 17px) !important;
    font-weight: 300 !important;
    letter-spacing: 1.5px !important;
    line-height: 2 !important;
    margin: 0 !important;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7) !important;
}

/* ═══════════════════════════════════════════════════════
   PARACELSUS QUOTE — Ultra-Luxury Geometric Sans-Serif
   Aesthetic: Porsche 911 Brochure / Mercedes EQS Display
   ═══════════════════════════════════════════════════════ */
.home-quote {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    color: rgba(245, 238, 222, 0.92) !important;
    font-size: clamp(15px, 2vw, 26px) !important;
    font-weight: 200 !important;
    font-style: normal !important;
    line-height: 2.1 !important;
    letter-spacing: 0.38em !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    text-shadow: 0 10px 60px rgba(0, 0, 0, 0.7), 0 2px 12px rgba(0, 0, 0, 0.4) !important;
}

.home-quote-author {
    color: rgba(197, 164, 126, 0.65) !important;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: clamp(8px, 0.75vw, 10px) !important;
    font-weight: 300 !important;
    letter-spacing: 0.55em !important;
    text-transform: uppercase !important;
    margin-right: -0.55em !important;
    margin-top: 42px !important;
    margin-bottom: 42px !important;
    text-shadow: none !important;
}

.home-quote-divider {
    width: 1px !important;
    height: 80px !important;
    background: linear-gradient(to bottom, rgba(197, 164, 126, 0), rgba(197, 164, 126, 1), rgba(197, 164, 126, 0)) !important;
    margin: 60px auto 20px !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .temple-act-label {
        font-size: 12px;
        letter-spacing: 5px;
        margin-bottom: 25px;
    }

    .temple-heading {
        font-size: 28px !important;
    }

    .temple-text {
        font-size: 13px !important;
        line-height: 1.8 !important;
        letter-spacing: 1px !important;
    }
}


/* ═══════════════════════════════════════════════════════
   TEMPLE COLORS OVERRIDE: Gold-White-Gold + Elegant Line
   ═══════════════════════════════════════════════════════ */

/* ACT label = GOLD (already gold, reinforced) */
.temple-act-label {
    color: #c5a47e !important;
}

/* Heading = WHITE / IVORY */
.temple-heading {
    color: #f0ece1 !important;
}

/* Body text = GOLD */
.temple-text {
    color: #c5a47e !important;
    opacity: 0.85;
}

/* Elegant horizontal gold line between heading and text */
.temple-heading::after {
    content: '';
    display: block;
    width: 60%;
    max-width: 400px;
    height: 1px;
    margin: 40px auto 0;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 164, 126, 0.6) 50%, transparent 100%);
    box-shadow: 0 0 12px rgba(197, 164, 126, 0.15);
}


/* ═══════════════════════════════════════════════════════
   TEMPLE: Force center alignment on all elements
   ═══════════════════════════════════════════════════════ */
.temple-section {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}

.temple-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
}

.temple-act-label {
    text-align: center !important;
    width: 100%;
}

.temple-heading {
    text-align: center !important;
    width: 100%;
}

.temple-text {
    text-align: center !important;
    width: 100%;
}


/* ═══════════════════════════════════════════════════════
   TEMPLE: Blocksatz (Justified Text Block)
   ═══════════════════════════════════════════════════════ */
.temple-blocksatz {
    font-family: 'Inter', sans-serif;
    color: rgba(240, 236, 225, 0.7);
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.5px;
    text-align: left;
    max-width: 800px;
    margin: 40px auto 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .temple-blocksatz {
        font-size: 13px;
        line-height: 1.8;
        max-width: 90%;
    }
}

.temple-scroll-circle:hover .temple-scroll-arrow,
.temple-scroll-circle:hover .temple-scroll-arrow-up {
    border-color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════
   PREMIUM WIO GLASS DESIGN (HOME TRANSFER)
   ═══════════════════════════════════════════════════════ */
.page-home .wio-text-col {
    background: rgba(10, 8, 5, 0.35);
    /* Dark, luxurious tint */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: none;
    padding: 40px 20px;
}

.page-home .wio-section.wio-reverse .wio-text-col {
    border: none;
    /* Remove left border on reversed */
}

.page-home .wio-label {
    font-size: 11px;
    letter-spacing: 6px;
    color: rgba(197, 164, 126, 0.5);
    /* Gold */
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.page-home .wio-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 300;
    margin-bottom: 6px;
    letter-spacing: 3px;
    color: #fff;
}

.page-home .wio-specs {
    margin-top: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.page-home .wio-specs li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    font-weight: 300;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.page-home .wio-specs li::before {
    display: none;
    /* Remove the bullet line */
}

.page-home .wio-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 24px;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: left;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    border-width: 0.5px 0;
    border-style: solid;
    border-color: rgba(197, 164, 126, 0.5);
    padding: 24px 0;
}

.page-home .wio-full-text-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.35, 1),
        transform 1s cubic-bezier(0.25, 1, 0.35, 1);
}

.page-home .wio-full-text-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-home .wio-text-col-full {
    background: rgba(10, 8, 5, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-home .wio-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.page-home .wio-grid-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-home .wio-grid-tile .wio-description {
    border: none;
    padding: 0;
    margin-top: 16px;
    margin-bottom: 0;
    width: 100%;
    max-width: none;
}

@media (max-width: 991px) {
    .page-home .wio-grid-3 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .page-home .wio-full-text-section {
        padding: 40px 24px;
    }

    .page-home .wio-text-col-full {
        padding: 40px 20px;
    }

    /* Merged Tiles Mobile Adjustment */
    .page-home .wio-section {
        margin-bottom: 0 !important;
    }
}

/* ═══════════════════════════════════════════════════════
   MERGED TILES LOGIC (HOME ONLY)
   ═══════════════════════════════════════════════════════ */
.page-home .wio-section {
    min-height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Desktop Border Radius Logic */
@media (min-width: 992px) {

    /* Top tile */
    .page-home #wio-wasser .wio-image-col {
        border-top-left-radius: 16px !important;
        border-bottom-left-radius: 0 !important;
    }

    .page-home #wio-wasser .wio-text-col {
        border-top-right-radius: 16px !important;
        border-bottom-right-radius: 0 !important;
    }

    /* Middle tile (Reversed) */
    .page-home #wio-gold .wio-image-col,
    .page-home #wio-gold .wio-text-col {
        border-radius: 0 !important;
    }

    /* Bottom tile */
    .page-home #wio-silizium .wio-image-col {
        border-bottom-left-radius: 16px !important;
        border-top-left-radius: 0 !important;
    }

    .page-home #wio-silizium .wio-text-col {
        border-bottom-right-radius: 16px !important;
        border-top-right-radius: 0 !important;
    }
}

/* Mobile Border Radius Logic */
@media (max-width: 991px) {

    /* Top tile */
    .page-home #wio-wasser .wio-image-col {
        border-radius: 16px 16px 0 0 !important;
    }

    .page-home #wio-wasser .wio-text-col {
        border-radius: 0 !important;
    }

    /* Middle tile */
    .page-home #wio-gold .wio-image-col,
    .page-home #wio-gold .wio-text-col {
        border-radius: 0 !important;
    }

    /* Bottom tile */
    .page-home #wio-silizium .wio-image-col {
        border-radius: 0 !important;
    }

    .page-home #wio-silizium .wio-text-col {
        border-radius: 0 0 16px 16px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE CUSTOM TYPOGRAPHY (Playfair Display) 
   ═══════════════════════════════════════════════════════ */
.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4,
.page-home h5,
.page-home h6,
.page-home .home-quote,
.page-home .temple-heading,
.page-home .wio-title,
.page-home .wio-hero-title {
    font-family: 'Playfair Display', serif !important;
}


/* ═══════════════════════════════════════════════════════
   WIO ACCORDION KLAPPTEXTE (Homepage)
   ═══════════════════════════════════════════════════════ */

.wio-container {
    position: relative;
    z-index: 10;
}

.wio-accordion-group {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.35, 1),
        transform 1.2s cubic-bezier(0.25, 1, 0.35, 1);
}

.wio-accordion-group.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Individual Accordion Item ── */
.wio-accordion-item {
    position: relative;
    border-bottom: 0.5px solid rgba(197, 164, 126, 0.18);
    transition: border-color 0.5s ease;
}

.wio-accordion-item:first-child {
    border-top: 0.5px solid rgba(197, 164, 126, 0.18);
}

.wio-accordion-item.is-open {
    border-color: rgba(197, 164, 126, 0.35);
}

/* ── Trigger Button ── */
.wio-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 36px 0;
    cursor: pointer;
    text-align: left;
    outline: none;
    position: relative;
    transition: padding 0.6s cubic-bezier(0.25, 1, 0.35, 1);
}

.wio-accordion-trigger:focus-visible {
    outline: 1px solid rgba(197, 164, 126, 0.4);
    outline-offset: 4px;
    border-radius: 2px;
}

.wio-accordion-item.is-open .wio-accordion-trigger {
    padding-bottom: 24px;
}

/* ── Inner content of trigger ── */
.wio-acc-trigger-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

/* ── Label (Element I/II/III) ── */
.wio-acc-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(197, 164, 126, 0.55);
    transition: color 0.5s ease;
}

.wio-accordion-item.is-open .wio-acc-label,
.wio-accordion-trigger:hover .wio-acc-label {
    color: rgba(197, 164, 126, 0.85);
}

/* ── Title ── */
.wio-acc-title {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    font-style: normal;
    color: rgba(240, 236, 225, 0.88);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: color 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.35, 1);
}

.wio-accordion-item.is-open .wio-acc-title,
.wio-accordion-trigger:hover .wio-acc-title {
    color: rgba(240, 236, 225, 1);
}

.wio-accordion-trigger:hover .wio-acc-title {
    transform: translateX(6px);
}

/* ── Specs Preview (subtitle row) ── */
.wio-acc-specs-preview {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: rgba(197, 164, 126, 0.45);
    transition: color 0.5s ease, opacity 0.6s ease, max-height 0.6s ease;
    max-height: 30px;
    overflow: hidden;
}

.wio-accordion-item.is-open .wio-acc-specs-preview {
    opacity: 0;
    max-height: 0;
}

.wio-acc-dot {
    opacity: 0.4;
    font-size: 14px;
}

/* ── +/× Icon ── */
.wio-acc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-left: 24px;
    color: rgba(197, 164, 126, 0.45);
    transition: color 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.35, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wio-acc-icon svg {
    width: 22px;
    height: 22px;
}

.wio-acc-icon-h {
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.35, 1);
    transform-origin: center;
}

.wio-accordion-item.is-open .wio-acc-icon {
    color: rgba(197, 164, 126, 0.85);
    transform: rotate(45deg);
}

.wio-accordion-trigger:hover .wio-acc-icon {
    color: rgba(197, 164, 126, 0.75);
}

/* ── Animated Body ── */
.wio-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.85s cubic-bezier(0.25, 1, 0.35, 1);
}

/* ── Detail Inner ── */
.wio-acc-detail {
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

/* ── Description Text ── */
.wio-acc-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.5px;
    color: rgba(240, 236, 225, 0.7);
    text-align: left;
    max-width: 680px;
    width: 100%;
    margin: 0;
    border-top: 0.5px solid rgba(197, 164, 126, 0.18);
    border-bottom: 0.5px solid rgba(197, 164, 126, 0.18);
    padding: 32px 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.35, 1) 0.15s,
        transform 0.8s cubic-bezier(0.25, 1, 0.35, 1) 0.15s;
}

.wio-accordion-item.is-open .wio-acc-description {
    opacity: 1;
    transform: translateY(0);
}

/* ── Image Wrapper ── */
.wio-acc-image-wrapper {
    width: 100%;
    max-width: 680px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 0 0.5px rgba(197, 164, 126, 0.12);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.35, 1) 0.3s,
        transform 0.9s cubic-bezier(0.25, 1, 0.35, 1) 0.3s;
    position: relative;
}

.wio-acc-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px 8px rgba(10, 8, 6, 0.8);
    pointer-events: none;
    border-radius: 4px;
}

.wio-accordion-item.is-open .wio-acc-image-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wio-acc-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .wio-accordion-group {
        padding: 40px 20px 80px;
    }

    .wio-accordion-trigger {
        padding: 28px 0;
    }

    .wio-accordion-item.is-open .wio-accordion-trigger {
        padding-bottom: 18px;
    }

    .wio-acc-title {
        font-size: clamp(24px, 7vw, 30px);
    }

    .wio-acc-specs-preview {
        font-size: 10px;
        letter-spacing: 1px;
        gap: 6px;
    }

    .wio-acc-icon {
        width: 26px;
        height: 26px;
        margin-left: 16px;
    }

    .wio-acc-icon svg {
        width: 18px;
        height: 18px;
    }

    .wio-acc-detail {
        gap: 32px;
        padding-bottom: 36px;
    }

    .wio-acc-description {
        font-size: 14px;
        line-height: 1.85;
    }
}



/* ═══════════════════════════════════════════════════════
   HOME HERO LAYOUT
   ═══════════════════════════════════════════════════════ */

.home-main {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.home-quote {
    margin: 0 0 28px 0;
    padding: 0;
    border: none;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(15px, 2vw, 26px);
    font-weight: 200;
    font-style: normal;
    color: rgba(245, 238, 222, 0.92);
    line-height: 2.1;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.home-quote-author {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(8px, 0.75vw, 10px);
    font-weight: 300;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: rgba(197, 164, 126, 0.65);
    margin-bottom: 22px;
}

.home-hero-balken {
    display: block;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   DAS FLÜSTERN — Cartier-Stil Hero Intro
   Jede Zeile formt sich aus dem Nichts: blur + opacity
   ═══════════════════════════════════════════════════════ */

.flüstern-line {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    animation: flüsternReveal 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--fl-delay, 0s);
    will-change: opacity, filter;
}

@keyframes flüsternReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        letter-spacing: 4px;
    }

    40% {
        opacity: 0.6;
        filter: blur(3px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        letter-spacing: inherit;
    }
}

/* PARACELSUS: tritt nach der letzten Zeile hervor */
.flüstern-author {
    opacity: 0;
    filter: blur(4px);
    animation: flüsternAuthor 1.6s cubic-bezier(0.25, 1, 0.35, 1) forwards;
    animation-delay: 2.6s;
}

@keyframes flüsternAuthor {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(6px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

/* ── Goldene Linie: 80vw, wächst von links nach rechts, endet in Gold ── */
.flüstern-balken {
    transform-origin: left center;
    transform: scaleX(0);
    opacity: 0;
    width: 80vw;
    height: 1px;
    animation: flüsternBalken 2.0s cubic-bezier(0.25, 1, 0.3, 1) forwards;
    animation-delay: 3.4s;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(197, 164, 126, 0.15) 5%,
            rgba(197, 164, 126, 0.4) 25%,
            rgba(210, 178, 120, 0.7) 50%,
            rgba(230, 195, 130, 0.9) 72%,
            rgba(255, 215, 100, 1) 88%,
            #ffd700 100%);
    box-shadow:
        0 0 12px rgba(255, 215, 100, 0.35),
        0 0 30px rgba(212, 170, 112, 0.12);
}

@keyframes flüsternBalken {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   FINAL ABSOLUTE OVERRIDE — Ultra-Luxury Geometric Typography
   Porsche 911 Brochure / Mercedes EQS Interior Display Aesthetic
   This block wins over ALL previous cascade layers.
   ═══════════════════════════════════════════════════════════════ */
blockquote.home-quote,
.home-quote,
.home-main blockquote,
.home-hero-content .home-quote {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: clamp(13px, 1.8vw, 22px) !important;
    font-weight: 200 !important;
    font-style: normal !important;
    line-height: 2.2 !important;
    letter-spacing: 0.35em !important;
    text-transform: uppercase !important;
    color: rgba(245, 238, 222, 0.92) !important;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.home-quote-author,
.flüstern-author,
.home-hero-content .home-quote-author {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: clamp(7px, 0.65vw, 9px) !important;
    font-weight: 300 !important;
    font-style: normal !important;
    letter-spacing: 0.6em !important;
    text-transform: uppercase !important;
    color: rgba(197, 164, 126, 0.6) !important;
    margin-top: 44px !important;
    margin-bottom: 44px !important;
    text-shadow: none !important;
}