/* ═══════════════════════════════════════════════════════════════
   Souq Aarsal — Clean retail system (Bacola-inspired)
   Loads last. White, structured, friendly grocery storefront.
   ═══════════════════════════════════════════════════════════════ */

/* ── Scroll progress ── */
.sa-scroll-progress {
	position: fixed;
	inset-block-start: 0;
	inset-inline-start: 0;
	height: 3px;
	width: 0;
	z-index: 999;
	background: linear-gradient(90deg, var(--sa-emerald), var(--sa-yellow));
	transition: width 0.1s linear;
	pointer-events: none;
}

/* ── Page background: clean, mostly white ── */
body {
	background: var(--sa-bg);
	color: var(--sa-text);
	font-weight: 500;
}
.sa-aurora { display: none; }

/* Custom scrollbar */
@media (pointer: fine) {
	*::-webkit-scrollbar { width: 10px; height: 10px; }
	*::-webkit-scrollbar-thumb {
		background: var(--sa-emerald);
		border-radius: 999px;
		border: 2px solid transparent;
		background-clip: padding-box;
	}
	*::-webkit-scrollbar-track { background: transparent; }
}

/* ═══ Buttons ═══ */
.sa-btn, .btn {
	font-family: var(--sa-font);
	font-weight: 700;
	letter-spacing: normal;
	border-radius: var(--sa-radius-pill);
	padding: 0.8rem 1.6rem;
	transition: transform 0.25s var(--sa-ease-out), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.sa-btn--primary, .btn--primary {
	background: linear-gradient(135deg, var(--sa-emerald), var(--sa-emerald-dark));
	color: #fff;
	box-shadow: 0 10px 24px -12px var(--sa-emerald-glow);
}
.sa-btn--primary:hover, .btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px -12px var(--sa-emerald-glow);
	color: #fff;
}
.btn--view-all {
	background: transparent;
	border: 1.5px solid var(--sa-border-strong);
	color: var(--sa-heading);
	font-weight: 700;
	padding: 0.55rem 1.2rem;
	font-size: 0.85rem;
}
.btn--view-all:hover {
	border-color: var(--sa-emerald);
	background: var(--sa-emerald);
	color: #fff;
	transform: none;
}
.btn--whatsapp, .sa-btn--whatsapp {
	background: #25d366;
	color: #fff;
}

/* Add-to-cart — Bacola yellow → green on hover */
.btn--cart {
	background: var(--sa-yellow);
	color: #2a2118;
	font-weight: 800;
	border-radius: 6px;
	width: 100%;
	box-shadow: none;
	border: none;
}
.btn--cart:hover {
	background: var(--sa-emerald);
	color: #fff;
	transform: none;
}
.btn--cart:disabled { background: #e7eaee; color: #9aa3ad; }

/* ═══ Section rhythm + headers ═══ */
.souq-section { padding: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem) 0; }
.souq-section:nth-child(even) { background: transparent; }

.souq-section__header--row {
	align-items: center;
	border-block-end: 1px solid var(--sa-border);
	padding-block-end: 1rem;
	margin-bottom: 1.5rem;
}
.souq-section__eyebrow {
	display: none;
}
.souq-section__title {
	font-family: var(--sa-font-display);
	font-size: clamp(1.3rem, 1.05rem + 1vw, 1.85rem);
	font-weight: 800;
	color: var(--sa-heading);
	padding-block-end: 0;
}
.souq-section__title::after { display: none; }
.souq-section__desc {
	color: var(--sa-muted);
	font-size: 0.88rem;
	margin-top: 0.35rem;
	font-weight: 500;
}

/* ═══ Header ═══ */
.sa-header {
	background: #fff;
	border-block-end: 1px solid var(--sa-border);
}
.sa-header.is-scrolled {
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 6px 20px -12px rgba(16, 24, 40, 0.25);
}
.sa-header__top { background: var(--sa-navy); }
.site-title {
	font-family: var(--sa-font-display);
	font-weight: 900;
	background: linear-gradient(120deg, var(--sa-emerald-deep), var(--sa-emerald));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.sa-logo,
.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	background: transparent !important;
	box-shadow: none !important;
}
.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}
/* Give the brand column enough room for the stacked logo (icon + text) */
.sa-header__main-inner { grid-template-columns: minmax(180px, 260px) 1fr auto !important; }
@media (max-width: 768px) {
	.sa-header__main-inner { grid-template-columns: 1fr auto !important; }
}
.sa-logo__img,
.site-branding .custom-logo,
.site-branding .custom-logo-link img,
.site-branding img.custom-logo {
	width: clamp(130px, 14vw, 200px) !important;
	height: auto !important;
	max-width: none !important;
	max-height: 96px !important;
	min-height: 0 !important;
	object-fit: contain;
	display: block;
	background: transparent !important;
}
@media (max-width: 768px) {
	.sa-logo__img,
	.site-branding .custom-logo,
	.site-branding .custom-logo-link img,
	.site-branding img.custom-logo {
		width: clamp(110px, 36vw, 160px) !important;
		max-height: 76px !important;
	}
}

