:root {
    --bg-body: #050404;       
    --raw-flesh: #1A0F10;     
    --crude-info: #D1BBA6;     
    --skin-pale: #D1BBA6;     
    --border-heavy: #211617;  
    --text-dark: #635253;     
    --card-bg: #0C0A0A;

    /* Identity Highlight Colors */
    --id-female: #debfc5;
    --id-omni: #b7be9c;
    --id-male: #b8cae0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

a { text-decoration: none; color: inherit; }

.btn-back {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    transition: color 0.3s;
}
.btn-back:hover {
    color: var(--skin-pale);
}

body {
    background-color: var(--bg-body);
    color: var(--skin-pale);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 25px 60px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { 
    max-width: 800px; 
    margin: 0 auto; 
    margin-bottom: 150px;
}

.container.wide { 
    max-width: 1200px;
}

/* --- WARENKORB UI --- */
.cart-nav {
    display: flex; align-items: center; gap: 15px; cursor: pointer;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border-heavy);
    padding: 10px 18px; margin-left: 20px; transition: all 0.3s ease;
}
.cart-nav:hover { border-color: var(--skin-pale); background: rgba(255,255,255,0.08); }
.cart-info { text-align: right; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.2; }
#cart-count { color: var(--skin-pale); font-weight: 700; }

.cart-overlay {
    position: fixed; top: 0; right: -450px; width: 450px; height: 100%;
    background: #080808; border-left: 1px solid var(--border-heavy);
    z-index: 3000; transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column; box-shadow: -20px 0 50px rgba(0,0,0,0.8);
}
.cart-overlay.active { right: 0; }
.cart-header { padding: 40px; border-bottom: 1px solid var(--border-heavy); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { text-transform: uppercase; letter-spacing: 4px; font-size: 1.2rem; margin: 0; }
.close-cart { cursor: pointer; font-size: 2rem; color: var(--text-dark); transition: color 0.3s; }
.close-cart:hover { color: #fff; }
.cart-content { flex: 1; overflow-y: auto; padding: 40px; }
.cart-footer { padding: 40px; background: #0c0c0c; border-top: 1px solid var(--border-heavy); }
.cart-total-line { display: flex; justify-content: space-between; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.btn-checkout {
    width: 100%; padding: 20px; background: var(--skin-pale); color: #000; border: none;
    text-transform: uppercase; letter-spacing: 3px; font-weight: 700; cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}
.btn-checkout:hover { background: #fff; transform: scale(1.02); }

@media (max-width: 768px) {
    .cart-overlay { width: 100%; right: -100%; }
    .cart-nav { margin-left: 0; padding: 8px 12px; }
    .cart-info { display: none; }
}

/* --- PRODUCT HUB (INDEX) --- */
.product-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 100px;
}
.hub-card {
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-heavy);
    padding: 50px 30px;
    text-align: center;
    transition: border-color 0.4s ease, transform 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 450px;
}
.hub-card:hover {
    border-color: var(--skin-pale);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}
.hub-card h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
}
.hub-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hub-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--skin-pale);
    font-weight: 700;
}
.hub-image-wrapper {
    width: 100%;
    height: 160px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.hub-image {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hub-card:hover .hub-image {
    opacity: 1;
    transform: scale(1.1);
}

/* --- IMPORTANT INFO MONOLITH --- */
.important-info-monolith {
    margin-top: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-heavy);
    border-top: 4px solid var(--crude-info);
    padding: 60px;
    text-align: left;
}
.important-info-monolith h3 {
    color: var(--crude-info);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}
.important-info-monolith .info-description {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
}
.important-info-monolith .info-detailed-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
}

/* --- FAQ SYSTEM --- */
.faq-list {
    margin-top: 50px;
    margin-bottom: 150px;
    max-width: 800px;
}
.faq-item {
    margin-bottom: 10px;
    border-left: 1px solid var(--border-heavy);
    padding-left: 25px;
    transition: border-color 0.3s ease;
}
.faq-item.active {
    border-left-color: var(--skin-pale);
}
.faq-question {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 20px 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-weight: 300;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    content: '−';
    color: var(--skin-pale);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 30px;
}

/* HEADER (NEUER SINNLICHER/ORGANISCHER NAME) */
.brand-header {
    border-bottom: 2px solid var(--skin-pale);
    padding-bottom: 25px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-left-section { /* New container for logo + text group */
    display: flex;
    align-items: center; /* Align logo and text group vertically */
    gap: 20px; /* Space between logo and text */
}
.brand-text-group { /* New container for title + meta */
    display: flex;
    flex-direction: column; /* Stack title and meta vertically */
    justify-content: center; /* Center text vertically if logo is taller */
    gap: 5px; /* Space between title and meta */
}
.brand-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}
.brand-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #FFF;
    text-transform: uppercase;
    text-align: start;
}
.brand-title span { color: var(--text-dark); font-weight: 300; letter-spacing: 3px; }
.brand-meta {
    font-size: 11px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.5;
    letter-spacing: 1px;
}

