/* ============================================================
 * Stelabela — Sumilux-style overrides (WooCommerce product cards,
 * category tabs, pill buttons, testimonials polish).
 * ============================================================ */

/* ---------- Product loop cards (shop + home [products]) ---------- */
/* Tight CSS grid — 10px gap between products on both axes. */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	gap: 10px !important;
	margin: 0 0 10px !important;
	padding: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after { display: none !important; content: none !important; }
.woocommerce ul.products.columns-1,.woocommerce-page ul.products.columns-1 { grid-template-columns: 1fr; }
.woocommerce ul.products.columns-2,.woocommerce-page ul.products.columns-2 { grid-template-columns: repeat(2,1fr); }
.woocommerce ul.products.columns-3,.woocommerce-page ul.products.columns-3 { grid-template-columns: repeat(3,1fr); }
.woocommerce ul.products.columns-4,.woocommerce-page ul.products.columns-4 { grid-template-columns: repeat(4,1fr); }
.woocommerce ul.products.columns-5,.woocommerce-page ul.products.columns-5 { grid-template-columns: repeat(5,1fr); }
.woocommerce ul.products.columns-6,.woocommerce-page ul.products.columns-6 { grid-template-columns: repeat(6,1fr); }
@media (max-width: 768px){
	.woocommerce ul.products[class*="columns-"],
	.woocommerce-page ul.products[class*="columns-"] { grid-template-columns: repeat(2,1fr); }
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	text-align: center;
	position: relative;
}
.woocommerce ul.products li.product a img {
	margin: 0 0 16px;
	transition: transform .6s ease;
	background: #f5f5f5;
}
.woocommerce ul.products li.product .stl-media {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}
.woocommerce ul.products li.product:hover a img {
	transform: scale(1.05);
}

/* category label above the title */
.woocommerce ul.products li.product .stl-cat {
	display: block;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #a8a8a8;
	margin-bottom: 6px;
	font-weight: 600;
}

/* title */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: "DM Sans", sans-serif !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	color: #222 !important;
	padding: 0 !important;
	margin: 0 0 6px !important;
}

/* rating always visible, centered */
.woocommerce ul.products li.product .star-rating {
	margin: 0 auto 8px;
	font-size: 13px;
	color: #D96D8F;
}

/* price */
.woocommerce ul.products li.product .price {
	color: #222 !important;
	font-family: "DM Sans", sans-serif;
	font-weight: 700;
	font-size: 15px;
}
.woocommerce ul.products li.product .price del {
	color: #a8a8a8 !important;
	font-weight: 400;
	margin-inline-end: 6px;
}
.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	color: #D96D8F !important;
}

/* sale flash → circular badge */
.woocommerce span.onsale {
	min-height: 44px;
	min-width: 44px;
	line-height: 44px;
	border-radius: 50%;
	background: #D96D8F;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 0;
	top: 12px;
	inset-inline-start: 12px;
	margin: 0;
	position: absolute;
	z-index: 3;
}

/* add-to-cart as a hover overlay pill on the image */
.woocommerce ul.products li.product .stl-media .button,
.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_variable,
.woocommerce ul.products li.product .product_type_simple {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translate(-50%, 12px);
	opacity: 0;
	visibility: hidden;
	transition: all .35s ease;
	background: #fff !important;
	color: #111 !important;
	border-radius: 40px !important;
	padding: 12px 26px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: .5px;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	z-index: 4;
	width: auto !important;
	margin: 0 !important;
}
.woocommerce ul.products li.product:hover .button {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}
.woocommerce ul.products li.product .button:hover {
	background: #C2557A !important;
	color: #fff !important;
}

