/* =========================================================
   Basrawe Identity System — يُحمَّل في كل صفحات الموقع.
   الألوان الفعلية تُحقن كـ Inline Style فوق هذا الملف حسب
   اختيار مدير الموقع من تبويب "هوية بصراوي"؛ القيم هنا مجرد
   احتياط (Fallback) بالهوية الرسمية.
   ========================================================= */

:root {
	--basrawe-primary: #135A73;   /* أزرق شط العرب */
	--basrawe-secondary: #4C7A52; /* أخضر النخيل */
	--basrawe-accent: #B08355;    /* بني الشناشيل */
}

/* ---------- بوابة بصراوي (القائمة البصرية) ---------- */
.basrawe-visual-nav {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.basrawe-visual-nav-track {
	display: flex;
	gap: 2px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 8px 12px;
	max-width: 1440px;
	margin: 0 auto;
}
.basrawe-visual-nav-track::-webkit-scrollbar { display: none; }

.basrawe-visual-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex: 0 0 auto;
	min-width: 62px;
	padding: 6px 8px;
	border-radius: 10px;
	text-decoration: none;
	color: #4b524e;
	transition: background .15s ease, color .15s ease;
}
.basrawe-visual-nav-item:hover,
.basrawe-visual-nav-item:focus-visible {
	background: rgba(0, 0, 0, 0.045);
	color: var(--basrawe-primary);
}
.basrawe-visual-nav-item:focus-visible {
	outline: 2px solid var(--basrawe-primary);
	outline-offset: 2px;
}
.basrawe-visual-nav-icon { display: flex; color: inherit; }
.basrawe-visual-nav-icon svg { width: 20px; height: 20px; }
.basrawe-visual-nav-label { font-size: 10.5px; font-weight: 700; white-space: nowrap; }

@media (min-width: 700px) {
	.basrawe-visual-nav-item { flex-direction: row; gap: 7px; min-width: auto; padding: 7px 12px; }
	.basrawe-visual-nav-label { font-size: 12.5px; }
	.basrawe-visual-nav-icon svg { width: 18px; height: 18px; }
}

/* ---------- زخارف/Watermarks خفيفة جداً (تُستخدم في أماكن مختارة فقط) ---------- */
.basrawe-watermark {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}
.basrawe-watermark-palm { width: 240px; height: 240px; opacity: .07; }
.basrawe-watermark-wave { width: 100%; height: 36px; opacity: .18; }

@media (prefers-reduced-motion: reduce) {
	.basrawe-visual-nav-item { transition: none; }
}