/* MANIFEST // PERFEKT ZENTRIERT & ANGEPASST */
.raw-manifesto {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.raw-manifesto h2 {
    font-size: 26px;
    font-weight: 300;
    text-transform: uppercase;
    color: #FFF;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.raw-manifesto p {
    font-size: 15px;
    color: var(--skin-pale);
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 20px;
    text-align: center;
}
.raw-manifesto p.philosophy-focus {
    border-top: 1px solid var(--border-heavy);
    padding-top: 20px;
    color: #FFF;
    font-style: italic;
    opacity: 1;
}

/* CONFIGURATOR BLOCK */
.config-monolith {
    background: var(--card-bg);
    border: 1px solid var(--border-heavy);
    border-radius: 4px;
    overflow: hidden;
}

/* TABS */
.identity-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    border-bottom: 1px solid var(--border-heavy);
}
.identity-tab {
    padding: 25px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid var(--border-heavy);
}
.identity-tab:last-child {
    border-right: none;
}
.identity-tab:hover {
    color: var(--skin-pale);
    background: #050404;
}
.identity-tab.active {
    color: #FFF;
    background: var(--card-bg);
}

/* METADATEN */
.identity-meta-box {
    align-items: center;
    padding: 40px 40px 10px 40px;
}
.identity-text-block {
    display: none;
    min-height: 200px;
}
.identity-text-block.active, .static-text-block {
    display: block;
    min-height: 200px;
}
.identity-text-block.active.centered {
    display: block;
    min-height: 180px;
    text-align: center;
}
.identity-text-block h3, .static-text-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.identity-text-block .subtitle, .static-text-block .subtitle {
    font-size: 11px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}
.identity-text-block p, .static-text-block p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* MATRIX */
.matrix-body {
    padding: 0 40px 40px 40px;
}

.section-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--skin-pale);
    margin: 35px 0 12px 0;
    display: block;
    font-weight: 700;
    letter-spacing: 2px;
    border-left: 2px solid var(--text-dark);
    padding-left: 8px;
}

.segmented-control {
    display: flex;
    gap: 8px;
    background: #000;
    padding: 6px;
    border: 1px solid var(--border-heavy);
    border-radius: 2px;
}

.segment-item {
    position: relative;
    text-align: center;
    cursor: pointer;
    width: 100%;
}
.segment-item input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.segment-button {
    display: block;
    padding: 12px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.2s ease;
}
.segment-item:hover .segment-button {
    color: var(--skin-pale);
}
.segment-item input[type="radio"]:checked + .segment-button {
    background: rgba(211, 187, 166, 0.1);
    color: #FFF;
}

.segment-feedback {
    font-size: 11px;
    color: var(--text-dark);
    margin-top: 8px;
    line-height: 1.5;
    min-height: 50px;
}

/* ACTION ZONE */
.col-action-zone {
    margin-top: 40px;
    border-top: 1px solid var(--border-heavy);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.price-zone {
    width: 100%;
}
.price-display {
    font-size: 32px;
    font-weight: 300;
    color: #FFF;
    line-height: 1;
    margin-bottom: 12px;
}
.price-calc-hint {
    font-size: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* JETZT KAUFEN DIRECT BUTTON */
.btn-generate {
    width: 100%;
    background: transparent;
    color: var(--skin-pale);
    border: 1px solid var(--skin-pale);
    padding: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.btn-generate:hover {
    background: var(--skin-pale);
    color: #000;
}

/* DISCLAIMER */
.raw-disclaimer {
    background: #0A0808;
    border-left: 1px solid var(--border-heavy);
    padding: 40px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 60px 0;
}
.raw-disclaimer strong { color: var(--skin-pale); font-weight: 600; }

/* FOOTER */
.crude-footer {
    border-top: 2px solid var(--skin-pale);
    padding-top: 25px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    font-size: 13px;
}
.footer-left h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; color: #FFF; margin-bottom: 15px; letter-spacing: 2px; }
.footer-left p { color: var(--text-dark); line-height: 1.7; }
.footer-links h5 { font-size: 11px; text-transform: uppercase; margin-bottom: 20px; color: var(--skin-pale); opacity: 0.5; letter-spacing: 2px; font-weight: 700; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--skin-pale); text-decoration: none; opacity: 0.7; font-size: 12px; letter-spacing: 0.5px; transition: all 0.3s ease; }
.footer-links ul li a:hover { opacity: 1; color: #FFF; text-decoration: none; }

.footer-bottom { 
    grid-column: 1 / span 4; 
    margin-top: 40px; 
    border-top: 1px solid var(--border-heavy); 
    padding-top: 30px; 
    font-size: 11px; 
    color: #473A3B; 
    line-height: 1.8;
    text-align: center;
 }

/* KONTAKTFORMULAR SPEZIFISCH */
.faq-hint {
    margin: 40px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.faq-hint a {
    color: var(--skin-pale);
    text-decoration: underline;
}

#contactForm {
    max-width: 800px;
    margin: 0 auto 100px auto;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.message-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.form-input, 
.form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-heavy);
    color: #fff;
    padding: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus, 
.form-textarea:focus {
    border-color: var(--skin-pale);
}

/* --- ZENTRALE NAVIGATION --- */
.main-nav {
    display: flex;
    align-items: center;
}
.desktop-menu {
    display: flex;
    gap: 25px;
    margin-right: 20px;
}
.desktop-menu a {
    text-decoration: none;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}
.desktop-menu a:hover {
    color: var(--skin-pale);
}
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.burger-menu span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--skin-pale);
    transition: 0.3s;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    gap: 20px;
}
.mobile-menu-overlay.active {
    display: flex;
}
.mobile-menu-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}
.mobile-menu-overlay a:hover {
    color: var(--skin-pale);
}
.close-menu {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}
@media (max-width: 1024px) {
    .desktop-menu { display: none; }
    .burger-menu { display: flex; }
}

