/* TOASTER */
#toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 99999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.eyesys-toast { background: rgba(14, 16, 24, 0.95); border-left: 4px solid #00c6ff; border-radius: 8px; padding: 16px 20px; color: white; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(0, 198, 255, 0.1); backdrop-filter: blur(10px); transform: translateX(120%); opacity: 0; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); font-weight: 500; font-size: 14px; letter-spacing: 0.3px; pointer-events: auto; }
.eyesys-toast.show { transform: translateX(0); opacity: 1; }
.eyesys-toast.success { border-left-color: #00e676; }
.eyesys-toast.success i { color: #00e676; font-style: normal; }
.eyesys-toast.error { border-left-color: #ff3366; }
.eyesys-toast.error i { color: #ff3366; font-style: normal; }
.eyesys-toast.info { border-left-color: #00c6ff; }
.eyesys-toast.info i { color: #00c6ff; font-style: normal; }
.eyesys-toast i { font-size: 20px; }

/* PRELOADER */
#eyesys-preloader { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #080a0f; z-index: 999999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
#eyesys-preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-logo { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 8px; background: linear-gradient(135deg, #00c8ff 0%, #0055ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; display: inline-block; animation: pulse 1.5s infinite alternate; }
.preloader-logo::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #00c6ff, transparent); animation: scan 2s infinite linear; }
@keyframes pulse { 0% { opacity: 0.6; transform: scale(0.98); } 100% { opacity: 1; transform: scale(1.02); filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.3)); } }
@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* LIVE SEARCH */
.nav-search-container { position: relative; margin-right: 20px; list-style: none; }
.nav-search-input { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 200, 255, 0.2); border-radius: 20px; padding: 8px 16px 8px 36px; color: white; outline: none; transition: 0.3s; width: 220px; font-size: 13px; font-family: 'DM Sans', sans-serif; }
.nav-search-input:focus { width: 300px; border-color: #00c6ff; background: rgba(0, 200, 255, 0.05); box-shadow: 0 0 15px rgba(0, 198, 255, 0.15); }
.nav-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); opacity: 0.6; font-size: 14px; pointer-events: none; }
.live-search-results { position: absolute; top: calc(100% + 15px); right: 0; width: 360px; background: rgba(14, 16, 24, 0.98); backdrop-filter: blur(20px); border: 1px solid rgba(0, 200, 255, 0.3); border-radius: 12px; padding: 12px; display: none; flex-direction: column; gap: 8px; box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,0,0,0.5); z-index: 1000; max-height: 450px; overflow-y: auto; }
.live-search-results.active { display: flex; animation: slideDown 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.search-result-item { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 10px; cursor: pointer; transition: 0.2s; text-decoration: none; color: white; border: 1px solid transparent; background: rgba(255,255,255,0.02); }
.search-result-item:hover { background: rgba(0, 200, 255, 0.08); border-color: rgba(0, 200, 255, 0.3); transform: translateX(4px); }
.search-result-img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; background: white; padding: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.search-result-info { flex: 1; }
.search-result-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.search-result-price { font-size: 14px; color: #00c6ff; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.search-empty { text-align: center; padding: 25px; color: #6b7390; font-size: 14px; font-weight: 500; }