/* Compact, balanced header — fixed padding (no shrink on scroll = no shake) */
.sa-header__main-inner { padding-block: 0.7rem; gap: 1.25rem; }
.sa-header__actions { gap: 0.5rem; }
.sa-header__wa {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(37, 211, 102, 0.12); color: #1faa51;
	transition: background 0.2s ease, transform 0.2s var(--sa-ease-out);
}
.sa-header__wa:hover { background: #25d366; color: #fff; transform: translateY(-2px); }

/* Slim non-repeating announcement bar */
.sa-header__top { background: var(--sa-navy); }
.sa-header__top-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sa-topbar {
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
	margin: 0; color: rgba(255, 255, 255, 0.9); font-size: 0.8rem; font-weight: 600;
}
.sa-topbar__dot { color: var(--sa-lime); }
.sa-header__top-links { display: flex; align-items: center; gap: 1rem; }
.sa-header__top-links a { color: rgba(255, 255, 255, 0.78); font-size: 0.8rem; }
.sa-header__top-links a:hover { color: #fff; }
@media (max-width: 768px) {
	.sa-header__top-links { display: none; }
	.sa-topbar { justify-content: center; width: 100%; font-size: 0.72rem; gap: 0.45rem; }
	.sa-header__top-inner { justify-content: center; }
}

/* Product fallback image fills like a real photo */
.souq-product-card__fallback-img {
	width: 100%; height: 100%;
	object-fit: contain;
	display: block;
}

/* ═══ Category tiles (real-image carousel) ═══ */
.souq-cats__scroller {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
}
.souq-cat-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.55rem;
	padding: 1.1rem 0.75rem 1rem;
	background: #fff;
	border: 1px solid var(--sa-border);
	border-radius: var(--sa-radius);
	transition: transform 0.3s var(--sa-ease-out), box-shadow 0.3s ease, border-color 0.25s ease;
}
.souq-cat-tile:hover {
	transform: translateY(-5px);
	box-shadow: var(--sa-shadow-sm);
	border-color: rgba(59, 183, 126, 0.5);
}
.souq-cat-tile__media {
	width: 92px; height: 92px;
	border-radius: 50%;
	background: var(--sa-surface-2);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.souq-cat-tile__media .souq-cat-tile__img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.4s var(--sa-ease-out);
}
.souq-cat-tile:hover .souq-cat-tile__img { transform: scale(1.08); }
.souq-cat-tile__emoji { font-size: 2rem; }
.souq-cat-tile__name { font-family: var(--sa-font-display); font-weight: 700; font-size: 0.9rem; color: var(--sa-heading); }
.souq-cat-tile__count { font-size: 0.75rem; color: var(--sa-muted); font-weight: 600; }
@media (max-width: 900px) {
	.souq-cats__scroller {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 0.75rem;
		padding-bottom: 0.5rem;
		scrollbar-width: none;
	}
	.souq-cats__scroller::-webkit-scrollbar { display: none; }
	.souq-cat-tile { flex: 0 0 132px; scroll-snap-align: start; }
}

/* ═══ Benefits section (real media + clean rows) ═══ */
.souq-benefits__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}
.souq-benefits__media {
	border-radius: var(--sa-radius-lg);
	overflow: hidden;
	box-shadow: var(--sa-shadow);
	aspect-ratio: 4 / 3;
}
.souq-benefits__media img { width: 100%; height: 100%; object-fit: cover; }
.souq-benefits__list { display: grid; gap: 1rem; margin: 1.25rem 0 1.5rem; }
.souq-benefit { display: flex; align-items: flex-start; gap: 0.9rem; }
.souq-benefit__icon {
	flex-shrink: 0;
	width: 48px; height: 48px; border-radius: 14px;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(59, 183, 126, 0.12); color: var(--sa-emerald-deep);
}
.souq-benefit strong { display: block; font-family: var(--sa-font-display); font-weight: 700; color: var(--sa-heading); margin-bottom: 0.15rem; }
.souq-benefit p { color: var(--sa-muted); font-size: 0.88rem; margin: 0; }
@media (max-width: 800px) {
	.souq-benefits__inner { grid-template-columns: 1fr; }
	.souq-benefits__media { aspect-ratio: 16 / 9; }
}

