/* 
 * 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.9);
    --btn-border-hover: var(--color-gold-bright);
    --input-border: rgba(255, 255, 255, 0.7);
    --divider-color: rgba(255, 255, 255, 0.4);

    /* 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;
    outline: none !important;
}

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

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;
}

/* Prevent double background for specific pages */
body.page-technologie,
body.page-wirkung,
body.page-store,
body.page-concierge {
    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;
}

/* --- NAVIGATION --- */
.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: rgba(10, 8, 6, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    height: 60px;
}

.nav-item {
    color: hsla(var(--cg-h), var(--cg-s), var(--cg-l), var(--nav-a));
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.5s var(--rolex-bezier);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(197, 164, 126, 0.1);
    position: relative;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover,
.nav-item.active {
    color: #0a0806;
    background: rgba(252, 249, 242, 0.4);
    font-weight: 800;
}

.nav-item.active {
    background: rgba(252, 249, 242, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    height: 24px;
    width: auto;
    opacity: 0.88;
    transition: all 0.5s var(--rolex-bezier);
}

.nav-item:hover .nav-logo,
.nav-item.active .nav-logo {
    opacity: 1;
    filter: brightness(0);
}

/* --- 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: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    clip-path: inset(0 round 24px);
    -webkit-clip-path: inset(0 round 24px);
    transition: all 0.6s var(--rolex-bezier), background-color 3.5s ease;
    width: 75%;
    max-width: 1000px;
    margin: 40px auto 0;
}

.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: 20px;
    border-top-right-radius: 20px;
    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);
}

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

.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));
}

/* --- RESPONSIVE ARCHITECTURE --- */
@media (max-width: 1200px) {
    .main-nav {
        display: block !important;
        width: 100vw !important;
        overflow: visible !important;
    }

    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        height: 60px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: auto;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 20vw !important;
        overscroll-behavior-x: contain !important;
        padding: 0 5vw;
    }

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

    .nav-item {
        flex: 0 0 auto;
        padding: 0 4vw;
        scroll-snap-align: center;
        border-right: 0.5px solid rgba(197, 164, 126, 0.08);
        font-size: 10px !important;
        transition: all 0.8s var(--rolex-bezier);
        will-change: flex-basis, width, opacity;
        position: relative;
        overflow: hidden;
    }

    .nav-item.active {
        flex: 0 0 70vw;
        width: 70vw !important;
        justify-content: center;
        background: rgba(252, 249, 242, 0.08);
        font-weight: 800;
        color: var(--color-gold);
    }

    .nav-item.active::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 40%;
        height: 1.5px;
        background: var(--color-gold);
        box-shadow: 0 0 10px var(--color-gold);
        opacity: 0.8;
    }

    .nav-item .nav-logo {
        height: 24px !important;
    }
}

@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) {

    .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: 84vw;
        margin: 12vw auto;
        padding: 0 !important;
        flex-direction: column !important;
        transform: translate3d(0, 0, 0);
    }

    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;
        border-top-left-radius: 4vw !important;
        border-top-right-radius: 4vw !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: 75%;
    max-width: 1000px;
    margin: 40px auto 100px auto;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.login-left-col,
.login-right-col {
    flex: 1;
    min-width: 320px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

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

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

.login-form-group {
    margin-bottom: 45px;
    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);
}

/* --- FIX DEFAULT BROWSER AUTOFILL YELLOW BACKGROUND --- */
.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: 40px 0 60px 0;
    font-weight: 500;
}

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

.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);
}

.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: 0;
}

.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%;
}

.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: 15px;
    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;
}

.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: 100%;
    left: 0;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    background-color: #0a0806;
    border: 1px solid rgba(197, 164, 126, 0.4);
    border-top: none;
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
    z-index: 100;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    border-radius: 0 0 6px 6px;
}

.custom-select.open .custom-select-options {
    display: block;
}

.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.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.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: 12px;
    width: 12px;
    height: 12px;
    stroke: var(--color-gold);
    fill: none;
    pointer-events: none;
    z-index: 11;
    transition: transform 0.4s var(--rolex-bezier);
}

.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 --- */
.login-input.touched:invalid {
    border-bottom-color: #ff4d4d;
    color: #ff4d4d !important;
}

.login-input.touched:valid {
    border-bottom-color: var(--color-gold);
}

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.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--color-gold);
    border-radius: 24px;
    width: 90%;
    max-width: 440px;
    padding: 50px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    clip-path: inset(0 round 24px);
    -webkit-clip-path: inset(0 round 24px);
    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 CARDS --- */
.store-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 100px auto 100px auto;
    width: 90%;
    max-width: 1100px;
}

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

.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.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s var(--rolex-bezier);
    z-index: 0;
    pointer-events: none;
}

.store-card:hover {
    border-color: rgba(197, 164, 126, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

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

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

.store-card-icon {
    width: 65px;
    height: 65px;
    border: 1px solid rgba(197, 164, 126, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
    transition: border-color 0.6s var(--rolex-bezier), background-color 0.6s var(--rolex-bezier);
}

/* Interactive */
:root {
    --btn-border: rgba(255, 255, 255, 0.85);
    --input-border: rgba(255, 255, 255, 0.7);
    --divider-color: rgba(197, 164, 126, 0.5);
}

.store-card-icon svg {
    width: 22px;
    height: 22px;
    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: 19px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.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 --- */
.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.2);
    border-radius: 20px;
    padding: 60px 50px;
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.6s var(--rolex-bezier);
}

.concierge-left {
    flex: 0 0 30%;
    display: flex;
    align-items: flex-start;
}

.concierge-label {
    color: var(--color-gold);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1.5px;
    margin-top: -5px;
}

.concierge-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    min-width: 0; /* CRITICAL: Prevents flex child from breaking out of container */
}

.concierge-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 35px 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.3);
    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.15);
    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; /* Prevent wrapping specifically for the dates carousel */
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 30px; /* 10px more distance */
    -webkit-overflow-scrolling: touch;
    
    /* Cross-Browser Support (Firefox) */
    scrollbar-width: auto; /* Allow Firefox to have a thicker scrollbar to match the 150% request */
    scrollbar-color: rgba(197, 164, 126, 0.5) rgba(255, 255, 255, 0.02);
}

/* 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(255, 255, 255, 0.08);
    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);
    color: var(--color-gold-bright);
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.25), rgba(197, 164, 126, 0.05));
    box-shadow: inset 0 0 15px rgba(197, 164, 126, 0.15), 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

.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;
    }
}