/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.abaya-navbar {
	background: var(--abaya-header-bg);
	border-bottom: 1px solid var(--abaya-border);
	position: sticky;
	top: 0;
	z-index: 50;
}
.abaya-navbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
.abaya-navbar__logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}
.abaya-navbar__logo-text {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	color: var(--abaya-text);
	font-weight: 700;
}
.abaya-navbar__logo-sub {
	display: block;
	font-size: 0.625rem;
	color: var(--abaya-text-muted);
	letter-spacing: 0.05em;
	margin-top: -0.25rem;
}
.abaya-navbar__links {
	display: none;
	align-items: center;
	gap: 2rem;
}
@media (min-width: 768px) { .abaya-navbar__links { display: flex; } }
.abaya-navbar__link {
	font-size: 0.875rem;
	color: var(--abaya-text-light);
	transition: color var(--abaya-transition);
	padding-bottom: 0.25rem;
}
.abaya-navbar__link:hover,
.abaya-navbar__link.is-active {
	color: var(--abaya-primary);
}
.abaya-navbar__link.is-active {
	border-bottom: 2px solid var(--abaya-primary);
}
.abaya-navbar__icons {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
@media (min-width: 640px) { .abaya-navbar__icons { gap: 1rem; } }
.abaya-navbar__icon {
	color: var(--abaya-text-light);
	transition: color var(--abaya-transition);
	position: relative;
	display: flex;
	align-items: center;
}
.abaya-navbar__icon:hover { color: var(--abaya-primary); }
.abaya-navbar__badge {
	position: absolute;
	top: -0.5rem;
	inset-inline-end: -0.5rem;
	background: var(--abaya-primary);
	color: #fff;
	font-size: 0.625rem;
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.abaya-navbar__badge--wish { background: #f87171; }

/* Mobile menu toggle */
.abaya-navbar__hamburger {
	display: flex;
	color: var(--abaya-text-light);
}
@media (min-width: 768px) { .abaya-navbar__hamburger { display: none; } }
.abaya-navbar__hamburger:hover { color: var(--abaya-primary); }

/* Mobile menu */
.abaya-mobile-menu {
	display: none;
	padding-bottom: 1rem;
	border-top: 1px solid var(--abaya-border);
	padding-top: 1rem;
}
.abaya-mobile-menu.is-open { display: block; }
@media (min-width: 768px) { .abaya-mobile-menu { display: none !important; } }
.abaya-mobile-menu__link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 0.5rem;
	font-size: 0.875rem;
	color: var(--abaya-text-light);
	border-radius: var(--abaya-radius-sm);
	transition: all var(--abaya-transition);
}
.abaya-mobile-menu__link:hover,
.abaya-mobile-menu__link.is-active {
	color: var(--abaya-primary);
	background: var(--abaya-primary-light);
}
/* شارة عدد السلة في قائمة الجوال (نفس تحديث fragments سطح المكتب) */
.abaya-mobile-menu__link--cart {
	justify-content: flex-start;
	flex-wrap: nowrap;
}
.abaya-mobile-menu__link--cart .abaya-mobile-menu__cart-badge {
	position: static;
	inset: auto;
	top: auto;
	margin-inline-start: auto;
	flex-shrink: 0;
	min-width: 1.125rem;
	height: 1.125rem;
	width: auto;
	padding: 0 0.3rem;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
}

/* Desktop-only icons */
.abaya-navbar__icon--desktop { display: none; }
@media (min-width: 640px) { .abaya-navbar__icon--desktop { display: flex; } }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.abaya-footer {
	background: var(--abaya-footer-bg);
	color: #fff;
	padding-block: 3rem 1.5rem;
}
@media (min-width: 768px) {
	.abaya-footer {
		padding-block: 4rem 1.5rem;
	}
}
.abaya-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}
@media (min-width: 640px) { .abaya-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .abaya-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.abaya-footer__brand-name { font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.abaya-footer__brand-desc { color: #9ca3af; font-size: 0.875rem; line-height: 1.8; margin-bottom: 1rem; }
.abaya-footer__social { display: flex; gap: 0.75rem; }
.abaya-footer__social a {
	color: #9ca3af;
	transition: color var(--abaya-transition);
}
.abaya-footer__social a:hover { color: var(--abaya-primary); }
.abaya-footer__heading {
	font-size: 0.875rem;
	margin-bottom: 1rem;
	color: #fff;
	font-weight: 600;
}
.abaya-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.abaya-footer__link-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.abaya-footer__link {
	color: #9ca3af;
	font-size: 0.875rem;
	transition: color var(--abaya-transition);
}
.abaya-footer__link:hover { color: var(--abaya-primary); }
.abaya-footer__newsletter-desc { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1rem; }
.abaya-footer__newsletter-wrap { min-height: 4.25rem; }
.abaya-footer__newsletter-form { display: flex; }
.abaya-footer__newsletter-msg {
	font-size: 0.75rem;
	margin-top: 0.5rem;
	min-height: 1.25rem;
}
.abaya-footer__newsletter-msg--error { color: #f87171; }
.abaya-footer__newsletter-msg--success { color: #4ade80; }
.abaya-footer__newsletter-input {
	background: #1f2937;
	border: 1px solid #374151;
	color: #fff;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	border-radius: 0 var(--abaya-radius-sm) var(--abaya-radius-sm) 0;
	flex: 1;
	outline: none;
	transition: border-color var(--abaya-transition);
}
.abaya-footer__newsletter-input::placeholder { color: #6b7280; }
.abaya-footer__newsletter-input:focus { border-color: var(--abaya-primary); }
.abaya-footer__newsletter-btn {
	background: var(--abaya-primary);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: var(--abaya-radius-sm) 0 0 var(--abaya-radius-sm);
	font-size: 0.875rem;
	transition: background var(--abaya-transition);
}
.abaya-footer__newsletter-btn:hover { background: var(--abaya-primary-hover); }
.abaya-footer__bottom {
	border-top: 1px solid rgba(31, 41, 55, 0.85);
	padding-top: 1.5rem;
	text-align: center;
}
.abaya-footer__copyright { color: #6b7280; font-size: 0.875rem; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.abaya-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	border-radius: var(--abaya-radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.625rem 1.25rem;
	transition: all var(--abaya-transition);
	line-height: 1;
	white-space: nowrap;
}
.abaya-btn--primary {
	background: var(--abaya-primary);
	color: #fff;
}
.abaya-btn--primary:hover {
	background: var(--abaya-primary-hover);
	box-shadow: 0 4px 12px rgba(204,153,102,0.3);
}
.abaya-btn--outline {
	border: 1px solid #e5e7eb;
	color: #9ca3af;
	background: transparent;
}
.abaya-btn--outline:hover {
	border-color: var(--abaya-primary);
	color: var(--abaya-primary);
}
.abaya-btn--sm { padding: 0.5rem 0.625rem; font-size: 0.75rem; }
.abaya-btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.abaya-btn--block { width: 100%; }

/* ═══════════════════════════════════════════════
   PRODUCT CARD — يطابق ProductCard من التصميم
═══════════════════════════════════════════════ */

/* Hide WooCommerce "View Cart" link */
a.added_to_cart { display: none !important; }

.abaya-product-card {
	cursor: pointer;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.abaya-product-card:hover {
	transform: translateY(-4px);
}

/* ─── منطقة الصورة ─── */
.abaya-product-card__img-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	background: #F5EFE6;
	aspect-ratio: 3 / 4;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	margin-bottom: 0.75rem;
	transition: box-shadow 0.5s ease;
	text-decoration: none;
}
.abaya-product-card:hover .abaya-product-card__img-wrap {
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.abaya-product-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
	display: block;
}
.abaya-product-card:hover .abaya-product-card__img {
	transform: scale(1.08);
}

/* Shimmer overlay */
.abaya-product-card__shimmer {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
	opacity: 0;
	transform: translateX(-100%);
	transition: opacity 0s;
	pointer-events: none;
}
.abaya-product-card:hover .abaya-product-card__shimmer {
	opacity: 1;
	animation: abaya-shimmer-sweep 1.2s ease-in-out;
}
@keyframes abaya-shimmer-sweep {
	from { transform: translateX(-100%); }
	to   { transform: translateX(100%); }
}

/* تدرج الأسفل */
.abaya-product-card__grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26,23,20,0.2) 0%, transparent 50%);
	pointer-events: none;
}

/* ─── زر المفضلة ─── */
.abaya-product-card__fav {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 6px rgba(0,0,0,0.14);
	z-index: 10;
	transition: transform 0.25s, background 0.25s, opacity 0.25s;
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}
.abaya-product-card__fav:hover {
	transform: scale(1.12);
	background: rgba(247,237,237,1);
}
/* على الشاشات الكبيرة نُظهر الزر فقط عند hover أو is-active */
@media (hover: hover) {
	.abaya-product-card__fav {
		opacity: 0;
	}
	.abaya-product-card:hover .abaya-product-card__fav,
	.abaya-product-card__fav.is-active {
		opacity: 1;
	}
}

/* ─── الشارات ─── */
.abaya-product-card__badges {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	z-index: 5;
}
.abaya-pc-badge {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	font-size: 0.58rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.abaya-pc-badge--new  { background: #1A1714; color: #fff; }
.abaya-pc-badge--sale { background: var(--abaya-primary); color: #fff; }
.abaya-pc-badge--best { background: #B76E79; color: #fff; }

/* ─── معلومات المنتج ─── */
.abaya-product-card__info {
	padding: 0 0.25rem;
}
.abaya-product-card__cat {
	font-size: 0.67rem;
	color: #9B9189;
	margin-bottom: 0.125rem;
}
.abaya-product-card__name {
	font-size: 0.82rem;
	color: #1A1714;
	margin-bottom: 0.375rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.3s;
}
.abaya-product-card:hover .abaya-product-card__name,
.abaya-product-card__img-wrap:hover ~ .abaya-product-card__info .abaya-product-card__name {
	color: #C4A882;
}
.abaya-product-card__info a:hover .abaya-product-card__name {
	color: #C4A882;
}
.abaya-product-card__info a { text-decoration: none; }

/* السعر */
.abaya-product-card__price-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.375rem;
}
.abaya-product-card__price {
	font-family: var(--abaya-font-display, 'Amiri', serif);
	font-size: 0.88rem;
	font-weight: 600;
	color: #1A1714;
}
.abaya-product-card__price .woocommerce-Price-amount,
.abaya-product-card__price bdi { color: inherit; }
.abaya-product-card__price-old {
	font-size: 0.72rem;
	color: #9B9189;
	text-decoration: line-through;
}
.abaya-product-card__price-old .woocommerce-Price-amount,
.abaya-product-card__price-old bdi { color: inherit; }

/* التقييم */
.abaya-product-card__rating {
	display: flex;
	align-items: center;
	gap: 0.1rem;
}
.abaya-product-card__rev-cnt {
	font-size: 0.58rem;
	color: #9B9189;
	margin-inline-start: 0.2rem;
}

/* نقاط الألوان في بطاقة المنتج */
.abaya-product-card__colors {
	display: flex;
	align-items: center;
	gap: 0.3rem;
	margin-top: 0.4rem;
}
.abaya-product-card__color-dot {
	width: 0.875rem;
	height: 0.875rem;
	border-radius: 50%;
	display: inline-block;
	border: 1.5px solid rgba(0,0,0,0.1);
	flex-shrink: 0;
	transition: transform 0.15s;
}
.abaya-product-card__color-dot:hover {
	transform: scale(1.2);
}
.abaya-product-card__color-more {
	font-size: 0.58rem;
	color: #9B9189;
}

/* Products grid */
.abaya-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
@media (min-width: 640px) {
	.abaya-products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
	.abaya-products-grid { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════ */
.abaya-input {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	outline: none;
	transition: border-color var(--abaya-transition);
	background: #fff;
}
.abaya-input:focus { border-color: var(--abaya-primary); }
.abaya-input::placeholder { color: #d1d5db; }

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.abaya-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--abaya-text-muted);
	padding: 1rem 0;
}
.abaya-breadcrumb a { color: var(--abaya-text-light); transition: color var(--abaya-transition); }
.abaya-breadcrumb a:hover { color: var(--abaya-primary); }
.abaya-breadcrumb__sep { color: #d1d5db; }
.abaya-breadcrumb__current { color: var(--abaya-text); font-weight: 500; }

/* ═══════════════════════════════════════════════
   SEARCH OVERLAY (مطابق تصميم SearchOverlay.tsx)
═══════════════════════════════════════════════ */
.abaya-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: none;
	/* الحاوية كتلة؛ الخلفية مطلقة فاللوحة تبقى من أعلى الشاشة (مثل التصميم) */
}
.abaya-search-overlay.is-open { display: block; }
.abaya-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.abaya-search-overlay__sheet {
	position: relative;
	z-index: 1;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	background: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	animation: abaya-searchSlideDown 0.25s ease-out;
}
@keyframes abaya-searchSlideDown {
	from {
		opacity: 0;
		transform: translateY(-1.25rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.abaya-search-overlay__inner {
	max-width: 48rem;
	margin-inline: auto;
	padding: 1.5rem 1rem 2rem;
}
@media (min-width: 640px) {
	.abaya-search-overlay__inner { padding-inline: 1.5rem; }
}
.abaya-search-overlay__toolbar {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.abaya-search-overlay__field-wrap {
	position: relative;
	flex: 1;
	min-width: 0;
}
.abaya-search-overlay__field-icon {
	position: absolute;
	inset-inline-end: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	pointer-events: none;
}
.abaya-search-overlay__input {
	width: 100%;
	border: 0;
	border-radius: 1rem;
	background: #f9fafb;
	padding: 1rem 1.25rem;
	padding-inline-end: 2.75rem;
	font-size: 0.875rem;
	font-family: inherit;
	color: var(--abaya-text);
	outline: none;
	box-shadow: 0 0 0 1px transparent;
	transition: box-shadow 0.2s ease;
}
.abaya-search-overlay__input::placeholder {
	color: #9ca3af;
}
.abaya-search-overlay__input:focus {
	box-shadow: 0 0 0 2px rgba(204, 153, 102, 0.25);
}
.abaya-search-overlay__close {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0.75rem;
	background: #f9fafb;
	color: #9ca3af;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.abaya-search-overlay__close:hover {
	background: #f3f4f6;
	color: #4b5563;
}
.abaya-search-overlay__body { min-height: 4rem; }
.abaya-search-overlay__default.is-hidden,
.abaya-search-overlay__results-panel.is-hidden { display: none !important; }

/* أقسام افتراضية */
.abaya-search-overlay__section {
	margin-bottom: 2rem;
}
.abaya-search-overlay__section:last-child { margin-bottom: 0; }
.abaya-search-overlay__section-title {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	color: #9ca3af;
	margin-bottom: 0.75rem;
	font-weight: 500;
}
.abaya-search-overlay__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.abaya-search-overlay__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.5rem 1rem;
	border: 0;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.abaya-search-overlay__tag--recent {
	background: #f9fafb;
	color: #4b5563;
}
.abaya-search-overlay__tag--recent:hover { background: #f3f4f6; }
.abaya-search-overlay__tag--trend {
	background: rgba(204, 153, 102, 0.08);
	color: var(--abaya-primary);
}
.abaya-search-overlay__tag--trend:hover {
	background: rgba(204, 153, 102, 0.14);
}
.abaya-search-overlay__suggested-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}
@media (min-width: 640px) {
	.abaya-search-overlay__suggested-grid { grid-template-columns: repeat(4, 1fr); }
}
.abaya-search-overlay__suggest-card {
	display: block;
	text-align: center;
	padding: 0.75rem;
	border-radius: 0.75rem;
	background: #f9fafb;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s ease;
}
.abaya-search-overlay__suggest-card:hover { background: #f3f4f6; }
.abaya-search-overlay__suggest-img-wrap {
	width: 4rem;
	height: 4rem;
	margin: 0 auto 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.abaya-search-overlay__suggest-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.abaya-search-overlay__suggest-name {
	font-size: 0.75rem;
	color: #374151;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.abaya-search-overlay__suggest-card:hover .abaya-search-overlay__suggest-name {
	color: var(--abaya-primary);
}
.abaya-search-overlay__suggest-price {
	font-size: 0.75rem;
	color: var(--abaya-primary);
	margin-top: 0.25rem;
}
.abaya-search-overlay__suggest-price del,
.abaya-search-overlay__suggest-price ins {
	font-size: inherit;
}

/* نتائج البحث */
.abaya-search-overlay__results-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}
.abaya-search-overlay__results-title {
	font-size: 0.875rem;
	color: #1f2937;
	font-weight: 600;
}
.abaya-search-overlay__results-count { color: #9ca3af; font-weight: 400; }
.abaya-search-overlay__view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	color: var(--abaya-primary);
	text-decoration: none;
}
.abaya-search-overlay__view-all:hover { text-decoration: underline; }
.abaya-search-overlay__results-list { display: flex; flex-direction: column; gap: 0.5rem; }
.abaya-search-overlay__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem;
	border-radius: 0.75rem;
	text-decoration: none;
	color: inherit;
	transition: background var(--abaya-transition);
}
.abaya-search-overlay__item:hover { background: #f9fafb; }
.abaya-search-overlay__item-media {
	width: 3.5rem;
	height: 3.5rem;
	flex-shrink: 0;
	border-radius: 0.5rem;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.abaya-search-overlay__item img {
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
}
.abaya-search-overlay__item-body { flex: 1; min-width: 0; }
.abaya-search-overlay__item-name {
	font-size: 0.875rem;
	color: var(--abaya-text);
	font-weight: 500;
}
.abaya-search-overlay__item:hover .abaya-search-overlay__item-name {
	color: var(--abaya-primary);
}
.abaya-search-overlay__item-cat {
	font-size: 0.75rem;
	color: #9ca3af;
	margin-top: 0.15rem;
}
.abaya-search-overlay__item-price {
	flex-shrink: 0;
	text-align: start;
	font-size: 0.875rem;
	color: var(--abaya-primary);
}
.abaya-search-overlay__item-price del { font-size: 0.65rem; color: #9ca3af; display: block; }
.abaya-search-overlay__more-results {
	display: block;
	text-align: center;
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 0.75rem;
	background: #f9fafb;
	font-size: 0.875rem;
	color: var(--abaya-primary);
	text-decoration: none;
	transition: background 0.2s ease;
}
.abaya-search-overlay__more-results:hover {
	background: rgba(204, 153, 102, 0.08);
}
.abaya-search-overlay__empty {
	text-align: center;
	padding: 2.5rem 1rem;
	color: var(--abaya-text-muted);
}
.abaya-search-overlay__empty-icon {
	margin: 0 auto 1rem;
	color: #e5e7eb;
}
.abaya-search-overlay__empty-title {
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 0.25rem;
}
.abaya-search-overlay__empty-hint {
	font-size: 0.75rem;
	color: #9ca3af;
}
.abaya-search-overlay__loading {
	text-align: center;
	padding: 2rem;
	font-size: 0.875rem;
	color: var(--abaya-text-muted);
}

/* ═══════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════ */
.abaya-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}
.abaya-pagination a,
.abaya-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--abaya-radius-sm);
	font-size: 0.875rem;
	transition: all var(--abaya-transition);
	border: 1px solid var(--abaya-border);
}
.abaya-pagination a:hover { border-color: var(--abaya-primary); color: var(--abaya-primary); }
.abaya-pagination .current {
	background: var(--abaya-primary);
	color: #fff;
	border-color: var(--abaya-primary);
}

/* ═══════════════════════════════════════════════
   CARDS / MISC
═══════════════════════════════════════════════ */
.abaya-card {
	background: #fff;
	border-radius: var(--abaya-radius);
	border: 1px solid var(--abaya-border);
	overflow: hidden;
}
.abaya-card__header {
	padding: 1.25rem;
	border-bottom: 1px solid var(--abaya-border);
}
.abaya-card__body { padding: 1.25rem; }

.abaya-empty {
	text-align: center;
	padding: 4rem 1rem;
}
.abaya-empty__icon { font-size: 3rem; margin-bottom: 1rem; color: var(--abaya-text-muted); }
.abaya-empty__text { color: var(--abaya-text-light); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════
   Toast Notifications
   ═══════════════════════════════════════ */
.abaya-toast-wrap {
	position: fixed;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	pointer-events: none;
	width: 100%;
	max-width: 24rem;
	padding: 0 1rem;
}
.abaya-toast {
	pointer-events: auto;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background: #fff;
	border: 1px solid #f3f4f6;
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	font-size: 0.8125rem;
	color: var(--abaya-text, #1f2937);
	width: 100%;
	animation: abaya-toast-in 0.3s ease;
}
.abaya-toast.is-hiding { animation: abaya-toast-out 0.25s ease forwards; }

.abaya-toast--success { border-color: #d1fae5; }
.abaya-toast--success .abaya-toast__icon { color: #22c55e; }
.abaya-toast--error { border-color: #fee2e2; }
.abaya-toast--error .abaya-toast__icon { color: #ef4444; }
.abaya-toast--info { border-color: #dbeafe; }
.abaya-toast--info .abaya-toast__icon { color: #3b82f6; }

.abaya-toast__icon { flex-shrink: 0; }
.abaya-toast__msg { flex: 1; line-height: 1.5; }

@keyframes abaya-toast-in {
	from { opacity: 0; transform: translateY(-1rem); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes abaya-toast-out {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(-0.5rem); }
}

/* Floating contact (dashboard: تواصل معنا) */
.abaya-float-actions {
	position: fixed;
	z-index: 9998;
	left: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column-reverse;
	gap: 0.625rem;
	pointer-events: none;
}
.abaya-float-actions__btn {
	pointer-events: auto;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.abaya-float-actions__btn:hover {
	transform: scale(1.06);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}
.abaya-float-actions__btn--wa {
	background: #25d366;
}
.abaya-float-actions__btn--call {
	background: var(--abaya-primary, #cc9966);
}
@media (min-width: 768px) {
	.abaya-float-actions {
		left: 1.5rem;
		bottom: 1.5rem;
	}
}
