:root { --bg-dark: #081221; --accent-gold: #d4af37; --text-light: #f0f0f0; --glass-bg: rgba(12, 24, 44, 0.95); --glass-border: rgba(212, 175, 55, 0.3); }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: radial-gradient(circle at top left, #162a4a, var(--bg-dark)); color: var(--text-light); min-height: 100vh; overflow-x: hidden; }
.ambient-light { position: fixed; top: -20%; right: -10%; width: 600px; height: 600px; background: var(--accent-gold); filter: blur(150px); opacity: 0.15; z-index: -1; }
.glass-panel, .glass-nav, .glass-footer, .cart-sidebar, .checkout-box, .login-box { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); box-shadow: 0 8px 32px 0 rgba(0,0,0,0.5); }

/* Nav */
.glass-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; position: sticky; top: 0; z-index: 1000; }
.logo-container { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 40px; border-radius: 50%; border: 1px solid var(--accent-gold); }
.brand-name { font-weight: 700; font-size: 1.5rem; color: var(--accent-gold); letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: var(--text-light); text-decoration: none; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--accent-gold); }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons i { font-size: 1.2rem; cursor: pointer; transition: 0.3s; color: white; }
.cart-icon-wrapper { position: relative; cursor: pointer; }
.cart-count { position: absolute; top: -8px; right: -8px; background: var(--accent-gold); color: #000; font-size: 0.7rem; padding: 2px 6px; border-radius: 50%; font-weight: bold; }

/* Dropdown Fix */
.dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); flex-direction: column; min-width: 220px; padding-top: 15px; margin-top: 0; z-index: 1000; }
.dropdown:hover .dropdown-content { display: flex; }
.dropdown-content-inner { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 12px; box-shadow: 0 8px 32px 0 rgba(0,0,0,0.5); overflow: hidden; display: flex; flex-direction: column; }
.dropdown-content a { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); color: white; text-decoration: none; transition: background 0.2s; text-align: left; }
.dropdown-content a:hover { background: rgba(212, 175, 55, 0.2); color: var(--accent-gold); }
.dropdown-content a:last-child { border-bottom: none; }

