/* --- Vorhandene Styles (Nachtblau & Footer) bleiben --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;500;600&display=swap');

:root {
    --solamea-blue: #0d253c;
    --solamea-orange: #ff7f50;
    --nav-bg: #f8f8f8;
    --text-dark: #444;
    --text-light: #666;
}

/* --- Globale Struktur --- */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #fcfcfc;
}

/* --- Globale Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 70px 15px 40px;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--nav-bg);
    border-bottom: 1px solid #eeeeee;
    height: 30px;        /* ← fuer fixe menu height*/
    overflow: visible;   /* ← fuer logo darf ueber menu hinausragen*/
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--solamea-blue) !important;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    display: flex !important;
    list-style: none !important;
    margin: 0;
    padding: 0;
    gap: 40px; /* Abstand zwischen PRODUKTE und KONTAKT */
    align-items: center;
}

.nav-links a {
    text-decoration: none !important;
    color: var(--solamea-blue) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400; /* Auf 400 reduziert für einen weniger klobigen Look */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* Auf 0.1em angepasst für ein luftigeres Design */
    transition: color 0.3s ease;
}

.cart-wrapper {
    margin-left: 20px;
    position: relative;
}

.cart-link {
    color: #9a9a9a;
    display: flex;
    align-items: center;
    position: relative;
}

.cart-link:hover {
    color: #C4A35A !important;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #C4A35A;
    color: white;
    font-size: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
}

/* Language Switcher Refinement */
.lang-switch {
    display: flex;
    gap: 12px; /* Reduziert von 20px auf 12px für einen kompakteren Look ohne Trennstrich */
    margin-left: 10px;
    align-items: center;
    font-size: 0; /* Versteckt hartcodierte Trennstriche (|) zwischen den Links */
}

.lang-switch a {
    font-size: 0.7rem; /* Stellt die Schriftgröße für die Links wieder her */
    letter-spacing: 1px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.active-lang {
    color: var(--solamea-blue) !important;
    font-weight: 600 !important;
    opacity: 1;
}

.inactive-lang {
    color: var(--solamea-blue) !important;
    opacity: 0.5; /* Inaktive Sprache dezent ausgegraut */
}

/* --- PRODUKT-DETAIL LAYOUT (Zentralisiert) --- */
.product-detail-container {
    padding: 160px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1; 
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
    padding: 50px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: block;
}


.product-info h1 {
    font-family: 'Playfair Display', serif;
    color: var(--solamea-blue);
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 1.8rem;
    color: #C4A35A;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.description {
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "—";
    margin-right: 15px;
    color: var(--solamea-orange);
}

.add-to-cart-btn {
    background-color: #C4A35A;
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 350px;
}

.add-to-cart-btn:hover {
    background-color: #0d253c;
}

.back-link {
    display: inline-block;
    margin-top: 50px;
    color: #999;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ZENTRALER FOOTER --- */
.footer {
    background-color: var(--solamea-blue);
    color: #d1d8df;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: #d1d8df;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
}

.footer-links a:hover {
    opacity: 1;
    color: #C4A35A !important;
}

.footer-claim {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 5px;
    display: block;
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    .product-detail-container { padding-top: 120px; }
    .product-info h1 { font-size: 2.2rem; }
    .product-grid { gap: 30px; }

    /* Hier kommt mein Zusatz für dein Logo/Schriftzug */
    .hero-logo-img { 
        max-width: 90%; 
        height: auto; 
        display: block;
        margin: 0 auto; /* Zentriert es, falls nötig */
    }
}

.subpage-body {
    background-image: url('assets/background2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.subpage-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    pointer-events: none;
}

.btn-select {
    margin-top: auto;
    text-align: center;
    background: #C4A35A;
    color: white !important;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    display: block;
}

.btn-select:hover {
    background: #0d253c;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #C4A35A;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
}

.qty-btn {
    background: #C4A35A;
    color: white;
    border: none;
    width: 50px;
    height: 56px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: #0d253c;
}

.qty-display {
    flex: 1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0d253c;
}


