@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Orbitron:wght@700&display=swap');

:root {
    --bg: #050505;
    --card: #0f0f0f;
    --accent: #ff003c;
    --border: #1a1a1a;
    --text-muted: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none !important; }
body { background: var(--bg); color: #fff; font-family: 'Inter', sans-serif; line-height: 1.6; }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: #000; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.nav-logo { font-family: 'Orbitron'; font-size: 1.5rem; font-weight: 900; color: #fff !important; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: var(--text-muted) !important; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: #fff !important; }

.page-container { max-width: 1200px; margin: 50px auto; padding: 0 20px; }

/* Product View & Options */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 50px; }
.swatch-container { display: flex; gap: 15px; margin: 20px 0; }
.swatch { width: 40px; height: 40px; border-radius: 50%; cursor: pointer; border: 3px solid #000; transition: 0.3s; outline: 1px solid #333; }
.swatch.active { border-color: #fff; transform: scale(1.2); outline: 2px solid var(--accent); }

.qty-box { display: flex; align-items: center; gap: 15px; margin: 25px 0; }
.qty-btn { width: 40px; height: 40px; background: #111; border: 1px solid #333; color: #fff; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.qty-btn:hover { background: var(--accent); }
#qty-input { width: 60px; height: 40px; background: #000; border: 1px solid #333; color: #fff; text-align: center; font-weight: 700; }

.btn-order { background: var(--accent); color: #fff !important; padding: 20px; width: 100%; border: none; border-radius: 8px; font-weight: 900; font-size: 1rem; text-transform: uppercase; cursor: pointer; transition: 0.3s; display: block; text-align: center; }
.btn-order:hover { background: #fff; color: #000 !important; }

/* Forms */
input { width: 100%; padding: 15px; background: #0a0a0a; border: 1px solid #222; color: #fff; margin-bottom: 15px; border-radius: 8px; font-family: inherit; }
input:focus { border-color: var(--accent); outline: none; }

.captcha-row { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
#captcha-img { border-radius: 8px; border: 1px solid #333; cursor: pointer; }