:root {
    --bg-primary: #050505;
    --bg-surface: #1a1a1a;
    --accent-cyan: #00E0FF;
    --accent-purple: #9D00FF;
    --accent-active: var(--accent-purple);
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass: rgba(18, 18, 18, 0.8);
    --transition: all 0.3s ease-in-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-primary);
    background-image: radial-gradient(circle at 50% 0%, #2a2a2a 0%, var(--bg-primary) 80%),
                      linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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: 1px;
}

header {
    position: fixed;
    top: 0; width: 100%; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; background: var(--glass);
    backdrop-filter: blur(10px); z-index: 1000;
    border-bottom: 1px solid rgba(157, 0, 255, 0.1);
}

@keyframes glitch1 { 0%, 100% { transform: translate(0); } 20% { transform: translate(-2px, 2px); } 40% { transform: translate(2px, -2px); } 60% { transform: translate(-2px, 2px); } 80% { transform: translate(2px, -2px); } }
@keyframes glitch2 { 0%, 100% { transform: translate(0); } 20% { transform: translate(2px, -2px); } 40% { transform: translate(-2px, 2px); } 60% { transform: translate(2px, 2px); } 80% { transform: translate(-2px, -2px); } }

.logo { position: relative; font-size: 1.5rem; font-weight: 900; color: var(--accent-cyan); cursor: pointer; text-shadow: 0 0 10px rgba(0, 224, 255, 0.5); transition: var(--transition); }
.logo:hover { color: transparent; text-shadow: none; }
.logo::before, .logo::after { content: 'VORTYA'; position: absolute; top: 0; left: 0; opacity: 0; }
.logo:hover::before { opacity: 1; color: var(--accent-purple); text-shadow: 1px 0 var(--accent-purple); animation: glitch1 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite; }
.logo:hover::after { opacity: 1; color: var(--accent-cyan); text-shadow: -1px 0 var(--accent-cyan); animation: glitch2 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite; }
.logo:active { transform: scale(0.98); }

.desktop-nav a { color: var(--text-main); text-decoration: none; margin: 0 15px; font-size: 0.9rem; transition: var(--transition); text-transform: uppercase; font-family: var(--font-head); letter-spacing: 1px; }
.desktop-nav a:hover, .desktop-nav a.active-nav-link { color: var(--accent-purple); text-shadow: 0 0 5px var(--accent-purple); }

.icon-btn { background: none; border: none; color: var(--text-main); cursor: pointer; margin-left: 15px; transition: var(--transition); }
.icon-btn:hover { color: var(--accent-purple); transform: scale(1.1); }

.mobile-nav-toggle { display: none; z-index: 2001; background: none; border: none; cursor: pointer; margin-right: 15px; }
.mobile-nav-toggle .line { display: block; width: 24px; height: 2px; background-color: var(--text-main); margin: 5px 0; transition: transform 0.3s ease, opacity 0.2s ease; }
.mobile-nav-toggle.open .line1 { transform: translateY(7px) rotate(45deg); background-color: var(--accent-purple); }
.mobile-nav-toggle.open .line2 { opacity: 0; }
.mobile-nav-toggle.open .line3 { transform: translateY(-7px) rotate(-45deg); background-color: var(--accent-purple); }

.wishlist-btn { background: none; border: none; cursor: pointer; color: var(--text-main); transition: var(--transition); padding: 0; position: absolute; top: 15px; right: 15px; z-index: 10; }
.wishlist-btn svg { width: 24px; height: 24px; stroke: var(--text-muted); stroke-width: 1.5; fill: none; transition: var(--transition); }
.wishlist-btn:hover svg { stroke: var(--accent-purple); }
.wishlist-btn.active svg { stroke: var(--accent-purple); fill: var(--accent-purple); filter: drop-shadow(0 0 5px var(--accent-purple)); }

.relative { position: relative; }
.badge { position: absolute; top: -5px; right: -5px; background: var(--accent-purple); color: var(--bg-primary); font-size: 0.7rem; padding: 2px 5px; border-radius: 50%; font-weight: bold; }

.btn-primary { background: transparent; border: 1px solid var(--accent-purple); color: var(--accent-purple); padding: 12px 24px; cursor: pointer; transition: var(--transition); font-weight: 700; }
.btn-primary:hover { background: var(--accent-purple); color: var(--bg-primary); box-shadow: 0 0 20px var(--accent-purple); }
@keyframes processing-glow { 0% { box-shadow: 0 0 5px var(--accent-cyan); } 50% { box-shadow: 0 0 20px var(--accent-cyan); } 100% { box-shadow: 0 0 5px var(--accent-cyan); } }
.btn-primary.processing { border-color: var(--accent-cyan); color: var(--accent-cyan); animation: processing-glow 1.5s infinite; }