/* ═══ Flash promo strip with image ═══ */
.sa-flash__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	color: #fff;
}
.sa-flash__media {
	width: 130px; height: 130px;
	border-radius: var(--sa-radius);
	background: rgba(255, 255, 255, 0.96);
	overflow: hidden;
	flex-shrink: 0;
}
.sa-flash__media img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.sa-flash__content { min-width: 0; }
.sa-flash__title { color: #fff; }
.sa-flash__desc { color: rgba(255, 255, 255, 0.85); margin-top: 0.25rem; }
.sa-flash__aside { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
@media (max-width: 820px) {
	.sa-flash__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
	.sa-flash__aside { width: 100%; }
}
@media (max-width: 480px) {
	.sa-flash__media { display: none; }
}

/* ═══ Shop hero (matches home hero) ═══ */
.souq-shop-banner {
	position: relative;
	overflow: hidden;
	color: #fff;
	min-height: clamp(240px, 30vw, 340px);
	display: flex;
	align-items: center;
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
	background: var(--sa-navy);
}
.souq-shop-banner::before {
	content: "";
	position: absolute; inset: 0; z-index: 0;
	background: var(--shop-banner-img, none) center / cover no-repeat;
	transform: scale(1.02);
}
.souq-shop-banner::after {
	content: "";
	position: absolute; inset: 0; z-index: 0;
	background:
		linear-gradient(105deg, rgba(8, 30, 20, 0.84) 0%, rgba(8, 30, 20, 0.52) 45%, rgba(8, 30, 20, 0.16) 76%),
		linear-gradient(180deg, rgba(8, 30, 20, 0.16) 0%, rgba(8, 30, 20, 0.46) 100%);
}
html[dir="rtl"] .souq-shop-banner::after {
	background:
		linear-gradient(255deg, rgba(8, 30, 20, 0.84) 0%, rgba(8, 30, 20, 0.52) 45%, rgba(8, 30, 20, 0.16) 76%),
		linear-gradient(180deg, rgba(8, 30, 20, 0.16) 0%, rgba(8, 30, 20, 0.46) 100%);
}
.souq-shop-banner__inner { position: relative; z-index: 1; text-align: start; }
.souq-shop-banner__title {
	font-family: var(--sa-font-display);
	font-weight: 800;
	font-size: clamp(1.85rem, 1.3rem + 2.4vw, 2.9rem);
	color: #fff;
	line-height: 1.2;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.souq-shop-banner__meta {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(0.95rem, 2vw, 1.12rem);
	margin-top: 0.45rem;
	max-width: 560px;
}
.souq-shop-banner__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.25rem;
}
.souq-shop-banner__trust li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.95rem;
	border-radius: var(--sa-radius-pill);
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.26);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.souq-shop-banner__trust li::before {
	content: "";
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--sa-lime);
}

.sa-header__search .souq-search-form {
	border-radius: var(--sa-radius-pill);
	background: var(--sa-surface-2);
	border: 1.5px solid var(--sa-border);
}
.sa-header__search .souq-search-form:focus-within {
	background: #fff;
	border-color: var(--sa-emerald);
	box-shadow: 0 0 0 3px rgba(59, 183, 126, 0.14);
}

/* Primary nav */
.primary-menu a { font-weight: 700; border-radius: var(--sa-radius-sm); }
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { color: var(--sa-emerald-deep); background: rgba(59, 183, 126, 0.1); }

/* ═══ Trust bar ═══ */
.souq-trust { padding-block: 1.25rem 0.25rem; border: none; background: transparent; }
.souq-trust .container {
	background: #fff;
	border: 1px solid var(--sa-border);
	border-radius: var(--sa-radius);
	padding: 1rem 1.5rem;
	box-shadow: var(--sa-shadow-sm);
}
.souq-trust__item { background: transparent; padding: 0.5rem; }
.souq-trust__item:hover { transform: translateY(-2px); }
.souq-trust__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 12px; font-size: 1.35rem;
	background: rgba(59, 183, 126, 0.12);
	flex-shrink: 0;
}
.souq-trust__item strong { font-family: var(--sa-font-display); font-weight: 700; color: var(--sa-heading); font-size: 0.9rem; }
.souq-trust__item p { color: var(--sa-muted); }