/* Hero & Products */
.hero { height: 80vh; display: flex; align-items: center; justify-content: center; position: relative; background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1470&auto=format&fit=crop') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(8, 18, 33, 0.6); }
.hero-text { position: relative; text-align: center; padding: 3rem; border-radius: 20px; max-width: 700px; }
.hero-text h1 { font-size: 3.5rem; margin: 10px 0; background: linear-gradient(to right, #fff, var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-btn { padding: 12px 35px; background: var(--accent-gold); color: var(--bg-dark); border: none; font-weight: bold; border-radius: 30px; cursor: pointer; margin-top: 20px; transition: transform 0.2s; }
.cta-btn:hover { transform: scale(1.05); }
.products { padding: 50px 5%; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card { padding: 20px; border-radius: 15px; transition: 0.3s; text-align: left; }
.product-card:hover { transform: translateY(-10px); border-color: var(--accent-gold); }
.product-img-placeholder { height: 250px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-bottom: 15px; }
.add-btn { width: 100%; padding: 10px; margin-top: 10px; background: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); border-radius: 5px; cursor: pointer; transition: 0.3s; }
.add-btn:hover { background: var(--accent-gold); color: var(--bg-dark); }

/* Cart, Login, Checkout */
.cart-sidebar { position: fixed; top: 0; right: 0; width: 350px; height: 100%; z-index: 2000; padding: 20px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s ease-in-out; }
.cart-sidebar.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.close-cart { font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; margin: 20px 0; }
.cart-item { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; }
input, select { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: #1a1a1a; color: white; outline: none; margin-bottom: 10px; }
input:focus { border-color: var(--accent-gold); }
.checkout-btn, .pay-now-btn, .main-auth-btn { width: 100%; padding: 14px; background: var(--accent-gold); border: none; color: var(--bg-dark); font-weight: bold; cursor: pointer; border-radius: 8px; margin-top: 10px; font-size: 1rem; }
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 3000; justify-content: center; align-items: center; padding: 20px; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: #aaa; }
.login-box { width: 450px; padding: 40px; border-radius: 12px; text-align: center; position: relative; background: rgba(12, 24, 44, 0.98); }
.auth-header { margin-bottom: 30px; }
.auth-logo { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent-gold); margin-bottom: 15px; display:inline-block; }
.auth-header h2 { font-size: 1.8rem; font-weight: 700; margin:0; }
.auth-toggles { display: flex; justify-content: center; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); gap: 20px; }
.auth-tab { background: none; border: none; color: #aaa; font-size: 1rem; font-weight: 600; padding: 10px 20px; cursor: pointer; border-bottom: 3px solid transparent; }
.auth-tab.active { color: white; border-bottom: 3px solid var(--accent-gold); }
.social-login { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; padding: 12px; border-radius: 30px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.social-btn:hover { border-color: white; background: rgba(255,255,255,0.05); }
.divider { display: flex; align-items: center; margin: 20px 0; color: #aaa; font-size: 0.8rem; font-weight: bold; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.1); margin: 0 10px; }
.input-group { text-align: left; margin-bottom: 15px; }
.form-footer { margin-top: 20px; font-size: 0.9rem; }
.form-footer a { color: white; text-decoration: none; }
.checkout-box { width: 700px; max-width: 100%; padding: 40px; position: relative; max-height: 95vh; overflow-y: auto; border-radius: 20px; }
.checkout-box h2 { margin-bottom: 20px; color: var(--accent-gold); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.form-row { display: flex; gap: 15px; }
.full-width { width: 100%; }
.stripe-box { padding: 15px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; background: rgba(0,0,0,0.2); }

/* --- FOOTER FIXED --- */
.glass-footer { margin-top: 80px; padding-bottom: 50px; }
.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; margin-bottom: 50px; }
.footer-bottom-line { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 0.8rem; color: #888; }
.legal-links { display: flex; gap: 25px; }
.legal-links a { color: #aaa; text-decoration: none; font-weight: 500; transition: color 0.3s; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }
.legal-links a:hover { color: var(--accent-gold); }
.payment-methods i { font-size: 2.2rem; margin: 0 10px; transition: transform 0.2s; }
.payment-methods i:hover { transform: scale(1.1); }
.fa-paypal { color: #003087; text-shadow: 0 0 10px rgba(0, 48, 135, 0.4); }
.fa-cc-mastercard { color: #eb001b; text-shadow: 0 0 10px rgba(235, 0, 27, 0.4); }
.fa-cc-visa { color: #1a1f71; text-shadow: 0 0 10px rgba(26, 31, 113, 0.4); }
.fa-apple-pay { color: #fff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); }
.klarna-badge { color: #ffb3c7; font-weight: 900; font-size: 1.5rem; text-shadow: 0 0 10px rgba(255, 179, 199, 0.4); }

/* --- COOKIE POPUP FIXED --- */
.cookie-banner { position: fixed; bottom: -100%; left: 50%; transform: translateX(-50%); width: 90%; max-width: 500px; padding: 30px; border-radius: 20px; z-index: 9999; background: rgba(12, 24, 44, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--accent-gold); box-shadow: 0 20px 50px rgba(0,0,0,0.5); display: flex; flex-direction: column; gap: 20px; transition: bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.cookie-banner.show { bottom: 30px; }
.cookie-content h3 { color: var(--accent-gold); margin-bottom: 10px; font-size: 1.3rem; text-align: center; }
.cookie-content p { font-size: 0.95rem; color: #ddd; line-height: 1.6; text-align: center; }
.cookie-content a { color: white; text-decoration: underline; }
.cookie-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 10px; }
.cookie-btn-fill { background: var(--accent-gold); color: #081221; border: none; padding: 12px 30px; border-radius: 50px; font-weight: 800; cursor: pointer; font-size: 0.9rem; transition: transform 0.2s; }
.cookie-btn-outline { background: transparent; color: #aaa; border: 2px solid rgba(255,255,255,0.2); padding: 12px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: 0.9rem; transition: 0.3s; }
.cookie-btn-outline:hover { border-color: white; color: white; }
.cookie-btn-fill:hover { transform: scale(1.05); box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

/* Info-Seiten */
.content-page { padding: 120px 20px 60px; max-width: 800px; margin: 0 auto; min-height: 100vh; }
.legal-content { padding: 40px; text-align: left; line-height: 1.6; }
.legal-content h1 { color: var(--accent-gold); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 25px; }
.legal-content h2, .legal-content h3 { color: white; margin-top: 30px; margin-bottom: 15px; }
.legal-content p, .legal-content li { color: #ccc; margin-bottom: 10px; }
.legal-box { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); margin-top: 20px; }

/* --- MOBILE OPTIMIERUNG (NEU) --- */
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: white; margin-left: 20px; }
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { position: fixed; top: 70px; right: -100%; width: 100%; height: calc(100vh - 70px); background: rgba(8, 18, 33, 0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 50px; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; }
    .nav-links.nav-active { right: 0; }
    .nav-links li { margin: 20px 0; opacity: 0; animation: navLinkFade 0.5s ease forwards 0.3s; }
    .nav-links a { font-size: 1.5rem; }
    .dropdown-content { position: static; transform: none; background: transparent; border: none; box-shadow: none; text-align: center; padding-top: 10px; display: none; }
    .dropdown:hover .dropdown-content { display: flex; }
    .hero-text h1 { font-size: 2.2rem; }
    .product-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .login-box, .checkout-box { width: 100%; height: 100%; border-radius: 0; max-height: 100vh; overflow-y: scroll; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
    .close-modal { top: 20px; right: 20px; font-size: 2rem; z-index: 10; }
    .cart-sidebar { width: 100%; }
    .footer-bottom-line { flex-direction: column-reverse; gap: 20px; }
    .legal-links { flex-wrap: wrap; justify-content: center; }
}
@keyframes navLinkFade { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }