:root { --bg: #09090b; --glass: rgba(255,255,255,0.05); --txt: #fff; --neon: #00ff88; --accent: #00d2ff; --border: rgba(255,255,255,0.1); --switch-on: #2196F3; }
body { margin: 0; font-family: 'Vazirmatn'; background: var(--bg); color: var(--txt); min-height: 100vh; overflow-x: hidden; }
.bg-anim { position: fixed; inset: 0; background: radial-gradient(circle at top, #1c1c1c, #000); z-index: -1; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.switch { position: relative; display: inline-block; width: 50px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--switch-on); }
input:checked + .slider:before { transform: translateX(22px); }
.card { background: var(--glass); border: 1px solid var(--border); border-radius: 20px; padding: 20px; margin-bottom: 20px; backdrop-filter: blur(10px); transition: 0.3s; }
.card:hover { border-color: var(--neon); box-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.btn { background: var(--neon); border: none; padding: 12px; border-radius: 10px; font-weight: bold; cursor: pointer; color: #000; width: 100%; }
.btn-small { width: auto; padding: 5px 15px; font-size: 0.9rem; }
.inp, select { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid #444; color: #fff; border-radius: 10px; margin: 5px 0 15px 0; box-sizing: border-box; }
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
th { text-align: right; color: var(--accent); padding: 10px; border-bottom: 1px solid #444; }
td { padding: 10px; border-bottom: 1px solid #222; font-size: 0.9rem; }
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 999; justify-content: center; align-items: center; }
.modal-content { background: #111; padding: 30px; border-radius: 20px; width: 90%; max-width: 450px; border: 1px solid var(--border); }
header { text-align: center; margin-bottom: 40px; }
footer { background: #000; border-top: 1px solid #222; margin-top: 50px; padding: 30px 0; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.price-tag { color: var(--neon); font-size: 1.2rem; font-weight: bold; margin: 10px 0; }
.cat-bar { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 10px; }
.cat-btn { background: rgba(255,255,255,0.1); border: 1px solid var(--border); color: #fff; padding: 5px 15px; border-radius: 20px; cursor: pointer; white-space: nowrap; }
.cat-btn.active { background: var(--neon); color: #000; }
.payment-box { background: rgba(255,200,0,0.1); border: 1px dashed gold; padding: 15px; border-radius: 10px; text-align: center; margin-bottom: 20px; }
.card-number { font-size: 1.4rem; color: gold; letter-spacing: 2px; font-weight: bold; margin: 5px 0; }
.card img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; }
