/* VORTYA V2 - PREMIUM MINIMALIST DESIGN 
    Focus: Clean Typography, Deep Blacks, No Sci-Fi Clutter
*/

:root {
    --bg-primary: #000000;      /* Absolutes Schwarz */
    --bg-surface: #0a0a0a;     /* Subtiles Grau für Karten */
    --accent-main: #ffffff;     /* Reinweiß als Hauptakzent */
    --accent-subtle: #1a1a1a;   /* Dunkles Grau für Linien */
    --text-main: #ffffff;
    --text-muted: #666666;
    --font-head: 'Inter', sans-serif; /* Orbitron entfernt */
    --font-body: 'Inter', sans-serif;
    --glass: rgba(0, 0, 0, 0.9);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-primary);
    /* Gittermuster und Radial-Gradient entfernt für absolute Ruhe */
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, .logo, .btn-primary, .btn-secondary, .btn-whatsapp {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 3px; /* Edlerer Look durch weites Spacing */
    font-weight: 700;
}

header {
    position: fixed;
    top: 0; width: 100%; height: 70px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; background: var(--glass);
    backdrop-filter: blur(20px); z-index: 1000;
    border-bottom: 1px solid var(--accent-subtle);
}

/* Glitch-Animationen komplett entfernt */

.logo { 
    position: relative; 
    font-size: 1.1rem; 
    font-weight: 900; 
    color: var(--text-main); 
    cursor: pointer; 
    text-shadow: none; 
    transition: var(--transition);
    letter-spacing: 8px;
}
.logo:hover { opacity: 0.7; }
/* Pseudo-Elemente für Glitch deaktiviert */
.logo::before, .logo::after { display: none; }

.desktop-nav a { 
    color: var(--text-muted); 
    text-decoration: none; 
    margin: 0 20px; 
    font-size: 0.75rem; 
    transition: var(--transition); 
    text-transform: uppercase; 
    font-family: var(--font-head); 
    letter-spacing: 2px; 
}
.desktop-nav a:hover, .desktop-nav a.active-nav-link { 
    color: var(--text-main); 
}

.icon-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; margin-left: 20px; transition: var(--transition); }
.icon-btn:hover { color: var(--text-main); transform: translateY(-2px); }

.mobile-nav-toggle { display: none; z-index: 2001; background: none; border: none; cursor: pointer; }
.mobile-nav-toggle .line { display: block; width: 20px; height: 1px; background-color: var(--text-main); margin: 6px 0; transition: var(--transition); }

.wishlist-btn { background: none; border: none; cursor: pointer; color: var(--text-main); transition: var(--transition); padding: 0; position: absolute; top: 20px; right: 20px; z-index: 10; }
.wishlist-btn svg { width: 20px; height: 20px; stroke: var(--text-muted); stroke-width: 1px; fill: none; }
.wishlist-btn.active svg { stroke: var(--text-main); fill: var(--text-main); }

.badge { position: absolute; top: -8px; right: -8px; background: var(--text-main); color: var(--bg-primary); font-size: 0.6rem; padding: 2px 5px; border-radius: 2px; font-weight: 900; }

/* Buttons: Weg von Lila, hin zu Clean Black & White */
.btn-primary { 
    background: var(--text-main); 
    border: 1px solid var(--text-main); 
    color: var(--bg-primary); 
    padding: 14px 30px; 
    cursor: pointer; 
    transition: var(--transition); 
    font-size: 0.8rem;
}
.btn-primary:hover { 
    background: transparent; 
    color: var(--text-main); 
    box-shadow: none; 
}

.btn-secondary { 
    background: transparent; 
    border: 1px solid var(--accent-subtle); 
    color: var(--text-muted); 
    padding: 14px 30px; 
    cursor: pointer; 
    transition: var(--transition); 
    font-size: 0.8rem;
}
.btn-secondary:hover { 
    border-color: var(--text-main); 
    color: var(--text-main); 
}

