		.search-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; align-items: flex-start; justify-content: center; }
		.search-modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px); }
		.search-modal-content { position: absolute; top: 30%; transform: translateY(-50%); width: 90%; max-width: 600px; border-radius: 12px; }
		@media (min-width: 769px) { .search-modal-content { animation: slideDown 0.3s ease-out; } @keyframes slideDown { from { opacity: 0; transform: translateY(-80px); } to { opacity: 1; transform: translateY(-50%); } } }
		.search-modal-body { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #d5d5d5; padding: 5px 5px 5px 20px; transition: border-color 0.3s; }
		.search-modal-input { flex: 1; border: none; outline: none; font-size: 18px; padding: 10px 0; background: transparent; color: white; }
		.search-modal-input::placeholder { color: #999; }
		.search-modal-btn { width: 30px; height: 30px; border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; flex-shrink: 0; }
		.search-modal-btn svg { width: 30px; height: 30px; }
		@media (max-width: 768px) { .search-modal { align-items: center; } .search-modal-content { padding: 30px 20px; position: relative; top: -20%; transform: none; } .search-modal-input { font-size: 16px; } }
		body.search-modal-open { overflow: hidden; }