/* --- ENHANCED IDENTITY SYSTEM --- */

.identity-tab { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-top: 2px solid transparent; }
.config-monolith .section-label { transition: border-color 0.3s, color 0.3s; }

/* Female: Blass Rosa */
.identity-tab.female:hover, .option-highlight:hover .segment-button.female, .option-highlight:hover .segment-button.rosa { color: var(--id-female); }
.identity-tab.female.active, #text-female h3, .color-female { color: var(--id-female) !important; }
.identity-tab.female.active {
    border-top: 4px solid var(--id-female) !important;
    background: rgba(222, 191, 197, 0.08) !important; box-shadow: none;
}
.option-highlight input:checked + .segment-button.female, .option-highlight input:checked + .segment-button.rosa {
    background: rgba(222, 191, 197, 0.2) !important; border-color: var(--id-female) !important; color: var(--id-female) !important;
}
.config-monolith:has(.identity-tab.female.active) .section-label, .config-monolith:has(input[value="female"]:checked) .section-label, .config-monolith:has(input[value="rosa"]:checked) .section-label { border-left-color: var(--id-female); }

/* Omni: Pastell Grün */
.identity-tab.omni:hover, .option-highlight:hover .segment-button.omni, .option-highlight:hover .segment-button.gruen { color: var(--id-omni); }
.identity-tab.omni.active, #text-omni h3, .color-omni { color: var(--id-omni) !important; }
.identity-tab.omni.active {
    border-top: 4px solid var(--id-omni) !important;
    background: rgba(183, 190, 156, 0.08) !important; box-shadow: none;
}
.option-highlight input:checked + .segment-button.omni, .option-highlight input:checked + .segment-button.gruen {
    background: rgba(183, 190, 156, 0.2) !important; border-color: var(--id-omni) !important; color: var(--id-omni) !important;
}
.config-monolith:has(.identity-tab.omni.active) .section-label, .config-monolith:has(input[value="omni"]:checked) .section-label, .config-monolith:has(input[value="gruen"]:checked) .section-label { border-left-color: var(--id-omni); }

/* Male: Pastell Blau */
.identity-tab.male:hover, .option-highlight:hover .segment-button.male, .option-highlight:hover .segment-button.blau { color: var(--id-male); }
.identity-tab.male.active, #text-male h3, .color-male { color: var(--id-male) !important; }
.identity-tab.male.active {
    border-top: 4px solid var(--id-male) !important;
    background: rgba(184, 202, 224, 0.08) !important; box-shadow: none;
}
.option-highlight input:checked + .segment-button.male, .option-highlight input:checked + .segment-button.blau {
    background: rgba(184, 202, 224, 0.2) !important; border-color: var(--id-male) !important; color: var(--id-male) !important;
}
.config-monolith:has(.identity-tab.male.active) .section-label, .config-monolith:has(input[value="male"]:checked) .section-label, .config-monolith:has(input[value="blau"]:checked) .section-label { border-left-color: var(--id-male); }







/* Basic styling for the confirmation page content */
.order-confirmation-section {
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    color: var(--text-light);
}

.order-confirmation-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.order-confirmation-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.order-confirmation-section strong {
    color: var(--skin-pale);
}

.next-steps {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.next-steps p {
    font-size: 1rem;
    color: var(--text-light);
}

.next-steps a {
    color: var(--skin-pale);
    text-decoration: none;
}

.next-steps a:hover {
    text-decoration: underline;
}