/* ═══ Product cards (Bacola) ═══ */
.souq-product-grid,
.woocommerce ul.products {
	gap: 1rem;
}
.souq-product-card__inner {
	border: 1px solid var(--sa-border);
	border-radius: 14px;
	box-shadow: none;
	transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.3s var(--sa-ease-out);
}
.souq-product-card:hover .souq-product-card__inner,
.souq-product-card__inner:hover {
	transform: translateY(-4px);
	border-color: rgba(59, 183, 126, 0.5);
	box-shadow: 0 16px 36px -18px rgba(16, 24, 40, 0.28);
}
.souq-product-card__media {
	background: #fff;
	height: 200px;
	padding: 1.1rem;
}
.souq-product-card__media .souq-product-card__image-link {
	display: block; width: 100%; height: 100%;
}
.souq-product-card__media img {
	width: 100%; height: 100%;
	object-fit: contain;
	transition: transform 0.4s var(--sa-ease-out);
}
.souq-product-card:hover .souq-product-card__media img { transform: scale(1.05); }
/* Discount badge → blue rounded (Bacola) */
.souq-product-card__badges { inset-inline-start: 0.85rem; top: 0.85rem; }
.souq-badge {
	border-radius: 4px;
	font-weight: 800;
	font-size: 0.7rem;
	padding: 0.28rem 0.5rem;
	box-shadow: none;
}
.souq-badge--pct { background: var(--sa-blue); color: #fff; animation: none; }
.souq-badge--featured { background: var(--sa-yellow); color: #2a2118; }
.souq-badge--demo { background: var(--sa-emerald); color: #fff; }
.souq-badge--out { background: #6b7280; color: #fff; }
.souq-badge--low { background: var(--sa-yellow); color: #2a2118; }

/* Body left/right-aligned like Bacola */
.souq-product-card__body { text-align: start; padding: 0.5rem 1rem 1.1rem; }
.souq-product-card__title {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--sa-heading);
	min-height: 2.6em;
	margin-bottom: 0.4rem;
}
.souq-product-card__title a:hover { color: var(--sa-emerald-deep); }
.souq-product-card__stock {
	color: var(--sa-emerald-deep);
	font-weight: 700;
	font-size: 0.68rem;
	letter-spacing: normal;
	margin-bottom: 0.25rem;
}
.souq-product-card__stock--out { color: var(--sa-sale); }
.souq-product-card__rating { margin: 0.1rem 0 0.35rem; }
.souq-product-card__rating .star-rating { font-size: 0.85rem; color: var(--sa-yellow); margin: 0; }
.souq-product-card__price {
	font-family: var(--sa-font-display);
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--sa-heading);
	margin: 0.15rem 0 0.7rem;
	display: flex;
	align-items: baseline;
	gap: 0.45rem;
}
.souq-price-current,
.souq-product-card__price ins { color: var(--sa-sale); text-decoration: none; }
.souq-price-was,
.souq-product-card__price del { color: var(--sa-muted); font-size: 0.85rem; font-weight: 600; }

/* Quick-view / add icons */
.souq-quick-view-btn, .souq-add-icon {
	border-radius: 8px;
	box-shadow: var(--sa-shadow-sm);
}
.souq-add-icon:hover, .souq-quick-view-btn:hover { background: var(--sa-emerald); color: #fff; }

/* ═══ Promo cards ═══ */
.souq-promo-card {
	border-radius: var(--sa-radius);
	box-shadow: none;
	border: 1px solid var(--sa-border);
	overflow: hidden;
}
.souq-promo-card:hover { transform: translateY(-4px); box-shadow: var(--sa-shadow-sm); }
.souq-promo-card--visual { background: #fff; }
.souq-promo-card__label { font-size: 0.78rem; font-weight: 700; color: var(--sa-emerald-deep); }
.souq-promo-card__text strong { font-family: var(--sa-font-display); font-weight: 800; font-size: 1.2rem; color: var(--sa-heading); }

/* ═══ Category cards + counts ═══ */
.souq-category-card,
.souq-category-card--visual {
	border-radius: var(--sa-radius);
	border: 1px solid var(--sa-border);
	background: #fff;
	box-shadow: none;
	transition: transform 0.3s var(--sa-ease-out), box-shadow 0.3s ease, border-color 0.25s ease;
}
.souq-category-card:hover,
.souq-category-card--visual:hover {
	transform: translateY(-5px);
	box-shadow: var(--sa-shadow-sm);
	border-color: rgba(59, 183, 126, 0.5);
}
.souq-category-card--visual .souq-category-card__visual {
	height: 140px;
	background: #fbfcfc;
}
.souq-category-card--visual .souq-category-card__name {
	font-family: var(--sa-font-display);
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--sa-heading);
}
.souq-category-card__count {
	display: block;
	padding: 0 1rem 1rem;
	font-size: 0.78rem;
	color: var(--sa-muted);
	font-weight: 600;
}
.souq-category-card__cta { color: var(--sa-emerald-deep); font-weight: 700; }

/* Hero category strip chips */
.souq-cat-strip__item {
	border-radius: var(--sa-radius-pill);
	border: 1px solid var(--sa-border);
	background: #fff;
	font-weight: 700;
	color: var(--sa-heading);
	transition: transform 0.2s var(--sa-ease-out), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.souq-cat-strip__item:hover {
	transform: translateY(-2px);
	background: var(--sa-emerald);
	color: #fff;
	border-color: transparent;
}

/* ═══ Flash deals ═══ */
.sa-flash__inner {
	border-radius: var(--sa-radius-lg);
	background: linear-gradient(135deg, var(--sa-navy) 0%, #163a2c 60%, var(--sa-emerald-deep) 100%);
	box-shadow: var(--sa-shadow);
}
.sa-flash__title { font-family: var(--sa-font-display); font-weight: 800; }
.sa-flash__badge { background: rgba(247, 169, 0, 0.22); color: #ffd27a; }
.sa-flash__unit { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 12px; }

/* ═══ Stats ═══ */
.sa-stats__item {
	border-radius: var(--sa-radius);
	border: 1px solid var(--sa-border);
	background: #fff;
	box-shadow: none;
}
.sa-stats__item:hover { transform: translateY(-4px); box-shadow: var(--sa-shadow-sm); }
.sa-stats__num {
	font-family: var(--sa-font-display);
	background: linear-gradient(135deg, var(--sa-emerald), var(--sa-emerald-deep));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ═══ Why us ═══ */
.souq-why { background: transparent; }
.souq-why__title { font-family: var(--sa-font-display); font-weight: 800; color: var(--sa-heading); }
.souq-why__card { border-radius: var(--sa-radius); border: 1px solid var(--sa-border); box-shadow: none; }
.souq-why__card:hover { transform: translateY(-4px); border-color: rgba(59, 183, 126, 0.5); box-shadow: var(--sa-shadow-sm); }
.souq-why__card span {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 12px;
	background: rgba(59, 183, 126, 0.12); margin-bottom: 0.5rem;
}
.souq-why__card strong { font-family: var(--sa-font-display); color: var(--sa-heading); }

/* ═══ Delivery CTA ═══ */
.souq-delivery-cta__item { border-radius: var(--sa-radius); border: 1px solid var(--sa-border); box-shadow: none; }
.souq-delivery-cta__item:hover { transform: translateY(-5px); box-shadow: var(--sa-shadow-sm); border-color: rgba(59, 183, 126, 0.5); }
.souq-delivery-cta__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; margin: 0 auto 0.85rem; border-radius: 16px; font-size: 1.9rem;
	background: rgba(59, 183, 126, 0.12);
}
.souq-delivery-cta__item h3 { font-family: var(--sa-font-display); font-weight: 700; color: var(--sa-heading); }

/* ═══ Footer ═══ */
.site-footer {
	background: linear-gradient(180deg, #122a1f 0%, var(--sa-navy) 100%);
}
.site-footer h3 { font-family: var(--sa-font-display); font-weight: 700; }
.footer-menu a:hover { color: var(--sa-lime); padding-inline-start: 0.35rem; }

/* ═══ Hero (banner) ═══ */
.souq-home-main .sa-hero--banner { min-height: clamp(360px, 56vh, 520px); }
.souq-home-main .sa-hero--banner .sa-hero__title {
	font-family: var(--sa-font-display);
	font-weight: 800;
	font-size: clamp(1.8rem, 1.3rem + 2.6vw, 3rem);
	line-height: 1.25;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.souq-home-main .sa-hero--banner .sa-hero__badge {
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.28);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	font-weight: 700;
}
/* Brighter, premium overlay — readable but lets the Arsal scene shine */
.souq-home-main .sa-hero--banner .sa-hero__overlay {
	background:
		linear-gradient(105deg, rgba(8, 30, 20, 0.7) 0%, rgba(8, 30, 20, 0.42) 42%, rgba(8, 30, 20, 0.1) 72%),
		linear-gradient(180deg, rgba(8, 30, 20, 0.12) 0%, rgba(8, 30, 20, 0.34) 100%);
}
html[dir="rtl"] .souq-home-main .sa-hero--banner .sa-hero__overlay {
	background:
		linear-gradient(255deg, rgba(8, 30, 20, 0.7) 0%, rgba(8, 30, 20, 0.42) 42%, rgba(8, 30, 20, 0.1) 72%),
		linear-gradient(180deg, rgba(8, 30, 20, 0.12) 0%, rgba(8, 30, 20, 0.34) 100%);
}
/* Hero content: align to start (right in RTL), not centered, for a premium look */
.souq-home-main .sa-hero--banner .sa-hero__inner { max-width: var(--sa-container); text-align: start; }
.sa-hero__content { max-width: 620px; }
/* Keep CTAs aligned with the right-aligned title/desc (start = right in RTL) */
.souq-home-main .sa-hero--banner .sa-hero__cta { justify-content: flex-start; }
.sa-hero__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 0.6rem;
	/* Reset default <ul> list styling so labels hug the start edge (right in RTL) */
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
}
.sa-hero__trust li {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.95rem;
	border-radius: var(--sa-radius-pill);
	font-size: 0.8rem;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.26);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
/* Dot marker sits before the label on the correct side automatically (right in RTL) */
.sa-hero__trust li::before {
	content: "";
	flex: 0 0 auto;
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--sa-lime);
}
@media (max-width: 600px) {
	.souq-home-main .sa-hero--banner .sa-hero__inner { text-align: center; }
	.sa-hero__content { margin-inline: auto; }
	.souq-home-main .sa-hero--banner .sa-hero__cta { justify-content: center; }
	.sa-hero__trust { justify-content: center; }
}

/* ═══ Shop page ═══ */
.souq-shop-header { border-radius: var(--sa-radius); box-shadow: var(--sa-shadow-sm); }
/* ═══ Shop filter pills — real category photos (matches home) ═══ */
.souq-shop-filters { margin-top: 0.75rem; }
.souq-filter-pills {
	gap: 0.65rem;
}
.souq-filter-pill {
	padding: 0.35rem 1rem 0.35rem 0.35rem;
	background: #fff;
	box-shadow: 0 2px 8px rgba(33, 52, 63, 0.06);
}
.souq-filter-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(33, 52, 63, 0.1);
	border-color: rgba(59, 183, 126, 0.45);
}
.souq-filter-pill.is-active {
	background: var(--sa-emerald);
	border-color: var(--sa-emerald);
	box-shadow: 0 4px 14px rgba(59, 183, 126, 0.35);
}
.souq-filter-pill__label {
	font-family: var(--sa-font-display);
	font-weight: 700;
}
@media (max-width: 900px) {
	.souq-filter-panel .souq-filter-pills {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x proximity;
		padding-bottom: 0.35rem;
		gap: 0.55rem;
	}
	.souq-filter-panel .souq-filter-pill {
		scroll-snap-align: start;
		flex-shrink: 0;
	}
}

/* ═══ Responsive ═══ */
@media (max-width: 600px) {
	body { font-size: 15px; }
	.souq-product-card__media {
		height: 118px;
		padding: 0.55rem 0.65rem;
	}
	.souq-product-card__media img,
	.souq-product-card__image-link img,
	.souq-product-card__fallback-img {
		max-height: 96px;
	}
	.souq-product-card__body {
		padding: 0.45rem 0.65rem 0.7rem;
	}
	.souq-product-card__title {
		font-size: 0.76rem;
		min-height: 0;
		line-height: 1.35;
		margin-bottom: 0.15rem;
	}
	.souq-product-card__stock {
		font-size: 0.62rem;
		margin: 0;
	}
	.souq-product-card__price {
		margin: 0.25rem 0 0.45rem;
		font-size: 0.82rem;
	}
	.souq-product-card__actions .btn--cart {
		padding: 0.45rem 0.5rem;
		font-size: 0.72rem;
		min-height: 34px;
	}
	.souq-section__header--row { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
	.sa-scroll-progress { display: none; }
}

/* ═══════════════════════════════════════════════════════
   Advanced home hero (v3) — full-width banner + dock
   ═══════════════════════════════════════════════════════ */
.sa-hero3 {
	position: relative;
	background: #6aadd6;
	overflow: hidden;
}
.sa-hero3__stage {
	position: relative;
	width: 100%;
	max-height: 800px;
	overflow: hidden;
	line-height: 0;
	background: #6aadd6;
}
.sa-hero3__banner {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
	image-rendering: auto;
}
.sa-hero3__bar {
	background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
	border-bottom: 1px solid var(--sa-border, #e2e8f0);
	padding: clamp(0.85rem, 2.5vw, 1.25rem) 0;
}
.sa-hero3__bar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.25rem;
}
.sa-hero3__tagline {
	margin: 0;
	flex: 1 1 240px;
	min-width: 0;
	font-size: clamp(0.88rem, 1.4vw, 1rem);
	font-weight: 600;
	color: var(--sa-text-muted, #475569);
	line-height: 1.6;
}
.sa-hero3__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	flex: 0 0 auto;
}
/* Bottom dock — categories + countdown (mockup style) */
.sa-hero3__dock {
	background: linear-gradient(180deg, #1a4d38 0%, #123528 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: clamp(0.85rem, 2vw, 1.25rem) 0;
}
.sa-hero3__dock-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: clamp(1rem, 3vw, 2rem);
}
.sa-hero3__cats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.65rem;
}
.sa-hero3__cat {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.65rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s var(--sa-ease-out);
	min-width: 0;
}
.sa-hero3__cat:hover {
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-2px);
	color: #fff;
}
.sa-hero3__cat-media {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	display: grid;
	place-items: center;
}
.sa-hero3__cat-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sa-hero3__cat-emoji { font-size: 1.35rem; }
.sa-hero3__cat-name {
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.25;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sa-hero3__cat-go {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--sa-emerald);
	display: grid;
	place-items: center;
	font-size: 0.85rem;
	line-height: 1;
}
html[dir="rtl"] .sa-hero3__cat-go { transform: scaleX(-1); }
.sa-hero3__promo {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.45rem;
	color: #fff;
	text-align: end;
	min-width: 200px;
}
.sa-hero3__promo-label {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 800;
	color: #a7e34f;
}
.sa-hero3__timer {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}
.sa-hero3__timer-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 44px;
	padding: 0.35rem 0.5rem;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.sa-hero3__timer-unit strong {
	font-family: var(--sa-font-display);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}
.sa-hero3__timer-unit small {
	font-size: 0.62rem;
	color: rgba(255, 255, 255, 0.72);
	margin-top: 0.15rem;
}
.sa-hero3__timer-sep {
	font-weight: 800;
	color: rgba(255, 255, 255, 0.5);
}
.sa-hero3__promo-link {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--sa-yellow);
	text-decoration: none;
}
.sa-hero3__promo-link:hover { color: #ffd054; }
@media (max-width: 960px) {
	.sa-hero3__stage {
		max-height: clamp(220px, 50vw, 360px);
	}
	.sa-hero3__bar {
		padding: 0.75rem 0;
	}
	.sa-hero3__bar-inner {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.75rem;
		text-align: center;
	}
	.sa-hero3__tagline {
		flex: 0 0 auto;
	}
	.sa-hero3__cta {
		justify-content: center;
	}
	.sa-hero3__dock-inner {
		grid-template-columns: 1fr;
	}
	.sa-hero3__promo {
		align-items: center;
		text-align: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}
@media (max-width: 720px) {
	.sa-hero3__dock {
		padding: 0.75rem 0;
	}
	.sa-hero3__cats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 420px) {
	.sa-hero3__stage {
		max-height: clamp(180px, 42vw, 260px);
	}
	.sa-hero3__bar {
		padding: 0.65rem 0;
	}
	.sa-hero3__bar-inner {
		gap: 0.65rem;
	}
	.sa-hero3__cats { grid-template-columns: 1fr; }
	.sa-hero3__cta {
		flex-direction: column;
	}
	.sa-hero3__cta .sa-btn {
		width: 100%;
		justify-content: center;
	}
}