/* floating action icons (visual only) top-right on hover */
.stl-actions {
	position: absolute;
	top: 14px;
	inset-inline-end: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateX(10px);
	transition: all .35s ease;
	z-index: 4;
}
.woocommerce ul.products li.product:hover .stl-actions { opacity: 1; transform: translateX(0); }
.stl-actions a {
	width: 38px; height: 38px; border-radius: 50%;
	background: #fff; color: #222;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 14px rgba(0,0,0,.12);
	font-size: 14px;
}
.stl-actions a:hover { background: #C2557A; color: #fff; }

/* ---------- Pure-CSS category tabs (no JS dependency) ---------- */
.stl-tabs > input { position: absolute; opacity: 0; pointer-events: none; }
.stl-tabs .stl-tab-nav {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 28px;
	border-bottom: 1px solid #ececec;
	padding-bottom: 14px;
}
.stl-tabs .stl-tab-nav label {
	cursor: pointer;
	font-family: "Cardo", serif;
	font-size: 22px;
	font-weight: 700;
	color: #bdbdbd;
	transition: color .25s ease;
}
.stl-tabs .stl-tab-nav label:hover { color: #666; }
.stl-tabs .stl-panel { display: none; }
#stab-men:checked   ~ .stl-tab-panels .panel-men,
#stab-women:checked ~ .stl-tab-panels .panel-women,
#stab-kid:checked   ~ .stl-tab-panels .panel-kid { display: block; }
#stab-men:checked   ~ .stl-tab-nav label[for="stab-men"],
#stab-women:checked ~ .stl-tab-nav label[for="stab-women"],
#stab-kid:checked   ~ .stl-tab-nav label[for="stab-kid"] { color: #111; }

/* ---------- Category cards ---------- */
.stl-cat-tabs .cat-cards,
.cat-cards {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.cat-card {
	flex: 1;
	min-width: 220px;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}
.cat-card img {
	width: 100%;
	display: block;
	transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-pill {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	background: #fff;
	color: #111;
	padding: 12px 26px;
	border-radius: 40px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.cat-card .cat-pill:hover { background:#C2557A; color:#fff; }

/* make Elementor Tabs titles look like Sumilux (centered, minimal) */
.stl-cat-tabs .elementor-tabs-wrapper {
	justify-content: center;
	border: none;
}
.stl-cat-tabs .elementor-tab-title {
	border: none !important;
	font-family: "Cardo", serif;
	font-size: 22px;
	font-weight: 700;
	color: #bbb;
	padding: 6px 22px !important;
}
.stl-cat-tabs .elementor-tab-title.elementor-active { color: #111 !important; }
.stl-cat-tabs .elementor-tab-content { border: none !important; padding: 26px 0 0 !important; }
.stl-cat-tabs .elementor-tabs-content-wrapper { border: none !important; }
/* Fallback: show the first tab's content until Elementor's JS marks an active tab. */
.stl-cat-tabs .elementor-tabs:not(:has(.elementor-tab-content.elementor-active)) .elementor-tab-content[data-tab="1"] {
	display: block !important;
}

/* ---------- Header actions (circular icons + login/register) ---------- */
/* lay the header actions column out as one inline row (target the wrap that holds the cart) */
.elementor-location-header .elementor-widget-wrap:has(.elementor-menu-cart) {
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 12px;
}
.elementor-location-header .elementor-widget-wrap:has(.elementor-menu-cart) > .elementor-widget {
	width: auto !important;
	margin: 0 !important;
}
.stl-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: flex-end;
}
.stl-header-actions .stl-hicon {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0,0,0,.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #111;
	font-size: 17px;
	transition: all .25s ease;
}
.stl-header-actions .stl-hicon:hover { background: #C2557A; color: #fff; }
.stl-header-actions .stl-badge {
	position: absolute;
	top: -4px;
	inset-inline-end: -4px;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	padding: 0 4px;
	border-radius: 50%;
	background: #D96D8F;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
}
.stl-header-actions .stl-auth {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f4f4f4;
	border-radius: 40px;
	padding: 11px 22px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
}
.stl-header-actions .stl-auth a { color: #111; }
.stl-header-actions .stl-auth a:hover { color: #D96D8F; }
.stl-header-actions .stl-auth span { color: #ccc; }

/* style Elementor's menu-cart toggle into a matching circle (hide the price) */
.elementor-location-header .elementor-menu-cart__toggle .elementor-button-text,
.elementor-location-header .elementor-menu-cart__toggle .amount { display: none !important; }
.elementor-location-header .elementor-menu-cart__toggle .elementor-button {
	width: 44px; height: 44px; border-radius: 50% !important;
	background: #fff !important; box-shadow: 0 6px 18px rgba(0,0,0,.08);
	padding: 0 !important; min-width: 0 !important; border: none !important;
	display: inline-flex !important; align-items: center; justify-content: center;
}
.elementor-location-header .elementor-menu-cart__toggle .elementor-button-icon { font-size: 17px; color: #111; margin: 0; }
.elementor-location-header .elementor-menu-cart { line-height: 1; }
.elementor-location-header .elementor-menu-cart__toggle { margin: 0; }

/* nav-menu dropdown carets already handled by Elementor; give menu spacing */
.elementor-nav-menu .elementor-item { font-weight: 600; }

/* ---------- Testimonials ---------- */
.stl-testi-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 34px;
	flex-wrap: wrap;
	gap: 16px;
}
.stl-testi-head .eyebrow {
	color: #D96D8F; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.stl-testi-head h2 {
	font-family: "Cardo", serif; font-size: 34px; font-weight: 700; color: #222; margin: 6px 0 0;
}
.stl-viewall {
	display: inline-flex; align-items: center; gap: 8px;
	background: #C2557A; color: #fff; border-radius: 40px; padding: 13px 26px;
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.stl-viewall:hover { background: #D96D8F; color: #fff; }
.stl-testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.stl-tcard {
	background: #fff; border-radius: 8px; padding: 34px 32px;
	box-shadow: 0 12px 40px rgba(0,0,0,.05); position: relative;
}
.stl-tcard-top { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid #eee; margin-bottom: 18px; }
.stl-tcard-top img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.stl-tcard-top h5 { margin: 0; font-family: "DM Sans", sans-serif; font-size: 17px; font-weight: 700; color: #222; }
.stl-tcard-top span { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: #a8a8a8; }
.stl-tcard .stl-quote { margin-inline-start: auto; font-family: Georgia, serif; font-size: 60px; line-height: 1; color: #ececec; }
.stl-tcard .stl-stars { color: #111; letter-spacing: 3px; margin-bottom: 12px; }
.stl-tcard h4 { font-family: "DM Sans", sans-serif; font-size: 18px; font-weight: 700; color: #222; margin: 0 0 10px; }
.stl-tcard p { color: #666; font-size: 14px; line-height: 1.7; margin: 0; }
@media (max-width: 767px){ .stl-testi-grid { grid-template-columns: 1fr; } }

/* ---------- Pill buttons (Shop all product etc.) ---------- */
.stl-pill .elementor-button {
	border-radius: 40px !important;
	padding: 14px 32px !important;
	font-size: 12px !important;
	letter-spacing: .5px;
	text-transform: uppercase;
}

/* ============================================================
   Custom header built with NATIVE Elementor widgets.
   Only the pixel styling (circles, shadows, badges, auth pill,
   promo overlay, marquee animation) lives here; structure/text
   stay editable as real widgets in the Elementor editor.
   ============================================================ */
.elementor-location-header { --c-red:#D96D8F; --c-yellow:#E9C46A; --c-black:#141414; --c-gray:#5b5b5b; }

/* Header follows the site's RTL direction (logo right, menu centre, icons/auth left). */
.elementor-location-header { direction: rtl; }
/* Section/column _css_classes don't render here, so target the nav-bar row by
   the widget it contains (:has). Logo & icon columns hug their side; the menu
   column grows and centres its items. */
.elementor-location-header .elementor-top-section:has(> .elementor-container > .elementor-column .elementor-widget-nav-menu) > .elementor-container > .elementor-column {
	width: auto !important; flex: 0 0 auto !important;
}
.elementor-location-header .elementor-top-section:has(> .elementor-container > .elementor-column .elementor-widget-nav-menu) > .elementor-container > .elementor-column:has(.elementor-widget-nav-menu) {
	flex: 1 1 auto !important;
}
.elementor-location-header .elementor-widget-nav-menu .elementor-nav-menu { justify-content: center; }

/* promo band (:has the promo button): text left, button right, arrow after text */
.elementor-location-header .elementor-top-section:has(.stl-promo-btn) > .elementor-container { justify-content: space-between; }
.elementor-location-header .elementor-top-section:has(.stl-promo-btn) > .elementor-container > .elementor-column { width: auto !important; flex: 0 0 auto !important; }
.elementor-location-header .stl-promo-btn .elementor-button-content-wrapper { display: inline-flex; flex-direction: row; align-items: center; }
.elementor-location-header .stl-promo-btn .elementor-button-text { order: 1; }
.elementor-location-header .stl-promo-btn .elementor-button-icon { order: 2; margin: 0 9px 0 0 !important; }

/* nav-menu: active item bold + dark, others dark-gray */
.elementor-location-header .elementor-nav-menu .elementor-item { text-transform: uppercase; font-weight: 600; letter-spacing: .4px; }
.elementor-location-header .elementor-nav-menu .elementor-item-active { font-weight: 700 !important; }
/* menu carets removed (flat menu, no submenus — user request 2026-07-23) */
.elementor-location-header nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item > a.elementor-item::after {
	content: none !important;
}
/* hide Elementor's own submenu indicators too */
.elementor-location-header .elementor-nav-menu .sub-arrow,
.elementor-location-header nav.elementor-nav-menu--main ul.elementor-nav-menu > li.menu-item > a.elementor-item > .sub-arrow { display: none !important; }

/* circular icon widgets (search / wishlist / cart) */
.elementor-location-header .stl-hicon .elementor-icon {
	width: 46px; height: 46px; border-radius: 50%; background: #fff;
	box-shadow: 0 5px 16px rgba(0,0,0,.12);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 16px; color: var(--c-black); transition: transform .2s;
}
.elementor-location-header .stl-hicon .elementor-icon:hover { transform: translateY(-2px); }
.elementor-location-header .stl-hicon .elementor-icon-wrapper { position: relative; display: inline-block; line-height: 0; }
/* red "0" badge on wishlist (static) — the CART badge is a real span kept live below */
.elementor-location-header .stl-badge .elementor-icon-wrapper::after {
	content: "0"; position: absolute; top: -3px; right: -3px;
	min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
	background: var(--c-red); color: #fff; font-size: 11px; font-weight: 700;
	line-height: 18px; text-align: center;
}
/* cart: real live count (WooCommerce fragments update span.stl-cart-count) */
.elementor-location-header .elementor-column:has(.elementor-icon[href*="/cart"]) .stl-badge .elementor-icon-wrapper::after { content: none; }
.elementor-location-header .stl-badge .elementor-icon-wrapper .stl-cart-count {
	position: absolute; top: -3px; right: -3px;
	min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
	background: var(--c-red); color: #fff; font-size: 11px; font-weight: 700;
	line-height: 18px; text-align: center; display: inline-block;
}

/* auth pill (inner-section wrapping Login + Register buttons) */
.elementor-location-header .stl-authpill > .elementor-container {
	background: #f1f1f1; border-radius: 40px; padding: 5px;
}
.elementor-location-header .stl-login .elementor-button {
	background: #fff; color: var(--c-black); border-radius: 34px;
	box-shadow: 0 2px 8px rgba(0,0,0,.10); font-weight: 700; font-size: 13px;
	letter-spacing: .5px; padding: 11px 24px;
}
.elementor-location-header .stl-reg .elementor-button {
	background: transparent; color: #7a7a7a; font-weight: 700; font-size: 13px;
	letter-spacing: .5px; padding: 11px 22px; box-shadow: none;
}
.elementor-location-header .stl-reg .elementor-button:hover { color: var(--c-black); }

/* black promo banner */
.elementor-location-header .stl-promo .txt-yellow,
.elementor-location-header .stl-promo b { color: var(--c-yellow); }
.elementor-location-header .stl-promo-btn .elementor-button {
	background: transparent; border: 1px solid rgba(255,255,255,.55);
	border-radius: 40px; color: #fff; font-weight: 600; padding: 13px 28px;
}
.elementor-location-header .stl-promo-btn .elementor-button:hover { background: #fff; color: #111; }
.elementor-location-header .stl-promo-btn .elementor-button .elementor-button-icon i,
.elementor-location-header .stl-promo-btn .elementor-button .elementor-button-icon svg {
	color: var(--c-red); fill: var(--c-red); transform: rotate(-45deg);
}

/* auto-scrolling marquee */
/* Track direction stays LTR so the translateX animation is stable, but each
   text unit is RTL so the Arabic sentence (incl. the $ sign) reads correctly. */
.elementor-location-header .stl-marquee { direction: ltr; }
.elementor-location-header .stl-marquee .elementor-widget-container { overflow: hidden; direction: ltr; }
.elementor-location-header .stl-mq-track {
	direction: ltr;
	display: inline-flex; align-items: center; white-space: nowrap;
	will-change: transform; animation: stlMq 32s linear infinite;
}
.elementor-location-header .stl-mq-track .t { direction: rtl; unicode-bidi: isolate; }
.elementor-location-header .stl-mq-track .t {
	color: #3a3a3a; font-size: 12px; font-weight: 600; letter-spacing: 2px;
	text-transform: uppercase; padding: 0 22px;
}
.elementor-location-header .stl-mq-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-black); display: inline-block; }
.elementor-location-header .stl-mq-track .fa-bolt { color: var(--c-black); font-size: 12px; padding: 0 22px; }
@keyframes stlMq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* responsive: keep the nav-bar row inline (logo | menu-hamburger | icons | auth),
   let the nav-menu widget use its own hamburger instead of stacking columns */
@media (max-width: 1024px) {
	.elementor-location-header .elementor-widget-nav-menu .elementor-nav-menu { justify-content: flex-start; }
	.elementor-location-header .stl-hicon .elementor-icon { width: 42px; height: 42px; font-size: 15px; }
	.elementor-location-header .elementor-column:has(.stl-login) { display: none; } /* hide auth pill */
	.elementor-location-header .elementor-top-section:has(.stl-promo-btn) > .elementor-container { flex-wrap: wrap; justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
	.elementor-location-header .elementor-column:has(.stl-search) { display: none; }
}

/* ---------- Mobile header (match Sumilux mobile) ---------- */
@media (max-width: 767px) {
	/* promo band: text (small, centered) with the Learn More pill below it.
	   Desktop rule pins the columns to flex:0 0 auto/max-content → the heading
	   overflowed the viewport; stack + shrink them here. */
	.elementor-location-header .elementor-top-section:has(.stl-promo-btn) > .elementor-container {
		flex-direction: column; align-items: center; gap: 14px;
	}
	.elementor-location-header .elementor-top-section:has(.stl-promo-btn) > .elementor-container > .elementor-column {
		width: 100% !important; flex: 0 1 auto !important; max-width: 100%;
	}
	.elementor-location-header .elementor-top-section:has(.stl-promo-btn) .elementor-widget-heading .elementor-heading-title {
		font-size: 13px !important; line-height: 1.5; text-align: center;
	}
	.elementor-location-header .elementor-top-section:has(.stl-promo-btn) .elementor-widget-heading .elementor-widget-container { text-align: center; }
	.elementor-location-header .stl-promo-btn .elementor-button-wrapper { text-align: center; }
	.elementor-location-header .stl-promo-btn .elementor-button { padding: 12px 26px; font-size: 13px; }

	/* nav row: logo centered; hamburger pinned right (RTL mirror of Sumilux),
	   search circle beside it; wishlist/cart circles move to the bottom bar */
	.elementor-location-header .elementor-top-section:has(.elementor-widget-nav-menu) > .elementor-container { position: relative; justify-content: center; min-height: 60px; }
	/* keep the CART circle (badge) — pinned to the far (left) side like the reference; wishlist stays in the bottom bar */
	.elementor-location-header .elementor-column:has(.stl-hicon):not(:has(.stl-search)):not(:has(.elementor-icon[href*="/cart"])) { display: none !important; }
	.elementor-location-header .elementor-column:has(.stl-hicon .elementor-icon[href*="/cart"]) { position: absolute; top: 50%; transform: translateY(-50%); left: 10px; width: auto !important; }
	.elementor-location-header .elementor-top-section:has(.elementor-widget-nav-menu) .elementor-widget-image img { max-width: 140px; }
	/* long selector on purpose: must out-rank the desktop `width:auto !important` nav-row rule */
	.elementor-location-header .elementor-top-section:has(> .elementor-container > .elementor-column .elementor-widget-nav-menu) > .elementor-container > .elementor-column:has(.elementor-widget-nav-menu) {
		position: absolute; top: 50%; transform: translateY(-50%); right: 8px; width: 44px !important; flex: 0 0 44px !important;
	}
	.elementor-location-header .elementor-menu-toggle { background: transparent; }
	.elementor-location-header .elementor-column:has(.stl-search) { display: flex !important; position: absolute; top: 50%; transform: translateY(-50%); right: 56px; }
	.elementor-location-header .stl-hicon .elementor-icon { box-shadow: none; background: transparent; width: 40px; height: 40px; }
	/* Elementor's own dropdown is replaced by the .stl-mmenu off-canvas panel
	   (its UL is cloned from this hidden container, so items stay editor-managed) */
	.elementor-location-header .elementor-widget-nav-menu .elementor-nav-menu__container.elementor-nav-menu--dropdown { display: none !important; }

	/* press: keep the 3 brand logos on one row like the reference
	   (direct-child :has so the outer column that merely CONTAINS the inner
	   section is not squeezed too) */
	.elementor-inner-section:has(img[src*="brand-"]) > .elementor-container { display: flex; flex-wrap: nowrap; }
	.elementor-column:has(> .elementor-widget-wrap > .elementor-widget-image img[src*="brand-"]),
	.elementor-column:has(> .elementor-widget-wrap > .elementor-element.elementor-widget-image img[src*="brand-"]) { width: 33.33% !important; }
	.elementor-column:has(> .elementor-widget-wrap > .elementor-element img[src*="brand-"]) img { max-width: 100px; }

	/* benefits: media-object rows (icon on the inline-start = right in RTL, text beside it).
	   Each benefit is ONE image-box widget, so flex its wrapper. */
	.elementor-element-89e9fcf .elementor-image-box-wrapper { display: flex; align-items: flex-start; gap: 16px; text-align: right; }
	.elementor-element-89e9fcf .elementor-image-box-img { flex: 0 0 44px; width: 44px !important; margin: 0 !important; }
	.elementor-element-89e9fcf .elementor-image-box-img img { width: 44px; height: auto; }
	.elementor-element-89e9fcf .elementor-image-box-title { font-size: 17px; margin: 0 0 6px; text-align: right; }
	.elementor-element-89e9fcf .elementor-image-box-description { font-size: 13px; text-align: right; }
	.elementor-element-89e9fcf .elementor-column { margin-bottom: 10px; }

	/* category tabs: one card per view, horizontal swipe with next-card peek */
	.stl-tabs .cat-cards { display: flex !important; flex-wrap: nowrap; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
	.stl-tabs .cat-cards > * { flex: 0 0 72%; min-width: 0; scroll-snap-align: start; }

	/* curated outfits: horizontal list cards (image on the right in RTL) like the reference */
	.elementor-element-c66ddf1 ul.products { display: block !important; }
	.elementor-element-c66ddf1 ul.products > li.product {
		display: grid !important; grid-template-columns: 40% 1fr; column-gap: 16px;
		width: 100% !important; margin: 0 0 14px !important; background: #fff;
		align-content: center; padding: 0 !important;
	}
	.elementor-element-c66ddf1 ul.products > li.product > .stl-media { grid-column: 1; grid-row: 1 / span 6; margin: 0; }
	.elementor-element-c66ddf1 ul.products > li.product > *:not(.stl-media) { grid-column: 2; text-align: right; margin-right: 0; }
	.elementor-element-c66ddf1 ul.products > li.product > *:first-child { margin-top: 10px; }

	/* weekly trending: keep the 2x2 image grid; tighten summary padding */
	.elementor-column:has(.wk-summary-name) { padding: 0 15px !important; }

	/* room for the fixed bottom bar */
	body { padding-bottom: 62px; }
}

/* ---------- Mobile fixed bottom nav (Sumilux 'rbb-mobile-navigation' equivalent) ---------- */
.stl-mbar { display: none; }
@media (max-width: 767px) {
	.stl-mbar {
		position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
		display: grid; grid-template-columns: repeat(3, 1fr);
		background: #fff; border-top: 1px solid #e8e8e8;
		padding: 9px 0 max(9px, env(safe-area-inset-bottom));
	}
	.stl-mbar a {
		display: flex; flex-direction: column; align-items: center; gap: 5px;
		color: #555; font-size: 11px; line-height: 1; text-decoration: none;
	}
	.stl-mbar a + a { border-inline-start: 1px solid #efefef; }
	.stl-mbar a i { font-size: 17px; color: #222; }
	.stl-mbar a.act, .stl-mbar a.act i { color: #000; font-weight: 700; }
}

/* Hide YITH's own auto-added loop buttons — we render our own icons inside .stl-actions.
   Only target buttons placed directly in the product <li> (YITH's), not ours (deeper). */
.woocommerce ul.products li.product > .yith-wcqv-button,
.woocommerce ul.products li.product > .yith-wcwl-add-to-wishlist,
.woocommerce ul.products li.product > .yith-wcwl-wishlistexistsbrowse,
.woocommerce ul.products li.product > .yith-wcwl-wishlistaddedbrowse,
.woocommerce ul.products li.product > .yith-wcqv-size { display: none !important; }
/* Remove the compare button/icon from product cards entirely (user request). */
.woocommerce ul.products li.product .compare.button,
.woocommerce ul.products li.product .stl-compare,
.woocommerce ul.products li.product .yith-compare,
.woocommerce ul.products li.product a.compare { display: none !important; }
/* keep our action icons circular even with YITH classes/added markup */
.stl-actions a i { pointer-events: none; }
.stl-actions .yith-wcwl-add-to-wishlist { margin: 0; }

/* ---------- Hero: native Elementor "Slides" widget polish (.stl-hero-slides) ----------
   Real Slides DOM: .swiper-slide-inner > .swiper-slide-contents > heading/description/button.
   Constrain content to a 1320 box and push it to the RIGHT (RTL cross-start = flex-start),
   put the eyebrow(description) above the title(heading), CTA = solid black pill. */
.stl-hero-slides .swiper-slide-inner { align-items: center; }
/* Elementor's slides JS can leave contents inline display:none — force visible on ALL sizes */
.stl-hero-slides .swiper-slide-contents { display: flex !important; }
.stl-hero-slides .swiper-slide-contents {
	width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px;
	display: flex; flex-direction: column; align-items: flex-start; text-align: right;
}
.stl-hero-slides .elementor-slide-heading { max-width: 470px; margin: 0 0 28px; }
.stl-hero-slides .elementor-slide-description { order: -1; max-width: 470px; margin: 0 0 14px; }
.stl-hero-slides .elementor-slide-button {
	align-self: flex-start;
	background: #C2557A !important; color: #fff !important; border: 0 !important;
	border-radius: 40px; padding: 15px 34px; font-family: "DM Sans", sans-serif;
	font-weight: 600; font-size: 15px; transition: background .3s;
}
.stl-hero-slides .elementor-slide-button:hover { background: #D96D8F !important; }
/* arrows / dots polish */
.stl-hero-slides .elementor-swiper-button { color: #111; background: rgba(255,255,255,.85); width: 46px; height: 46px; border-radius: 50%; }
.stl-hero-slides .elementor-swiper-button:hover { background: #fff; }
.stl-hero-slides .swiper-pagination-bullet-active { background: #C2557A; }
@media (max-width: 767px) {
	/* Elementor's slides JS leaves the contents inline display:none on mobile — force them visible.
	   Reference mobile hero is start-aligned (mirrored: right in RTL), not centered. */
	.stl-hero-slides .swiper-slide-contents { display: flex !important; align-items: flex-start; text-align: right; }
	.stl-hero-slides .elementor-slide-heading { font-size: 38px !important; }
}

/* ---------- Testimonials (Reviews widget): bleed the carousel to the screen edge ----------
   The widget sits in a boxed 1380 container, so the 3rd (peeking) card was clipped at the
   container edge leaving a blank strip beside it. Let slides overflow toward the inline-end
   (left, since the site is RTL) up to the viewport edge, while still clipping at the
   container's start edge so loop-duplicate slides never show on the other side. */
@media (min-width: 1024px) { /* only where slides_per_view is 2.3 (the peeking card) */
	.stl-reviews .swiper,
	.stl-reviews .swiper-container {
		overflow: visible !important;
		clip-path: inset(-180px 0px -80px -100vw); /* top(-180 keeps the -116px arrows visible) / start / bottom / end(-100vw = left bleed) */
	}
	/* keep the bleeding slides from creating a horizontal page scrollbar */
	.elementor-section:has(.stl-reviews) { overflow: hidden; }
}

/* ---------- Mobile off-canvas menu (Sumilux style, mirrored for RTL) ---------- */
.stl-mmenu { display: none; }
@media (max-width: 767px) {
	.stl-mmenu { display: block; position: fixed; inset: 0; z-index: 100000; pointer-events: none; }
	.stl-mmenu-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; transition: opacity .3s; }
	.stl-mmenu-panel {
		position: absolute; top: 0; bottom: 0; right: 0; width: 86%; max-width: 360px;
		background: #fff; transform: translateX(100%); transition: transform .35s ease;
		display: flex; flex-direction: column; overflow-y: auto; padding: 0 22px 26px;
	}
	body.stl-mmenu-open .stl-mmenu { pointer-events: auto; }
	body.stl-mmenu-open .stl-mmenu-overlay { opacity: 1; }
	body.stl-mmenu-open .stl-mmenu-panel { transform: none; }
	body.stl-mmenu-open { overflow: hidden; }

	/* header row: X + search icon (right in RTL), logo centre, cart left */
	.stl-mmenu-head { display: flex; align-items: center; gap: 16px; padding: 18px 0 14px; }
	.stl-mmenu-close, .stl-mmenu-head .stl-mmenu-cart { background: none; border: 0; padding: 4px; color: #111; font-size: 19px; line-height: 1; cursor: pointer; }
	.stl-mmenu-logo { margin: 0 auto; }
	.stl-mmenu-logo img { max-width: 128px; display: block; }
	.stl-mmenu-cart { position: relative; }
	.stl-mmenu-cart .stl-cart-count {
		position: absolute; top: -7px; left: -8px; background: #D96D8F; color: #fff;
		font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; border-radius: 50%;
		display: flex; align-items: center; justify-content: center; padding: 0 3px;
	}

	/* search pill */
	.stl-mmenu-search { position: relative; margin: 10px 0 20px; }
	.stl-mmenu-search input[type=search] {
		width: 100%; background: #f3f3f3; border: 0; border-radius: 28px;
		padding: 15px 44px 15px 44px; font-size: 12px; letter-spacing: 1px; color: #333;
	}
	.stl-mmenu-search input[type=search]::placeholder { color: #a9a9a9; text-transform: uppercase; }
	.stl-mmenu-search .stl-ms-icon { position: absolute; top: 50%; transform: translateY(-50%); right: 17px; color: #a9a9a9; font-size: 14px; pointer-events: none; }
	.stl-mmenu-search button { position: absolute; top: 50%; transform: translateY(-50%); left: 8px; background: none; border: 0; color: #444; font-size: 15px; padding: 8px; cursor: pointer; }

	/* menu list (cloned from the Elementor nav-menu widget) */
	.stl-mmenu-nav ul { list-style: none; margin: 0; padding: 0; }
	.stl-mmenu-nav > ul > li { position: relative; }
	.stl-mmenu-nav > ul > li > a {
		display: block; padding: 15px 0; color: #111; font-weight: 700; font-size: 14px;
		letter-spacing: .5px; text-transform: uppercase; text-align: right;
	}
	.stl-mmenu-nav a:hover { color: #D96D8F; }
	.stl-mmenu-nav .sub-arrow { display: none; } /* Elementor's own caret */
	/* decorative chevron on the far (left) side, like the reference's ">" */
	.stl-mmenu-nav > ul > li > a::after {
		content: "\f053"; font-family: "Font Awesome 5 Free"; font-weight: 900;
		font-size: 11px; color: #b9b9b9; position: absolute; left: 2px; top: 50%; transform: translateY(-50%);
	}
	.stl-mmenu-nav li.has-sub > .stl-subtoggle {
		position: absolute; left: 0; top: 7px; width: 34px; height: 34px;
		background: none; border: 0; color: #b9b9b9; font-size: 11px; cursor: pointer; z-index: 2;
	}
	.stl-mmenu-nav li.has-sub > a::after { content: none; } /* toggle replaces the decorative chevron */
	.stl-mmenu-nav li.has-sub.sub-open > .stl-subtoggle i { transform: rotate(-90deg); }
	.stl-mmenu-nav li.has-sub > .stl-subtoggle i { transition: transform .25s; }
	.stl-mmenu-nav li ul { display: none; padding: 0 14px 8px 0; }
	.stl-mmenu-nav li.sub-open > ul { display: block; }
	.stl-mmenu-nav li ul a { display: block; padding: 9px 0; color: #555; font-size: 13px; font-weight: 400; text-align: right; }

	/* contact + social footer */
	.stl-mmenu-foot { margin-top: auto; padding-top: 30px; }
	.stl-mmenu-foot p { margin: 0 0 10px; font-size: 14px; color: #333; text-align: right; }
	.stl-mmenu-foot p b { color: #111; }
	.stl-mmenu-social { display: flex; gap: 10px; margin-top: 16px; }
	.stl-mmenu-social a {
		width: 38px; height: 38px; border-radius: 50%; background: #C2557A; color: #fff;
		display: flex; align-items: center; justify-content: center; font-size: 14px;
	}
	.stl-mmenu-social a:hover { background: #D96D8F; color: #fff; }
}

/* ---------- Logged-in header: "HI, USER | LOGOUT" pill replaces Register/Login ---------- */
body.logged-in .elementor-location-header .elementor-column:has(.stl-login) > .elementor-widget-wrap > *:not(.stl-account-pill) { display: none !important; }
.stl-account-pill {
	display: inline-flex; align-items: center;
	background: #f1f1f1; border-radius: 40px; padding: 5px;
	white-space: nowrap;
}
.stl-account-pill .stl-acc-name {
	background: #fff; color: #141414; border-radius: 34px;
	box-shadow: 0 2px 8px rgba(0,0,0,.10); font-weight: 700; font-size: 13px;
	letter-spacing: .5px; padding: 11px 24px; text-transform: uppercase;
	transition: .25s ease;
}
.stl-account-pill .stl-acc-name:hover { background: #C2557A; color: #fff; }
.stl-account-pill .stl-acc-logout {
	color: #7a7a7a; font-weight: 700; font-size: 13px;
	letter-spacing: .5px; padding: 11px 22px; text-transform: uppercase;
	transition: color .25s ease;
}
.stl-account-pill .stl-acc-logout:hover { color: #D96D8F; }

/* ---------- Lama Sans (Arabic site font) ---------- */
@font-face {
	font-family: 'Lama Sans';
	src: url('fonts/LamaSans-Medium.otf') format('opentype');
	font-weight: 300 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lama Sans';
	src: url('fonts/LamaSans-Bold.otf') format('opentype');
	font-weight: 600 900;
	font-style: normal;
	font-display: swap;
}
/* apply everywhere (replaces DM Sans / Cardo) */
body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-button,
.elementor-slide-heading, .elementor-slide-description, .elementor-slide-button,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.elementor-testimonial__name, .stl-rev-headline,
.product-main-title .elementor-heading-title,
.product-main-price .price,
.elementor-nav-menu, .elementor-nav-menu a {
	font-family: 'Lama Sans', 'DM Sans', sans-serif !important;
}

/* ---------- Arabic typography fixes ----------
   letter-spacing breaks connected Arabic glyphs — zero it everywhere. */
body *, .elementor-heading-title, .elementor-button, .stl-mq-track .t {
	letter-spacing: 0 !important;
}

/* ---------- Stella Bella logo sizing (square-ish logo in the header/footer bars) ---------- */
.elementor-location-header .elementor-top-section:has(.elementor-widget-nav-menu) .elementor-widget-image img {
	max-height: 84px; width: auto; object-fit: contain;
}
.elementor-location-footer .elementor-widget-image img { max-height: 110px; width: auto; }
.stl-mmenu-logo img { max-height: 64px; width: auto; }
@media (max-width: 767px) {
	.elementor-location-header .elementor-top-section:has(.elementor-widget-nav-menu) .elementor-widget-image img { max-height: 62px; max-width: 150px; }
}

/* ---------- Dynamic category tabs [stl_cat_tabs] (generic radio hack) ---------- */
.stl-tabs2 > input { position: absolute; opacity: 0; pointer-events: none; }
.stl-tabs2 .stl-tab-nav {
	display: flex; justify-content: center; gap: 30px;
	margin-bottom: 28px; border-bottom: 1px solid #ececec; padding-bottom: 14px;
}
.stl-tabs2 .stl-tab-nav label {
	cursor: pointer; font-size: 22px; font-weight: 700; color: #bdbdbd; transition: color .25s ease;
}
.stl-tabs2 .stl-tab-nav label:hover { color: #666; }
.stl-tabs2 .stl-panel { display: none; }
.stl-tabs2 > input:nth-of-type(1):checked ~ .stl-tab-panels .stl-panel:nth-of-type(1),
.stl-tabs2 > input:nth-of-type(2):checked ~ .stl-tab-panels .stl-panel:nth-of-type(2),
.stl-tabs2 > input:nth-of-type(3):checked ~ .stl-tab-panels .stl-panel:nth-of-type(3),
.stl-tabs2 > input:nth-of-type(4):checked ~ .stl-tab-panels .stl-panel:nth-of-type(4) { display: block; }
.stl-tabs2 > input:nth-of-type(1):checked ~ .stl-tab-nav label:nth-of-type(1),
.stl-tabs2 > input:nth-of-type(2):checked ~ .stl-tab-nav label:nth-of-type(2),
.stl-tabs2 > input:nth-of-type(3):checked ~ .stl-tab-nav label:nth-of-type(3),
.stl-tabs2 > input:nth-of-type(4):checked ~ .stl-tab-nav label:nth-of-type(4) { color: #111; }
/* product image inside the big cards */
.stl-tabs2 .cat-card img { width: 100%; height: 420px; object-fit: cover; object-position: center top; display: block; }
.stl-tabs2 .stl-tab-empty { text-align: center; color: #999; padding: 30px 0; }
@media (max-width: 767px) {
	.stl-tabs2 .cat-cards { display: flex !important; flex-wrap: nowrap; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 6px; }
	.stl-tabs2 .cat-cards > * { flex: 0 0 72%; min-width: 0; scroll-snap-align: start; }
	.stl-tabs2 .cat-card img { height: 320px; }
	.stl-tabs2 .stl-tab-nav { gap: 18px; }
	.stl-tabs2 .stl-tab-nav label { font-size: 17px; }
}