/* Status-Indicator dezenter */
.status-indicator { 
    font-family: var(--font-body); 
    color: #00ff66; 
    font-size: 0.7rem; 
    margin-bottom: 20px; 
    border: 1px solid rgba(0, 255, 102, 0.3); 
    padding: 4px 12px; 
    display: inline-block; 
    letter-spacing: 1px; 
    background: transparent;
}

 #app { padding-top: 70px; }

.hero { min-height: 90vh; text-align: center; }
.hero h1 { font-size: 3.5rem; letter-spacing: 15px; margin-bottom: 10px; text-shadow: none; }
.hero p { font-size: 0.9rem; letter-spacing: 5px; color: var(--text-muted); }

.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; padding: 80px 5%; }

/* Produktkarten ohne Glow-Effekte */
.product-card { 
    background: var(--bg-surface); 
    padding: 30px; 
    border: 1px solid var(--accent-subtle); 
    transition: var(--transition); 
}
.product-card:hover { 
    border-color: #333; 
    transform: translateY(-10px); 
}

/* Skeletons dezenter */
.skeleton-img { 
    width: 100%; 
    height: 250px; 
    background: #0d0d0d; 
    border: none; 
}
.skeleton-img::after { display: none; }

.card-info h3 { font-size: 1rem; margin-bottom: 5px; letter-spacing: 2px; }
.card-info .price { color: var(--text-main); font-size: 1rem; font-weight: 300; }

/* Feature Matrix: Minimalistisch */
.feature-matrix { margin-top: 100px; border-top: 1px solid var(--accent-subtle); }
.feature-box { border-top: none; border-right: 1px solid var(--accent-subtle); }
.feature-box:last-child { border-right: none; }
.usp-title { font-size: 0.7rem; letter-spacing: 3px; }
.usp-desc { color: var(--text-muted); font-size: 0.6rem; }

/* Filter & Sidebar */
.sidebar { border-right: 1px solid var(--accent-subtle); padding-right: 20px; }
.filter-group h4 { font-size: 0.75rem; color: var(--text-main); margin-bottom: 20px; }
.slider { background: var(--accent-subtle); }
.slider::-webkit-slider-thumb { background: var(--text-main); box-shadow: none; width: 14px; height: 14px; }

/* Detailseite */
.main-img { background: var(--bg-surface); border: 1px solid var(--accent-subtle); }
.thumb { background: var(--bg-surface); border: 1px solid var(--accent-subtle); }

.wishlist-btn-pdp { 
    border: 1px solid var(--accent-subtle); 
    background: transparent; 
}
.wishlist-btn-pdp:hover { border-color: var(--text-main); background: transparent; }
.wishlist-btn-pdp.active svg path { fill: var(--text-main); stroke: var(--text-main); }

/* Drawer / Warenkorb */
.drawer { 
    background: #000; 
    border-left: 1px solid var(--accent-subtle); 
    width: 450px; 
}

/* Toasts / Benachrichtigungen */
.toast { 
    background: #fff; 
    color: #000; 
    border: none; 
    border-radius: 0; 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase;
}

/* Footer */
footer { 
    background: #000; 
    border-top: 1px solid var(--accent-subtle); 
    padding: 100px 5%; 
}
footer h4 { font-size: 0.8rem; color: var(--text-main); }
footer li { font-size: 0.7rem; letter-spacing: 2px; }

/* Mute Toggle */
.mute-toggle { 
    background: transparent; 
    border: 1px solid var(--accent-subtle); 
}

/* Checkout */
.step-indicator { border-bottom: 1px solid var(--accent-subtle); padding-bottom: 20px; }
.step { font-size: 0.7rem; letter-spacing: 2px; }
.step.active { color: var(--text-main); text-shadow: none; }

/* Terminal-Look für 404/Success entfernt */
.terminal-404 { font-family: var(--font-head); color: var(--text-main); }