.status-indicator { font-family: monospace; color: #00ff66; font-size: 0.8rem; margin-bottom: 20px; text-align: left; border: 1px solid #00ff66; padding: 5px 10px; display: inline-block; text-transform: uppercase; letter-spacing: 2px; background: rgba(0, 255, 102, 0.05); box-shadow: 0 0 10px rgba(0, 255, 102, 0.2); font-weight: bold; }

.btn-secondary { background: transparent; border: 1px solid var(--text-muted); color: var(--text-muted); padding: 12px 24px; cursor: pointer; transition: var(--transition); text-decoration: none; font-weight: 700; }
.btn-secondary:hover, .btn-secondary.active { background: var(--text-main); color: var(--bg-primary); border-color: var(--text-main); box-shadow: 0 0 20px var(--text-main); }

.btn-whatsapp { background: transparent; border: 1px solid #25D366; color: #25D366; padding: 12px 24px; cursor: pointer; transition: var(--transition); text-decoration: none; font-weight: 700; }
.btn-whatsapp:hover { background: #25D366; color: var(--bg-primary); box-shadow: 0 0 20px #25D366; }

 #app { padding-top: 80px; min-height: 100vh; position: relative; }

.hero { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; background: transparent; text-align: center; position: relative; overflow: hidden; padding-bottom: 40px; }
.hero h1 { font-size: 4rem; margin-bottom: 20px; text-shadow: 0 0 20px rgba(0,0,0,0.8); transition: var(--transition); }
.hero h1:hover { color: var(--accent-purple); text-shadow: 0 0 25px var(--accent-purple); }
.hero h1:active { transform: scale(0.99); }
.hero p { max-width: 600px; margin-bottom: 40px; color: var(--text-muted); }

.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 50px 5%; }
.product-card { background: var(--bg-surface); padding: 20px; border: 1px solid #222; transition: var(--transition); display: flex; flex-direction: column; position: relative; }
#bestsellers .product-card { width: 340px; }

/* --- Feature Matrix (Hero USP) --- */
.feature-matrix { display: flex; width: 100%; max-width: 1000px; margin-top: 80px; gap: 20px; padding: 0 20px; }
.feature-box { flex: 1; padding: 20px 10px; text-align: center; border-top: 1px solid; transition: var(--transition); display: flex; flex-direction: column; gap: 8px; background: transparent; cursor: default; }

.box-purple { border-color: var(--accent-purple); }
.box-cyan { border-color: var(--accent-cyan); }

.usp-title { font-family: var(--font-head); color: #fff; font-size: 0.9rem; letter-spacing: 1px; }
.usp-desc { font-family: var(--font-body); color: #666; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }

/* Hover Effects */
.feature-box:hover { background: rgba(255, 255, 255, 0.02); }
.box-purple:hover { box-shadow: 0 -10px 20px -5px rgba(157, 0, 255, 0.3); border-top-width: 2px; }
.box-cyan:hover { box-shadow: 0 -10px 20px -5px rgba(0, 224, 255, 0.3); border-top-width: 2px; }

/* Mobile 2x2 Grid Layout */
@media (max-width: 768px) {
    .feature-matrix { flex-wrap: wrap; margin-top: 50px; gap: 15px; }
    .feature-box { flex: 1 1 40%; } /* 2 boxes per row */
    .hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; } /* Adjust hero height for mobile content */
}

@keyframes glow-from-bottom { 0% { box-shadow: 0 0 0 0 rgba(157, 0, 255, 0); } 50% { box-shadow: 0 10px 30px 5px var(--accent-purple); } 100% { box-shadow: 0 0 0 0 rgba(157, 0, 255, 0); } }
.idle-glow { animation: glow-from-bottom 3s ease-in-out; }
@keyframes glow-button { 0%, 100% { background: transparent; color: var(--accent-purple); box-shadow: 0 0 20px var(--accent-purple); } 50% { background: var(--accent-cyan); color: var(--bg-primary); border-color: var(--accent-cyan); box-shadow: 0 0 35px 10px rgba(0, 224, 255, 0.7); } }
.btn-primary.idle-glow-button { animation: glow-button 3s ease-in-out 1; }
.product-card:hover { border-color: var(--accent-purple); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }

.skeleton-img { width: 100%; height: 200px; background: linear-gradient(135deg, #222 0%, #2a2a2a 50%, #222 100%); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; color: #444; font-family: var(--font-head); border: 1px solid #333; position: relative; }
.skeleton-img::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, transparent 40%, rgba(0, 224, 255, 0.05) 45%, rgba(157, 0, 255, 0.05) 55%, transparent 60%); }

.card-info h3 { margin-bottom: 10px; }
.card-info .price { color: var(--accent-cyan); font-size: 1.2rem; margin-bottom: 15px; display: block; }

.category-layout { display: flex; padding: 50px 5%; gap: 40px; }
.sidebar { width: 250px; flex-shrink: 0; }
.filter-group { margin-bottom: 30px; }
.filter-group h4 { margin-bottom: 15px; color: var(--accent-purple); }
.slider { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; background: #444; outline: none; margin-top: 10px; }
.slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: var(--accent-purple); cursor: pointer; border-radius: 50%; box-shadow: 0 0 10px var(--accent-purple); }
.price-display { color: var(--accent-cyan); font-family: monospace; margin-top: 10px; display: block; text-align: right; }

.checkbox-row { display: flex; align-items: center; margin-bottom: 10px; cursor: pointer; user-select: none; }
.checkbox-row input { display: none; }
.checkbox-custom { width: 20px; height: 20px; border: 1px solid var(--accent-purple); margin-right: 10px; position: relative; transition: 0.3s; background: rgba(0,0,0,0.3); }
.checkbox-row input:checked + .checkbox-custom { background: var(--accent-purple); box-shadow: 0 0 10px var(--accent-purple); }
.checkbox-row input:checked + .checkbox-custom::after { content: '✓'; position: absolute; color: black; font-size: 14px; top: -2px; left: 3px; font-weight: 900; }
.checkbox-row:hover .checkbox-custom { border-color: var(--accent-cyan); }

.pdp-layout { display: flex; padding: 50px 5%; gap: 50px; flex-wrap: wrap; }
.gallery { flex: 1; min-width: 300px; }
.main-img { height: 400px; background: #1a1a1a; margin-bottom: 20px; border: 1px solid var(--accent-cyan); }
.thumbnails { display: flex; gap: 10px; }
.thumb { width: 80px; height: 80px; background: #1a1a1a; cursor: pointer; border: 1px solid #333; }
.thumb:hover { border-color: var(--accent-purple); }
.details { flex: 1; min-width: 300px; }
.qty-selector { display: flex; align-items: center; gap: 15px; margin: 20px 0; }
.qty-btn { background: #222; border: none; color: white; width: 30px; height: 30px; cursor: pointer; }
.pack-selector { display: flex; gap: 10px; margin: 20px 0; }
.pack-selector .btn-secondary { flex: 1; }
/* --- Favoriten-Button Detailseite Fix --- */
.wishlist-btn-pdp {
    padding: 12px;
    border: 1px solid var(--text-muted);
    border-radius: 5px;
    height: 51px; /* Damit er genauso hoch ist wie der "Add to Cart" Button */
    width: 60px;  /* Etwas breiter für die Symmetrie */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05); /* Leichter Schimmer im Hintergrund */
    transition: var(--transition);
}

.wishlist-btn-pdp svg {
    width: 24px;
    height: 24px;
    fill: none;
    transition: var(--transition);
}

/* FIX: Pfad direkt ansprechen für garantierte Sichtbarkeit */
.wishlist-btn-pdp svg path {
    stroke: var(--text-main);
    stroke-width: 2px;
    transition: var(--transition);
}

.wishlist-btn-pdp:hover {
    border-color: var(--accent-purple);
    background: rgba(157, 0, 255, 0.1);
}

.wishlist-btn-pdp:hover svg path {
    stroke: var(--accent-purple);
}

.wishlist-btn-pdp.active {
    border-color: var(--accent-purple);
    background: rgba(157, 0, 255, 0.2);
}

.wishlist-btn-pdp.active svg path {
    stroke: var(--accent-purple);
    fill: var(--accent-purple); /* Das Herz wird ausgefüllt, wenn aktiv */
    filter: drop-shadow(0 0 5px var(--accent-purple));
}

.support-container { max-width: 600px; margin: 50px auto; padding: 0 20px; }
.form-group { margin-bottom: 20px; }
.form-input { width: 100%; background: var(--bg-surface); border: 1px solid #333; padding: 15px; color: white; font-family: var(--font-body); transition: var(--transition); }
.form-input:focus { outline: none; border-color: var(--accent-purple); box-shadow: 0 0 10px rgba(157, 0, 255, 0.2); }
.form-input.error { border-color: red; }
.form-input.valid { border-color: var(--accent-cyan); }

@keyframes shake { 10%, 90% { transform: translate3d(-1px, 0, 0); } 20%, 80% { transform: translate3d(2px, 0, 0); } 30%, 50%, 70% { transform: translate3d(-4px, 0, 0); } 40%, 60% { transform: translate3d(4px, 0, 0); } }
.shake { animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both; }

.drawer { position: fixed; top: 0; right: 0; width: 400px; height: 100%; background: var(--bg-surface); border-left: 1px solid var(--accent-purple); z-index: 2000; transform: translateX(100%); transition: transform 0.3s ease-in-out; display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-header { padding: 20px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-footer { padding: 20px; border-top: 1px solid #333; }
.cart-item { display: flex; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px solid #222; padding-bottom: 10px; }

.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(15px); z-index: 1999; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); }
.mobile-nav-overlay.open { transform: translateY(0); }
.mobile-nav-overlay a { font-family: var(--font-head); font-size: 2rem; color: var(--text-main); text-decoration: none; margin: 20px 0; transition: var(--transition); }
.mobile-nav-overlay a:hover, .mobile-nav-overlay a.active-nav-link { color: var(--accent-purple); text-shadow: 0 0 10px var(--accent-purple); }

.checkout-container { max-width: 800px; margin: 50px auto; }
.step-indicator { display: flex; justify-content: space-between; margin-bottom: 40px; }
.step { color: var(--text-muted); font-family: var(--font-head); }
.step.active { color: var(--accent-purple); text-shadow: 0 0 5px var(--accent-purple); }

.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(5px); z-index: 1500; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.active { opacity: 1; pointer-events: all; }
.overlay-content { background: var(--bg-surface); padding: 60px 40px; border: 1px solid var(--accent-purple); text-align: center; position: relative; width: 90%; max-width: 800px; }
.close-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; transition: 0.2s; }
.close-btn:hover { color: var(--accent-purple); }
.overlay .close-btn-large { position: absolute; top: 20px; right: 20px; font-size: 3rem; color: var(--accent-purple); }

#toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--glass); backdrop-filter: blur(10px); color: var(--text-main); padding: 15px 20px; border-radius: 5px; border: 1px solid var(--accent-cyan); box-shadow: 0 0 20px rgba(0, 224, 255, 0.2); font-family: var(--font-body); opacity: 0; transform: translateX(100%); transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.toast.show { opacity: 1; transform: translateX(0); }
.toast.hide { opacity: 0; transform: translateX(100%); }

.toggle { width: 40px; height: 20px; background: #333; border-radius: 10px; position: relative; cursor: pointer; transition: 0.3s; }
.toggle::after { content: ''; position: absolute; left: 2px; top: 2px; width: 16px; height: 16px; background: white; border-radius: 50%; transition: 0.3s; }
.toggle.active { background: var(--accent-purple); }
.toggle.active::after { left: 22px; }
.toggle-row { display: flex; justify-content: space-between; margin-bottom: 15px; width: 300px; }

.hidden { display: none; }
.full-width { width: 100%; }
.terminal-404 { font-family: monospace; color: var(--accent-cyan); padding: 50px; text-align: center; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.typing::after { content: '_'; animation: blink 1s infinite; margin-left: 2px; }

.search-results { margin-top: 20px; max-height: 300px; overflow-y: auto; text-align: left; }
.search-result-item { padding: 10px; border-bottom: 1px solid #333; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 10px; }
.search-result-item:hover { background: #222; color: var(--accent-purple); }
#search-input { width: 100%; padding: 20px; font-size: 1.5rem; background: rgba(0,0,0,0.5); border: 2px solid #333; border-radius: 5px; color: var(--accent-purple); font-family: var(--font-head); margin-bottom: 20px; transition: var(--transition); }
#search-input:focus { border-color: var(--accent-purple); outline: none; box-shadow: 0 0 15px rgba(157, 0, 255, 0.2); }

.cart-page-container { max-width: 1000px; margin: 0 auto; padding: 20px; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.cart-table th { text-align: left; padding: 15px; border-bottom: 1px solid var(--accent-purple); color: var(--accent-purple); }
.cart-table td { padding: 15px; border-bottom: 1px solid #333; }
.cart-qty-btn { background: #333; border: none; color: white; width: 25px; height: 25px; cursor: pointer; }
.cart-qty-btn:hover { background: var(--accent-purple); color: black; }
.cart-summary { text-align: right; background: var(--bg-surface); padding: 20px; border: 1px solid #333; }

.highlight { color: #fff; font-size: 1.1rem; margin-bottom: 15px; display: block; font-weight: 600; }

.specs-table { width: 100%; border-collapse: collapse; margin-top: 15px; font-size: 0.9rem; background: rgba(255,255,255,0.02); }
.specs-table td { padding: 10px; border-bottom: 1px solid #333; color: #aaa; }
.specs-table td:first-child { color: var(--accent-cyan); font-weight: bold; width: 40%; }
.spec-label { display: flex; align-items: center; }
.spec-icon { width: 1.2em; height: 1.2em; margin-right: 10px; fill: var(--text-muted); flex-shrink: 0; }

.compare-toggle { margin-top: 10px; background: transparent; border: 1px solid #333; color: #666; padding: 8px; width: 100%; cursor: pointer; font-size: 0.75rem; transition: 0.3s; font-family: var(--font-head); letter-spacing: 1px; }
.compare-toggle:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }
.compare-toggle.active { background: rgba(0, 224, 255, 0.1); border-color: var(--accent-cyan); color: var(--accent-cyan); }

.compare-bar { position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%); background: rgba(10, 10, 10, 0.95); border: 1px solid var(--accent-cyan); border-bottom: none; padding: 15px 40px; display: flex; align-items: center; gap: 30px; z-index: 2000; backdrop-filter: blur(10px); transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 15px 15px 0 0; box-shadow: 0 -5px 30px rgba(0, 224, 255, 0.15); }
.compare-bar.visible { bottom: 0; }

.fan-compare-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.fan-compare-table, .aio-compare-table, .case-compare-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.fan-compare-table th, .fan-compare-table td, .aio-compare-table th, .aio-compare-table td, .case-compare-table th, .case-compare-table td { padding: 20px; border: 1px solid #333; text-align: center; color: #ccc; }
.fan-compare-table th { text-align: left; color: var(--accent-cyan); width: 20%; background: rgba(255,255,255,0.02); }
.fan-compare-table td.highlight-cell { color: var(--accent-purple); font-weight: bold; }
.aio-compare-table th, .case-compare-table th { text-align: left; color: var(--accent-purple); width: 20%; background: rgba(255,255,255,0.02); }

footer { background: var(--bg-surface); border-top: 1px solid #333; padding: 50px 5%; margin-top: 50px; display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; position: relative; z-index: 10; }
footer h4 { color: var(--accent-purple); margin-bottom: 20px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; color: var(--text-muted); cursor: pointer; transition: 0.2s; font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 1px; }
footer li:hover { color: white; }
footer > div:not(.footer-bottom) { width: 250px; }
.footer-bottom { flex-basis: 100%; text-align: center; padding-top: 20px; border-top: 1px solid #222; color: #555; font-size: 0.8rem; margin-top: 20px; }

.payment-icons { display: flex; justify-content: center; align-items: center; gap: 30px; opacity: 0.4; }
.payment-icons svg { height: 24px; fill: var(--text-muted); transition: var(--transition); }
.payment-icons svg:hover { fill: var(--accent-cyan); color: var(--accent-cyan); filter: drop-shadow(0 0 8px var(--accent-cyan)); }

.mute-toggle { position: fixed; bottom: 20px; left: 20px; width: 40px; height: 40px; border-radius: 50%; background: var(--glass); border: 1px solid #444; cursor: pointer; z-index: 9998; display: flex; justify-content: center; align-items: center; transition: var(--transition); }
.mute-toggle:hover { border-color: var(--accent-cyan); }
.mute-toggle svg { width: 20px; height: 20px; fill: var(--text-muted); }

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-nav-toggle { display: block; }
    .category-layout { flex-direction: column; }
    .sidebar { width: 100%; }
    .drawer { width: 100%; }
    .hero h1 { font-size: 2.5rem; }
    .cart-table th:nth-child(2), .cart-table td:nth-child(2) { display: none; } 
}

.printable-form { display: none; }

/* --- Print Styles --- */
@media print {
    @page {
        margin: 2cm;
        size: auto;
    }

    /* Hide everything by default when printing mode is active */
    body.printing-mode > * {
        display: none !important;
    }

    /* Only show our temporary print container */
    body.printing-mode > #print-container-temp {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        background: white !important;
        color: black !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 12pt;
        line-height: 1.5;
        visibility: visible !important;
    }

    #print-container-temp h2 {
        font-size: 18pt;
        margin-bottom: 1cm;
        text-transform: uppercase;
        border-bottom: 2px solid black;
        padding-bottom: 10px;
    }

    #print-container-temp .print-lines { margin-top: 1cm; }
    #print-container-temp .print-line {
        display: flex;
        align-items: baseline;
        margin-bottom: 0.8cm;
    }
    #print-container-temp .print-line span { min-width: 150px; font-weight: bold; }
    #print-container-temp .print-line .line { flex: 1; border-bottom: 1px solid black; }
}