.rabeea-store .rb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--rb-space-2);
	padding: 0.78rem 1.25rem;
	border: 1px solid transparent;
	border-radius: var(--rb-radius-pill);
	font-size: var(--rb-font-size-200);
	font-weight: 800;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), color var(--rb-duration-fast) var(--rb-ease-standard), background-color var(--rb-duration-fast) var(--rb-ease-standard);
}

.rabeea-store .rb-btn,
.rabeea-store button,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store input,
.rabeea-store select,
.rabeea-store textarea,
.rabeea-store .input-text {
	border-radius: 4px !important;
}

/* Logo-based solid button palette. */
.rabeea-store .rb-btn--primary,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit,
.rabeea-store .button,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child {
	border-color: var(--rb-brand-primary) !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
}

.rabeea-store .rb-btn--primary:hover,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce #respond input#submit:hover,
.rabeea-store .button:hover,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout:hover,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child:hover {
	border-color: var(--rb-brand-primary-hover) !important;
	background: var(--rb-brand-primary-hover) !important;
	background-image: none !important;
	color: #fff !important;
}

.rabeea-store .rb-btn--ghost,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:first-child {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.22) !important;
	background: #fff !important;
	background-image: none !important;
	color: var(--rb-brand-secondary) !important;
}
.rabeea-store .rb-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(112deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0) 70%);
	transform: translateX(-125%);
	transition: transform 620ms var(--rb-ease-standard);
	z-index: -1;
}

.rabeea-store .rb-btn::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
	opacity: 0;
	transition: opacity var(--rb-duration-base) var(--rb-ease-standard);
	z-index: -1;
}

.rabeea-store .rb-btn:hover {
	transform: translateY(-3px) scale(1.01);
	box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
}

.rabeea-store .rb-btn:hover::before {
	transform: translateX(125%);
}

.rabeea-store .rb-btn:hover::after {
	opacity: 1;
}

.rabeea-store .rb-btn:active {
	transform: translateY(-1px) scale(0.995);
}

.rabeea-store .rb-btn--primary {
	background: linear-gradient(135deg, var(--rb-brand-primary) 0%, var(--rb-brand-secondary) 100%);
	border-color: var(--rb-brand-primary);
	color: var(--rb-text-inverse);
}

.rabeea-store .rb-btn--primary:hover {
	background: linear-gradient(135deg, var(--rb-brand-primary-hover) 0%, var(--rb-brand-secondary) 100%);
	border-color: var(--rb-brand-primary-hover);
	color: var(--rb-text-inverse);
}

.rabeea-store .rb-btn--ghost {
	border-color: var(--rb-border-default);
	color: var(--rb-text-body);
	background-color: var(--rb-surface-base);
	box-shadow: 0 8px 18px rgba(58, 35, 20, 0.08);
}

.rabeea-store .rb-btn--ghost:hover {
	border-color: var(--rb-brand-secondary);
	color: var(--rb-brand-secondary);
	box-shadow: 0 14px 28px rgba(192, 109, 47, 0.18);
}

.rabeea-store .rb-input {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 1rem;
	border: 1px solid var(--rb-border-default);
	border-radius: var(--rb-radius-sm);
	background-color: var(--rb-surface-base);
	color: var(--rb-text-strong);
	font-family: inherit;
	font-size: var(--rb-font-size-200);
	transition: var(--rb-transition-fast);
}

.rabeea-store .rb-input::placeholder {
	color: var(--rb-text-muted);
}

.rabeea-store .rb-input:focus {
	outline: none;
	border-color: var(--rb-brand-secondary);
	box-shadow: 0 0 0 3px var(--rb-focus-ring);
}

.rabeea-store .rb-card {
	padding: var(--rb-space-6);
	border: 1px solid var(--rb-border-default);
	border-radius: var(--rb-radius-lg);
	background: linear-gradient(160deg, var(--rb-surface-base) 60%, var(--rb-surface-soft) 100%);
	box-shadow: var(--rb-shadow-sm);
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 10% 6%, rgba(17, 24, 39, 0.10), transparent 48%);
	opacity: 0;
	transition: opacity var(--rb-duration-base) var(--rb-ease-standard);
	pointer-events: none;
}

.rabeea-store .rb-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--rb-shadow-md);
	border-color: var(--rb-border-strong);
}

.rabeea-store .rb-card:hover::before {
	opacity: 1;
}

.rabeea-store [data-rb-tilt] {
	will-change: transform;
}

.rabeea-store .rb-card__title {
	font-size: var(--rb-font-size-400);
	font-weight: 700;
	margin-bottom: var(--rb-space-3);
}

.rabeea-store .rb-card__title a {
	color: var(--rb-text-strong);
}

.rabeea-store .rb-card__content {
	color: var(--rb-text-body);
}

.rabeea-store .rb-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.34rem 0.76rem;
	border-radius: var(--rb-radius-pill);
	background-color: var(--rb-surface-muted);
	color: var(--rb-brand-primary);
	font-size: var(--rb-font-size-100);
	font-weight: 700;
}

.rabeea-store .rb-announcement {
	background-color: var(--rb-brand-primary);
	color: var(--rb-text-inverse);
}

.rabeea-store .rb-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--rb-space-2) 0;
	gap: var(--rb-space-3);
}

.rabeea-store .rb-announcement__link,
.rabeea-store .rb-announcement__text {
	color: inherit;
	font-size: var(--rb-font-size-200);
	font-weight: 600;
}

.rabeea-store .rb-announcement__close {
	width: 2rem;
	height: 2rem;
	border: 1px solid var(--rb-inverse-border);
	border-radius: var(--rb-radius-pill);
	background: transparent;
	color: inherit;
	font-size: var(--rb-font-size-200);
	cursor: pointer;
	transition: var(--rb-transition-fast);
}

.rabeea-store .rb-announcement__close:hover {
	background-color: var(--rb-inverse-hover);
}

.rabeea-store .rb-header {
	position: relative;
	z-index: 120;
	border-bottom: 1px solid rgba(var(--rb-brand-primary-rgb), 0.1);
	background: #fff;
	backdrop-filter: none;
	box-shadow: 0 10px 22px rgba(var(--rb-surface-contrast-rgb), 0.08);
}

body.home .rabeea-store .rb-header {
	position: relative;
	top: auto;
	inset-inline: 0;
	border-bottom: 1px solid rgba(var(--rb-brand-primary-rgb), 0.1);
	background: #fff;
	box-shadow: 0 10px 22px rgba(var(--rb-surface-contrast-rgb), 0.08);
}

body.home .rabeea-store .rb-header::before {
	content: none;
}

.rabeea-store .rb-header > .container {
	position: relative;
	z-index: 1;
}

body.admin-bar .rabeea-store .rb-header {
	--rb-admin-bar-offset: 32px;
}

body.home .rabeea-store .rb-brand {
	color: var(--rb-text-strong);
}

body.home .rabeea-store .rb-menu a {
	color: var(--rb-text-body);
}

body.home .rabeea-store .rb-menu a::after {
	background-color: var(--rb-brand-secondary);
}

body.home .rabeea-store .rb-menu a:hover,
body.home .rabeea-store .rb-menu > li.current-menu-item > a,
body.home .rabeea-store .rb-menu > li.current_page_item > a,
body.home .rabeea-store .rb-menu > li.current-menu-ancestor > a {
	color: var(--rb-brand-primary);
}

body.home .rabeea-store .rb-icon-link,
body.home .rabeea-store .rb-menu-toggle,
body.home .rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link,
body.home .rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
	background: rgba(255, 255, 255, 0.95) !important;
	border-color: rgba(var(--rb-brand-primary-rgb), 0.14) !important;
	color: var(--rb-brand-primary);
}

body.home .rabeea-store .rb-icon-link:hover,
body.home .rabeea-store .rb-menu-toggle:hover {
	color: var(--rb-brand-secondary);
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.42) !important;
	box-shadow: 0 12px 24px rgba(var(--rb-brand-primary-rgb), 0.14);
}

body.home .rabeea-store .rb-menu-toggle span {
	background-color: var(--rb-brand-primary);
}

.rabeea-store .rb-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: var(--rb-space-4);
	padding-block: 0.6rem;
}

.rabeea-store .rb-header__brand {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	max-width: 100%;
}

.rabeea-store .rb-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	margin-inline: 0;
}

.rabeea-store .rb-header__tools-wrap {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
}

.rabeea-store .rb-nav--desktop .rb-menu {
	justify-content: center;
}

.rabeea-store .rb-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--rb-space-3);
	max-width: 190px;
	min-width: 0;
	color: var(--rb-text-strong);
}

.rabeea-store .rb-brand__logo {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 52px;
	object-fit: contain;
	filter: none;
}

@media (max-width: 991px) {
	.rabeea-store .rb-brand {
		max-width: 155px;
	}

	.rabeea-store .rb-brand__logo {
		max-width: 155px;
		max-height: 46px;
	}
}

@media (max-width: 767px) {
	.rabeea-store .rb-brand {
		max-width: 118px;
	}

	.rabeea-store .rb-brand__logo {
		max-width: 118px;
		max-height: 38px;
	}
}

.rabeea-store .rb-brand__text {
	font-size: var(--rb-font-size-400);
	font-weight: 800;
	line-height: 1.2;
}

.rabeea-store .rb-nav {
	width: 100%;
}

.rabeea-store .rb-nav--desktop {
	width: auto;
}

.rabeea-store .rb-menu {
	display: flex;
	align-items: center;
	gap: var(--rb-space-6);
}

.rabeea-store .rb-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	color: var(--rb-text-body);
	font-weight: 700;
	position: relative;
}

.rabeea-store .rb-menu a::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background-color: var(--rb-brand-secondary);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-menu a:hover::after,
.rabeea-store .rb-menu > li.current-menu-item > a::after,
.rabeea-store .rb-menu > li.current_page_item > a::after,
.rabeea-store .rb-menu > li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.rabeea-store .rb-menu a:hover,
.rabeea-store .rb-menu > li.current-menu-item > a,
.rabeea-store .rb-menu > li.current_page_item > a,
.rabeea-store .rb-menu > li.current-menu-ancestor > a {
	color: var(--rb-brand-primary);
}

body.home .rabeea-store .rb-menu > li.current-menu-item > a[href*="#"]::after,
body.home .rabeea-store .rb-menu > li.current_page_item > a[href*="#"]::after,
body.home .rabeea-store .rb-menu > li.current-menu-ancestor > a[href*="#"]::after {
	transform: scaleX(0);
}

body.home .rabeea-store .rb-menu > li.current-menu-item > a[href*="#"],
body.home .rabeea-store .rb-menu > li.current_page_item > a[href*="#"],
body.home .rabeea-store .rb-menu > li.current-menu-ancestor > a[href*="#"] {
	color: var(--rb-text-body);
}

.rabeea-store .rb-header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--rb-space-2);
}

.rabeea-store .rb-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.58rem;
	border: 1px solid var(--rb-border-default);
	border-radius: var(--rb-radius-pill);
	background: linear-gradient(180deg, var(--rb-surface-base) 0%, var(--rb-surface-soft) 100%);
	color: var(--rb-text-body);
	position: relative;
	overflow: hidden;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), color var(--rb-duration-fast) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
	margin: 0 !important;
	padding: 0.58rem !important;
	background: linear-gradient(180deg, var(--rb-surface-base) 0%, var(--rb-surface-soft) 100%) !important;
	border: 1px solid var(--rb-border-default) !important;
	border-radius: var(--rb-radius-pill) !important;
	box-shadow: none !important;
	min-height: 0 !important;
}

.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link::after,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link::after {
	display: none !important;
}

.rabeea-store .rb-icon-link::before {
	content: "";
	position: absolute;
	inset: -28%;
	background: conic-gradient(from 180deg, rgba(192, 109, 47, 0), rgba(192, 109, 47, 0.24), rgba(192, 109, 47, 0));
	opacity: 0;
	transform: rotate(0deg);
	transition: opacity var(--rb-duration-base) var(--rb-ease-standard), transform var(--rb-duration-slow) var(--rb-ease-standard);
}

.rabeea-store .rb-icon-link:hover {
	color: var(--rb-brand-primary);
	border-color: var(--rb-brand-secondary);
	box-shadow: 0 16px 30px rgba(90, 47, 21, 0.22);
	transform: translateY(-3px) scale(1.03);
}

.rabeea-store .rb-icon-link:hover::before {
	opacity: 1;
	transform: rotate(90deg);
}

.rabeea-store .rb-icon-link svg {
	width: 17px;
	height: 17px;
	position: relative;
	z-index: 1;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-icon-link:hover svg {
	transform: scale(1.07);
}

.rabeea-store .rb-icon-link--search {
	cursor: pointer;
}

.rabeea-store .rb-header-cart,
.rabeea-store .rb-header-wishlist {
	position: relative;
	overflow: visible;
}

.rabeea-store .rb-cart-count {
	position: absolute;
	top: -8px;
	inset-inline-end: -9px;
	min-width: 20px;
	height: 20px;
	padding-inline: 4px;
	border-radius: var(--rb-radius-pill);
	background: linear-gradient(160deg, #ff4d6d 0%, #c9184a 100%);
	color: #ffffff;
	font-size: 10px;
	line-height: 20px;
	font-weight: 800;
	text-align: center;
	border: 2px solid var(--rb-surface-base);
	box-shadow: 0 10px 16px rgba(201, 24, 74, 0.35);
	opacity: 0;
	transform: scale(0.5);
	z-index: 3;
	transition: transform var(--rb-duration-fast) var(--rb-ease-standard), opacity var(--rb-duration-fast) var(--rb-ease-standard);
}

.rabeea-store .rb-cart-count.is-visible {
	opacity: 1;
	transform: scale(1);
	animation: rb-cart-badge-pulse 2.2s ease-in-out infinite;
}

.rabeea-store .rb-cart-count.is-bump {
	animation: rb-cart-badge-bump 480ms var(--rb-ease-standard) both;
}

@keyframes rb-cart-badge-pulse {
	0% {
		box-shadow: 0 10px 16px rgba(201, 24, 74, 0.35);
	}

	50% {
		box-shadow: 0 12px 22px rgba(201, 24, 74, 0.55);
	}

	100% {
		box-shadow: 0 10px 16px rgba(201, 24, 74, 0.35);
	}
}

@keyframes rb-cart-badge-bump {
	0% {
		transform: scale(1);
	}

	35% {
		transform: scale(1.28);
	}

	100% {
		transform: scale(1);
	}
}

.rabeea-store .rb-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0.55rem 0.62rem;
	border: 1px solid var(--rb-border-default);
	background: var(--rb-surface-base);
	border-radius: var(--rb-radius-sm);
	position: relative;
	transition: var(--rb-transition-fast);
}

.rabeea-store .rb-menu-toggle:hover {
	border-color: var(--rb-brand-secondary);
}

.rabeea-store .rb-menu-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	margin-inline: auto;
	background-color: var(--rb-text-strong);
	transform-origin: center;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), opacity var(--rb-duration-fast) var(--rb-ease-standard);
}

.rabeea-store .rb-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.rabeea-store .rb-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.rabeea-store .rb-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.rabeea-store .rb-nav--mobile {
	position: absolute;
	top: 100%;
	inset-inline: 0;
	z-index: 130;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	border-top: 1px solid transparent;
	background-color: var(--rb-surface-base);
	box-shadow: 0 16px 28px rgba(58, 35, 20, 0.1);
	transition: max-height var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), opacity var(--rb-duration-fast) var(--rb-ease-standard);
}

.rabeea-store .rb-nav--mobile.is-open {
	max-height: 72vh;
	opacity: 1;
	border-color: var(--rb-border-soft);
	overflow: auto;
}

.rabeea-store .rb-menu--mobile {
	flex-direction: column;
	align-items: flex-start;
	gap: var(--rb-space-1);
	padding: var(--rb-space-4) 0 var(--rb-space-6);
}

.rabeea-store .rb-menu--mobile li {
	width: 100%;
}

.rabeea-store .rb-menu--mobile a {
	display: block;
	width: 100%;
	padding: 0.55rem 0;
}

body.rb-search-open {
	overflow: hidden !important;
}

body > .rb-search-modal-host {
	position: relative;
}

.rabeea-store .rb-search-modal {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: grid;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	padding: clamp(1rem, 2.5vw, 2rem);
	transform: translateZ(0);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--rb-duration-base) var(--rb-ease-standard);
}

@media (max-width: 782px) {
	body.admin-bar .rabeea-store .rb-header {
		--rb-admin-bar-offset: 46px;
	}
}

.rabeea-store .rb-search-modal[hidden] {
	display: none;
}

.rabeea-store .rb-search-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.rabeea-store .rb-search-modal__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 14% 10%, rgba(192, 109, 47, 0.22), transparent 34%), radial-gradient(circle at 80% 86%, rgba(240, 180, 63, 0.16), transparent 38%), linear-gradient(135deg, rgba(34, 21, 14, 0.88) 0%, rgba(24, 15, 10, 0.9) 100%);
	backdrop-filter: blur(8px);
	cursor: pointer;
	z-index: 0;
	opacity: 0;
	transition: opacity var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-search-modal__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.86;
}

.rabeea-store .rb-search-modal__dialog {
	position: relative;
	z-index: 3;
	width: min(1020px, calc(100vw - 2rem));
	margin: 0 auto;
	padding: var(--rb-space-8);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--rb-radius-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 240, 224, 0.95) 100%);
	backdrop-filter: blur(14px);
	box-shadow: 0 36px 88px rgba(43, 27, 17, 0.36);
	opacity: 0;
	transform: translateY(28px) scale(0.98);
	transform-origin: center top;
	transition: opacity var(--rb-duration-base) var(--rb-ease-standard), transform var(--rb-duration-base) var(--rb-ease-standard);
	max-height: min(86vh, 760px);
	overflow: auto;
	direction: rtl;
	text-align: right;
}

.rabeea-store .rb-search-modal.is-open .rb-search-modal__dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.rabeea-store .rb-search-modal.is-open .rb-search-modal__overlay {
	opacity: 1;
}

.rabeea-store .rb-search-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rb-space-3);
	margin-bottom: var(--rb-space-4);
}

.rabeea-store .rb-search-modal__title {
	margin: 0;
	font-size: var(--rb-font-size-600);
}

.rabeea-store .rb-search-modal__close {
	width: 2.3rem;
	height: 2.3rem;
	border: 1px solid var(--rb-border-default);
	border-radius: var(--rb-radius-pill);
	background: var(--rb-surface-base);
	color: var(--rb-text-strong);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-search-modal__close:hover {
	transform: rotate(90deg);
	border-color: var(--rb-brand-secondary);
	box-shadow: 0 10px 20px rgba(90, 47, 21, 0.18);
}

.rabeea-store .rb-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: var(--rb-space-3);
}

.rabeea-store .rb-search-form__input {
	min-height: 54px;
	font-size: var(--rb-font-size-300);
	border-radius: 16px;
	border-width: 2px;
	text-align: right;
}

.rabeea-store .rb-search-form__submit {
	min-width: 118px;
}

.rabeea-store .rb-search-modal__meta {
	margin-top: var(--rb-space-5);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.4fr);
	gap: var(--rb-space-3);
	align-items: stretch;
}

.rabeea-store .rb-search-panel {
	padding: var(--rb-space-4);
	border: 1px solid var(--rb-border-soft);
	border-radius: var(--rb-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 238, 223, 0.95));
	display: grid;
	gap: var(--rb-space-3);
	align-content: start;
	min-height: 0;
}

.rabeea-store .rb-search-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--rb-space-2);
}

.rabeea-store .rb-search-panel__title {
	margin: 0;
	font-size: var(--rb-font-size-300);
	font-weight: 800;
	color: var(--rb-text-strong);
}

.rabeea-store .rb-search-modal__live,
.rabeea-store .rb-search-modal__tags,
.rabeea-store .rb-search-modal__recent {
	margin-top: 0;
}

.rabeea-store .rb-search-modal.is-searching .rb-search-modal__live {
	opacity: 0.82;
}

.rabeea-store .rb-search-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rb-space-2);
}

.rabeea-store .rb-search-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.38rem 0.72rem;
	border: 1px solid var(--rb-border-default);
	border-radius: var(--rb-radius-pill);
	background: #fff;
	color: var(--rb-text-body);
	font-size: var(--rb-font-size-100);
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-search-chip:hover {
	transform: translateY(-1px);
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.54);
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.1);
}

.rabeea-store .rb-search-modal__status {
	margin: 0;
	color: var(--rb-text-muted);
	font-size: var(--rb-font-size-100);
	font-weight: 700;
	display: none;
}

.rabeea-store .rb-search-modal__status.is-visible {
	display: block;
}

.rabeea-store .rb-search-modal__status.is-error {
	color: var(--rb-state-danger);
}

.rabeea-store .rb-search-results {
	display: grid;
	gap: var(--rb-space-3);
}

.rabeea-store .rb-search-results.is-live {
	max-height: 52vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding-inline-end: 2px;
}

.rabeea-store .rb-search-results.is-default {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-height: 44vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding-inline-end: 2px;
}

.rabeea-store .rb-search-results:empty {
	display: none;
}

.rabeea-store .rb-search-result {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: var(--rb-space-3);
	padding: 0.6rem;
	border: 1px solid var(--rb-border-default);
	border-radius: var(--rb-radius-md);
	background: linear-gradient(180deg, #fff 0%, #fbf3e8 100%);
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard);
	min-width: 0;
}

.rabeea-store .rb-search-result:hover {
	transform: translateY(-2px);
	border-color: var(--rb-brand-secondary);
	box-shadow: 0 16px 26px rgba(58, 35, 20, 0.12);
}

.rabeea-store .rb-search-result__thumb {
	display: block;
	width: 78px;
	height: 78px;
	border-radius: var(--rb-radius-sm);
	overflow: hidden;
	background-color: var(--rb-surface-soft);
}

.rabeea-store .rb-search-result__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	box-shadow: none;
}

.rabeea-store .rb-search-result__body {
	display: grid;
	align-content: center;
	gap: 0.22rem;
	min-width: 0;
}

.rabeea-store .rb-search-result__title {
	margin: 0;
	font-size: var(--rb-font-size-300);
	line-height: 1.4;
}

.rabeea-store .rb-search-result__title a {
	display: block;
	color: var(--rb-text-strong);
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.rabeea-store .rb-search-result__price {
	color: var(--rb-brand-primary);
	font-weight: 800;
}

.rabeea-store .rb-search-result__price del {
	color: var(--rb-text-muted);
	opacity: 1;
	font-size: 0.82em;
	margin-inline-end: 0.3rem;
	text-decoration-thickness: 1px;
}

.rabeea-store .rb-search-result__price ins {
	text-decoration: none;
	padding: 0.12rem 0.38rem;
	border-radius: var(--rb-radius-pill);
	background: var(--rb-state-success-bg);
	color: var(--rb-state-success);
	border: 1px solid var(--rb-state-success-border);
}

.rabeea-store .rb-search-modal__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--rb-space-2);
}

.rabeea-store .rb-search-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.38rem 0.74rem;
	border: 0;
	border-radius: var(--rb-radius-pill);
	font-size: var(--rb-font-size-100);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), filter var(--rb-duration-fast) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-search-tag:hover {
	transform: translateY(-1px);
	filter: saturate(1.08) brightness(1.02);
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.14);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(6n + 1) {
	background: linear-gradient(135deg, #0a9f64, #0f7f5f);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(6n + 2) {
	background: linear-gradient(135deg, #0f7bc7, #2069a5);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(6n + 3) {
	background: linear-gradient(135deg, #e67e22, #cc5e2f);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(6n + 4) {
	background: linear-gradient(135deg, #8844d8, #7240b8);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(6n + 5) {
	background: linear-gradient(135deg, #cf3ab2, #a9309f);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(6n + 6) {
	background: linear-gradient(135deg, #1f9550, #117241);
}

.rabeea-store .rb-desktop-only {
	display: none;
}

.rabeea-store .rb-mobile-only {
	display: inline-flex;
}

.rabeea-store .rb-grid-gap {
	margin-top: calc(var(--rb-space-4) * -1);
}

.rabeea-store .rb-grid-gap > [class*="col-"] {
	margin-top: var(--rb-space-4);
}

.rabeea-store .rb-row-center {
	justify-content: center;
}

.rabeea-store .rb-footer {
	padding-top: var(--rb-space-16);
	padding-bottom: var(--rb-space-8);
	background: #1a1a1a;
	color: #e8e8e8;
	border-top: 3px solid #F59E0B;
}

.rabeea-store .rb-footer__title {
	margin-bottom: var(--rb-space-4);
	color: var(--rb-text-inverse);
	font-size: var(--rb-font-size-300);
}

.rabeea-store .rb-footer__brand {
	margin-bottom: var(--rb-space-4);
}

.rabeea-store .rb-footer__logo {
	display: block;
	max-width: min(100%, 240px);
	max-height: 96px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: brightness(100);
}

.rabeea-store .rb-footer__text {
	color: var(--rb-inverse-soft);
	font-size: var(--rb-font-size-200);
}

.rabeea-store .rb-footer__contact {
	margin-bottom: var(--rb-space-2);
	color: var(--rb-inverse-strong);
	font-weight: 600;
}

.rabeea-store .rb-footer__contact a {
	color: inherit;
	text-decoration: none;
}

.rabeea-store .rb-footer__contact a:hover,
.rabeea-store .rb-footer__contact a:focus-visible {
	color: var(--rb-brand-accent);
	text-decoration: underline;
	outline: none;
}

.rabeea-store .rb-footer__phones {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.5rem;
	color: var(--rb-inverse-strong);
}

.rabeea-store .rb-footer__phone {
	display: inline-flex;
	align-items: center;
	color: inherit;
	font-size: var(--rb-font-size-200);
	font-weight: 700;
	line-height: 1.7;
	text-decoration: none;
	transition: color 220ms ease;
}

.rabeea-store .rb-footer__phone:hover,
.rabeea-store .rb-footer__phone:focus-visible {
	color: var(--rb-brand-accent);
	outline: none;
}

.rabeea-store .rb-footer__phone + .rb-footer__phone::before {
	content: "-";
	margin-inline: 0.35rem;
	color: var(--rb-inverse-soft);
	font-weight: 800;
}

.rabeea-store .rb-footer-social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1rem;
}

.rabeea-store .rb-footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #ffffff;
	text-decoration: none;
	transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.rabeea-store .rb-footer-social__link:hover,
.rabeea-store .rb-footer-social__link:focus-visible {
	transform: translateY(-2px);
	background: #ffffff;
	border-color: #ffffff;
	outline: none;
}

.rabeea-store .rb-footer-social__link img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.rabeea-store .rb-footer-social__link span {
	color: inherit;
	font-weight: 800;
	line-height: 1;
}

@media (max-width: 575px) {
	.rabeea-store .rb-footer__phones {
		display: grid;
		gap: 0.18rem;
	}

	.rabeea-store .rb-footer__phone + .rb-footer__phone::before {
		display: none;
	}
}

/* No-gradient final pass: buttons use the IKEA yellow as the main action color. */
.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit,
.rabeea-store .rb-icon-link,
.rabeea-store .rb-menu-toggle,
.rabeea-store .rb-card,
.rabeea-store .rb-search-modal__dialog,
.rabeea-store .rb-search-panel,
.rabeea-store .rb-search-result,
.rabeea-store .rb-product-card,
.rabeea-store .product,
.rabeea-store .rb-search-form,
.rabeea-store .rb-search-form__mobile-shell,
.rabeea-store .rb-header,
body.home .rabeea-store .rb-header,
.rabeea-store .rb-sticky-header {
	background-image: none !important;
}

.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit {
	background: #111827 !important;
	border-color: #111827 !important;
	color: #ffffff !important;
}

.rabeea-store .rb-btn:hover,
.rabeea-store .button:hover,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce #respond input#submit:hover {
	background: #F59E0B !important;
	border-color: #F59E0B !important;
	color: #111827 !important;
}

.rabeea-store input::placeholder,
.rabeea-store textarea::placeholder,
.rabeea-store .rb-input::placeholder,
.rabeea-store .input-text::placeholder,
.rabeea-store .search-field::placeholder {
	color: #6d7d90 !important;
	opacity: 1 !important;
}

.rabeea-store input,
.rabeea-store textarea,
.rabeea-store select,
.rabeea-store .rb-input,
.rabeea-store .input-text {
	color: #10243a !important;
	caret-color: #F59E0B;
}

.rabeea-store .rb-footer-menu,
.rabeea-store .rb-legal-menu {
	display: grid;
	gap: var(--rb-space-2);
}

.rabeea-store .rb-footer-menu a,
.rabeea-store .rb-legal-menu a {
	color: #FFF;
	font-size: var(--rb-font-size-200);
}

.rabeea-store .rb-footer-menu a:hover,
.rabeea-store .rb-legal-menu a:hover {
	color: var(--rb-brand-accent);
}

.rabeea-store .rb-newsletter__form {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--rb-space-3);
}

.rabeea-store .rb-footer .rb-input {
	background-color: var(--rb-surface-base-elevated);
}

.rabeea-store .rb-footer__bottom {
	margin-top: var(--rb-space-8);
	padding-top: var(--rb-space-4);
	border-top: 1px solid var(--rb-inverse-border-soft);
	display: flex;
	flex-wrap: wrap;
	gap: var(--rb-space-4);
	align-items: center;
	justify-content: space-between;
}

.rabeea-store .rb-copyright {
	color: var(--rb-inverse-mid);
	font-size: var(--rb-font-size-200);
}

body.xoo-wsc-cart-active .rabeea-store .rb-header-cart {
	border-color: var(--rb-brand-secondary);
	box-shadow: 0 14px 28px rgba(192, 109, 47, 0.22);
}

/* Side cart typography normalization */
body .xoo-wsc-modal,
body .xoo-wsc-container,
body .xoo-wsc-slider {
	font-family: "Cairo", sans-serif !important;
	letter-spacing: normal;
}

html[dir='rtl'] body .xoo-wsc-modal,
html[dir='rtl'] body .xoo-wsc-container,
html[dir='rtl'] body .xoo-wsc-slider {
	direction: rtl;
	text-align: right;
}

html[dir='ltr'] body .xoo-wsc-modal,
html[dir='ltr'] body .xoo-wsc-container,
html[dir='ltr'] body .xoo-wsc-slider {
	direction: ltr;
	text-align: left;
}

/* Side cart custom skin */
body .xoo-wsc-opac {
	background: radial-gradient(circle at 16% 12%, rgba(192, 109, 47, 0.2), transparent 40%), linear-gradient(140deg, rgba(34, 21, 14, 0.82), rgba(24, 15, 10, 0.9)) !important;
	backdrop-filter: blur(4px);
}

body .xoo-wsc-container,
body .xoo-wsc-slider {
	width: min(430px, calc(100vw - 1rem)) !important;
	background: linear-gradient(180deg, var(--rb-surface-base) 0%, #faefe0 100%) !important;
	color: var(--rb-text-strong) !important;
	border-inline-start: 1px solid var(--rb-border-soft);
	box-shadow: -20px 0 42px rgba(43, 27, 17, 0.26);
}

html[dir='rtl'] body .xoo-wsc-container,
html[dir='rtl'] body .xoo-wsc-slider {
	border-inline-start: 0;
	border-inline-end: 1px solid var(--rb-border-soft);
	box-shadow: 20px 0 42px rgba(43, 27, 17, 0.26);
}

body .xoo-wsc-header {
	padding: 0.9rem 0.95rem !important;
	border-bottom: 1px solid var(--rb-border-soft) !important;
	background: linear-gradient(160deg, #fff8ec 0%, #f4e2ca 100%) !important;
}

body .xoo-wsch-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
}

body .xoo-wsch-text {
	color: var(--rb-text-strong);
	font-size: 1.08rem;
	font-weight: 800;
}

body .xoo-wsch-items-count,
body .xoo-wsc-items-count,
body .xoo-wsc-sc-count {
	background: linear-gradient(150deg, var(--rb-brand-accent) 0%, var(--rb-brand-accent-hover) 100%) !important;
	color: var(--rb-text-strong) !important;
	border: 2px solid var(--rb-surface-base) !important;
	box-shadow: 0 8px 16px rgba(240, 180, 63, 0.36);
}

body .xoo-wsch-close,
body .xoo-wsc-cart-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	border-radius: 20px;
	border: 1px solid var(--rb-border-default);
	background: var(--rb-surface-base);
	color: var(--rb-text-strong);
	cursor: pointer;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard);
}

body .xoo-wsch-close:hover,
body .xoo-wsc-cart-close:hover {
	transform: rotate(90deg);
	border-color: var(--rb-brand-secondary);
	box-shadow: 0 10px 20px rgba(90, 47, 21, 0.18);
}

body .xoo-wsc-body {
	background: transparent !important;
	padding: 0.8rem 0.8rem 0.4rem !important;
}

body .xoo-wsc-product-cont,
body .xoo-wsc-product {
	border: 1px solid var(--rb-border-default);
	border-radius: 16px;
	background: linear-gradient(170deg, #fff 0%, var(--rb-surface-soft) 100%);
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.08);
}

body .xoo-wsc-product {
	padding: 0.62rem;
	margin-bottom: 0.62rem;
}

body .xoo-wsc-img-col {
	border-radius: 12px;
	overflow: hidden;
	background: var(--rb-surface-soft);
}

body .xoo-wsc-img-col img {
	object-fit: contain;
}

body .xoo-wsc-pname,
body .xoo-wsc-pname a {
	color: var(--rb-text-strong) !important;
	font-weight: 700;
}

body .xoo-wsc-pname a:hover {
	color: var(--rb-brand-primary) !important;
}

body .xoo-wsc-smr-del {
	color: var(--rb-brand-primary) !important;
	transition: color var(--rb-duration-fast) var(--rb-ease-standard), transform var(--rb-duration-fast) var(--rb-ease-standard);
}

body .xoo-wsc-smr-del:hover {
	color: var(--rb-state-danger) !important;
	transform: scale(1.06);
}

body .xoo-wsc-qty-price,
body .xoo-wsc-sml-qty,
body .xoo-wsc-product dl.variation,
body .xoo-wsc-product dl.variation p {
	color: var(--rb-text-muted);
}

body .xoo-wsc-smr-ptotal,
body .xoo-wsc-card-ptotal,
body .xoo-wsc-pprice .amount,
body .xoo-wsc-priceBox .amount {
	color: var(--rb-brand-primary);
	font-weight: 800;
}

body .xoo-wsc-psavings,
body .xoo-wsc-psavings .amount {
	color: var(--rb-state-success);
	font-weight: 700;
}

body .xoo-wsc-footer {
	padding: 0.85rem !important;
	border-top: 1px solid var(--rb-border-soft) !important;
	background: linear-gradient(180deg, #fff8ed 0%, #f4e1c5 100%) !important;
}

body .xoo-wsc-ft-totals {
	display: grid;
	gap: 0.45rem;
}

body .xoo-wsc-ft-amt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.55rem;
	padding: 0.5rem 0.65rem;
	border: 1px solid var(--rb-border-default);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.86);
}

body .xoo-wsc-ft-amt-label {
	color: var(--rb-text-muted);
	font-weight: 600;
}

body .xoo-wsc-ft-amt-value {
	color: var(--rb-text-strong);
	font-weight: 800;
}

body .xoo-wsc-ft-amt-total {
	border-color: rgba(192, 109, 47, 0.4);
	background: rgba(240, 180, 63, 0.14);
}

body .xoo-wsc-ft-buttons-cont {
	display: grid;
	gap: 0.5rem;
	margin-top: 0.65rem;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
body .xoo-wsc-container .xoo-wsc-btn {
	min-height: 44px;
	border-radius: 20px !important;
	border: 0 !important;
	font-weight: 700;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard), filter var(--rb-duration-base) var(--rb-ease-standard);
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child {
	background: linear-gradient(135deg, var(--rb-brand-primary), var(--rb-brand-secondary)) !important;
	color: var(--rb-text-inverse) !important;
	box-shadow: 0 12px 20px rgba(90, 47, 21, 0.26);
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:first-child {
	background: var(--rb-surface-base) !important;
	color: var(--rb-text-body) !important;
	border: 1px solid var(--rb-border-default) !important;
	box-shadow: none;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
body .xoo-wsc-container .xoo-wsc-btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.04);
}

body .xoo-wsc-empty-cart {
	padding: 1rem 0.5rem;
	color: var(--rb-text-muted);
}

body .xoo-wsc-empty-cart .xoo-wsc-btn {
	margin-top: 0.5rem;
}

@media (max-width: 575px) {
	body .xoo-wsc-container,
	body .xoo-wsc-slider {
		width: calc(100vw - 0.35rem) !important;
	}
}

@media (min-width: 992px) {
	.rabeea-store .rb-desktop-only {
		display: block;
	}

	.rabeea-store .rb-mobile-only {
		display: none;
	}
}

@media (max-width: 991px) {
	.rabeea-store .rb-search-modal__meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rabeea-store .rb-search-modal__live {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.rabeea-store .rb-header-tools {
		gap: 0.35rem;
	}

	.rabeea-store .rb-icon-link,
	.rabeea-store .rb-menu-toggle {
		padding: 0.48rem;
	}

	.rabeea-store .rb-search-form {
		grid-template-columns: 1fr;
	}

	.rabeea-store .rb-search-modal__dialog {
		padding: var(--rb-space-6);
		max-height: 88vh;
		width: min(1020px, calc(100vw - 1.5rem));
	}

	.rabeea-store .rb-search-modal {
		padding: var(--rb-space-4);
	}

	.rabeea-store .rb-search-modal__meta {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--rb-space-2);
	}

	.rabeea-store .rb-search-panel {
		padding: var(--rb-space-3);
	}

	.rabeea-store .rb-search-results.is-default {
		grid-template-columns: minmax(0, 1fr);
		max-height: 42vh;
	}

	.rabeea-store .rb-search-results.is-live {
		max-height: 42vh;
	}

	.rabeea-store .rb-search-result {
		grid-template-columns: 64px 1fr;
	}

	.rabeea-store .rb-search-result__thumb {
		width: 64px;
		height: 64px;
	}

	.rabeea-store .rb-search-chip,
	.rabeea-store .rb-search-tag {
		padding: 0.34rem 0.62rem;
		font-size: 0.73rem;
	}
}

/* Overlay Harmony Layer */
.rabeea-store .rb-btn--ghost:hover {
	box-shadow: 0 14px 28px rgba(var(--rb-brand-primary-rgb), 0.16);
}

.rabeea-store .rb-icon-link::before {
	background: conic-gradient(from 180deg, rgba(var(--rb-brand-accent-rgb), 0), rgba(var(--rb-brand-accent-rgb), 0.22), rgba(var(--rb-brand-accent-rgb), 0));
}

.rabeea-store .rb-icon-link:hover {
	box-shadow: 0 16px 30px rgba(var(--rb-brand-primary-rgb), 0.2);
}

.rabeea-store .rb-cart-count {
	box-shadow: 0 10px 16px rgba(201, 24, 74, 0.35);
}

@keyframes rb-cart-badge-pulse {
	0% {
		box-shadow: 0 10px 16px rgba(201, 24, 74, 0.35);
	}

	50% {
		box-shadow: 0 12px 22px rgba(var(--rb-brand-accent-rgb), 0.58);
	}

	100% {
		box-shadow: 0 10px 16px rgba(var(--rb-brand-accent-rgb), 0.42);
	}
}

.rabeea-store .rb-search-modal__overlay {
	background: radial-gradient(circle at 14% 10%, rgba(var(--rb-brand-secondary-rgb), 0.2), transparent 34%), radial-gradient(circle at 80% 86%, rgba(var(--rb-brand-accent-rgb), 0.14), transparent 38%), linear-gradient(135deg, rgba(var(--rb-surface-contrast-rgb), 0.88) 0%, rgba(var(--rb-brand-primary-rgb), 0.9) 100%);
}

.rabeea-store .rb-search-modal__dialog {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.18);
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.97) 0%, rgba(238, 244, 247, 0.95) 100%);
	box-shadow: 0 36px 88px rgba(var(--rb-surface-contrast-rgb), 0.32);
}

.rabeea-store .rb-search-modal__close:hover {
	box-shadow: 0 10px 20px rgba(var(--rb-brand-primary-rgb), 0.16);
}

.rabeea-store .rb-search-modal__live {
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(238, 244, 247, 0.96));
}

.rabeea-store .rb-search-result {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 247, 0.92) 100%);
}

.rabeea-store .rb-search-result:hover {
	box-shadow: 0 16px 26px rgba(var(--rb-brand-primary-rgb), 0.12);
}

.rabeea-store .rb-search-result__price ins {
	background: var(--rb-state-danger-bg);
	color: var(--rb-state-danger);
}

.rabeea-store .rb-search-tag:hover {
	background: rgba(var(--rb-brand-secondary-rgb), 0.08);
}

body .xoo-wsc-opac {
	background: radial-gradient(circle at 16% 12%, rgba(var(--rb-brand-secondary-rgb), 0.18), transparent 40%), radial-gradient(circle at 82% 80%, rgba(var(--rb-brand-accent-rgb), 0.12), transparent 38%), linear-gradient(140deg, rgba(var(--rb-surface-contrast-rgb), 0.82), rgba(var(--rb-brand-primary-rgb), 0.9)) !important;
}

body .xoo-wsc-container,
body .xoo-wsc-slider {
	background: linear-gradient(180deg, var(--rb-surface-base) 0%, var(--rb-surface-soft) 100%) !important;
	box-shadow: -20px 0 42px rgba(var(--rb-surface-contrast-rgb), 0.22);
}

html[dir='rtl'] body .xoo-wsc-container,
html[dir='rtl'] body .xoo-wsc-slider {
	box-shadow: 20px 0 42px rgba(var(--rb-surface-contrast-rgb), 0.22);
}

body .xoo-wsc-header {
	background: linear-gradient(160deg, rgba(248, 250, 252, 0.98) 0%, rgba(238, 244, 247, 0.96) 100%) !important;
}

body .xoo-wsch-items-count,
body .xoo-wsc-items-count,
body .xoo-wsc-sc-count {
	box-shadow: 0 8px 16px rgba(var(--rb-brand-accent-rgb), 0.34);
}

body .xoo-wsch-close:hover,
body .xoo-wsc-cart-close:hover {
	box-shadow: 0 10px 20px rgba(var(--rb-brand-primary-rgb), 0.16);
}

body .xoo-wsc-product-cont,
body .xoo-wsc-product {
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 247, 0.92) 100%);
	box-shadow: 0 10px 18px rgba(var(--rb-surface-contrast-rgb), 0.08);
}

body .xoo-wsc-footer {
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(238, 244, 247, 0.96) 100%) !important;
}

body .xoo-wsc-ft-amt-total {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.34);
	background: rgba(var(--rb-brand-accent-rgb), 0.12);
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child {
	box-shadow: 0 12px 20px rgba(var(--rb-brand-primary-rgb), 0.24);
}

/* Professional side cart */
.rabeea-store .rb-btn,
.rabeea-store button,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store input[type="submit"],
.rabeea-store input[type="button"],
.rabeea-store input[type="reset"] {
	border-radius: 14px !important;
}

.rabeea-store input,
.rabeea-store select,
.rabeea-store textarea,
.rabeea-store .input-text {
	border-radius: 16px !important;
}

.rabeea-store .rb-card {
	border-radius: 24px;
}

body.xoo-wsc-cart-active .rabeea-store .rb-header-cart {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.32);
	box-shadow: 0 18px 34px rgba(var(--rb-brand-primary-rgb), 0.18);
}

body .xoo-wsc-container,
body .xoo-wsc-slider {
	width: min(448px, calc(100vw - 0.9rem)) !important;
	background:
		radial-gradient(circle at 100% 0, rgba(var(--rb-brand-accent-rgb), 0.12), transparent 28%),
		linear-gradient(180deg, rgba(247, 249, 252, 0.98) 0%, rgba(234, 241, 246, 0.97) 100%) !important;
	border-inline-start: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08);
	box-shadow: -28px 0 60px rgba(var(--rb-surface-contrast-rgb), 0.22);
}

html[dir='rtl'] body .xoo-wsc-container,
html[dir='rtl'] body .xoo-wsc-slider {
	box-shadow: 28px 0 60px rgba(var(--rb-surface-contrast-rgb), 0.22);
}

body .xoo-wsc-header {
	padding: 1rem 1rem 0.9rem !important;
	border-bottom: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 242, 247, 0.9) 100%) !important;
	position: relative;
}

body .xoo-wsc-header::after {
	content: "";
	position: absolute;
	inset-inline: 1rem;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(var(--rb-brand-secondary-rgb), 0.28), transparent);
}

body .xoo-wsch-text {
	font-size: 1.12rem;
	font-weight: 800;
}

body .xoo-wsch-items-count,
body .xoo-wsc-items-count,
body .xoo-wsc-sc-count {
	min-width: 2rem;
	min-height: 2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--rb-brand-accent) 0%, var(--rb-brand-accent-hover) 100%) !important;
	color: var(--rb-brand-primary) !important;
	border: 2px solid rgba(255, 255, 255, 0.92) !important;
	box-shadow: 0 12px 22px rgba(var(--rb-brand-accent-rgb), 0.28);
}

body .xoo-wsch-close,
body .xoo-wsc-cart-close {
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	border-color: rgba(var(--rb-brand-primary-rgb), 0.1);
	background: rgba(255, 255, 255, 0.88);
}

body .xoo-wsc-body {
	padding: 0.9rem 0.9rem 0.45rem !important;
}

body .xoo-wsc-product-cont {
	margin-bottom: 0.75rem;
}

body .xoo-wsc-product {
	padding: 0.82rem;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 242, 247, 0.92) 100%);
	box-shadow: 0 14px 28px rgba(var(--rb-surface-contrast-rgb), 0.08);
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard), border-color var(--rb-duration-fast) var(--rb-ease-standard);
}

body .xoo-wsc-product:hover {
	transform: translateY(-2px);
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.18);
	box-shadow: 0 18px 36px rgba(var(--rb-brand-primary-rgb), 0.12);
}

body .xoo-wsc-img-col {
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(var(--rb-brand-accent-rgb), 0.14), transparent 36%),
		linear-gradient(180deg, rgba(245, 247, 251, 0.96) 0%, rgba(226, 236, 244, 0.92) 100%);
}

body .xoo-wsc-product a img,
body .xoo-wsc-img-col img {
	border-radius: 14px;
}

body .xoo-wsc-sum-col,
body .xoo-wsc-sm-front,
body .xoo-wsc-sm-back {
	display: grid;
	gap: 0.38rem;
}

body .xoo-wsc-sm-info {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem;
	align-items: start;
}

body .xoo-wsc-sm-left {
	display: grid;
	gap: 0.34rem;
}

body .xoo-wsc-sm-right {
	display: grid;
	gap: 0.45rem;
	justify-items: end;
}

body .xoo-wsc-pname,
body .xoo-wsc-pname a {
	font-size: 0.98rem;
	line-height: 1.6;
	font-weight: 800;
}

body .xoo-wsc-pname a:hover,
body .xoo-wsc-smr-link:hover {
	color: var(--rb-brand-primary) !important;
}

body .xoo-wsc-smr-link,
body .xoo-wsc-card-price,
body .xoo-wsc-pprice {
	color: var(--rb-text-body);
}

body .xoo-wsc-sml-qty,
body .xoo-wsc-card-price,
body .xoo-wsc-pprice,
body .xoo-wsc-qty-price,
body .xoo-wsc-product dl.variation,
body .xoo-wsc-product dl.variation p {
	font-size: 0.9rem;
}

body .xoo-wsc-sml-qty span,
body .xoo-wsc-qty-price > span,
body .xoo-wsc-smr-ptotal,
body .xoo-wsc-card-ptotal,
body .xoo-wsc-pprice .amount,
body .xoo-wsc-priceBox .amount {
	font-weight: 800;
}

body .xoo-wsc-smr-ptotal,
body .xoo-wsc-card-ptotal,
body .xoo-wsc-pprice .amount,
body .xoo-wsc-priceBox .amount {
	color: var(--rb-brand-primary);
}

body .xoo-wsc-psavings,
body .xoo-wsc-psavings .amount {
	width: fit-content;
	padding: 0.22rem 0.55rem;
	border-radius: 999px;
	background: rgba(var(--rb-brand-accent-rgb), 0.14);
	color: var(--rb-state-success);
}

body .xoo-wsc-smr-del {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08);
}

body .xoo-wsc-ft-amt {
	padding: 0.68rem 0.8rem;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.86);
}

body .xoo-wsc-ft-amt-total {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.22);
	background: linear-gradient(180deg, rgba(var(--rb-brand-accent-rgb), 0.12) 0%, rgba(255, 255, 255, 0.92) 100%);
}

body .xoo-wsc-footer {
	padding: 0.95rem !important;
	border-top: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 242, 247, 0.92) 100%) !important;
}

body .xoo-wsc-ft-buttons-cont {
	margin-top: 0.8rem;
	gap: 0.6rem;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
body .xoo-wsc-container .xoo-wsc-btn {
	min-height: 48px;
	border-radius: 16px !important;
	font-weight: 800;
	letter-spacing: 0.01em;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child {
	background: linear-gradient(135deg, var(--rb-brand-primary), var(--rb-brand-secondary)) !important;
	box-shadow: 0 16px 28px rgba(var(--rb-brand-primary-rgb), 0.22);
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-cart,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:first-child {
	background: rgba(255, 255, 255, 0.88) !important;
	color: var(--rb-text-body) !important;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
}

body .xoo-wsc-empty-cart {
	padding: 1.2rem 0.65rem;
	text-align: center;
}

/* Side cart compact alignment fix */
body .xoo-wsc-footer,
body .xoo-wsc-footer a,
body .xoo-wsc-footer .amount {
	font-size: 0.92rem !important;
}

body .xoo-wsc-ft-totals {
	gap: 0.38rem;
}

/* Header redesign */
.rabeea-store .rb-header {
	box-shadow: none;
	border-bottom: 1px solid #ece7df;
}

.rabeea-store .rb-header > .container {
	position: relative;
	direction: rtl;
}

.rabeea-store .rb-header__top {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas: "brand search tools";
	align-items: center;
	gap: 1.5rem;
	padding: 1rem 0 0.9rem;
}

.rabeea-store .rb-header__side {
	display: flex;
	align-items: center;
}

.rabeea-store .rb-header__side--brand {
	grid-area: brand;
	justify-self: end;
	gap: 1rem;
}

.rabeea-store .rb-header__side--tools {
	grid-area: tools;
	justify-self: start;
}

.rabeea-store .rb-header__brand {
	flex: 0 0 auto;
}

.rabeea-store .rb-header__delivery {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #1b4d3c;
}

.rabeea-store .rb-header__delivery-copy {
	display: grid;
	gap: 0.14rem;
	text-align: right;
}

.rabeea-store .rb-header__delivery-label {
	font-size: 0.82rem;
	color: #6a7d73;
}

.rabeea-store .rb-header__delivery-value {
	font-size: 0.95rem;
	font-weight: 800;
	color: #1b4d3c;
}

.rabeea-store .rb-header__delivery-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #f2f7f4;
	color: #1b4d3c;
}

.rabeea-store .rb-header__delivery-icon svg {
	width: 1rem;
	height: 1rem;
}

.rabeea-store .rb-header__search {
	grid-area: search;
	min-width: 0;
}

.rabeea-store .rb-search-form--header {
	position: relative;
	display: block;
}

.rabeea-store .rb-search-form__input--header {
	min-height: 3.65rem;
	padding-inline: 3.5rem 1.25rem;
	border: 0;
	border-radius: 999px !important;
	background: #f5f5f5;
	box-shadow: inset 0 0 0 1px #ededed;
	color: #27463b;
	font-size: 0.98rem;
	text-align: right;
}

.rabeea-store .rb-search-form__input--header::placeholder {
	color: #8b908d;
}

.rabeea-store .rb-search-form__input--header:focus {
	box-shadow: inset 0 0 0 2px rgba(var(--rb-brand-secondary-rgb), 0.14), 0 0 0 4px rgba(var(--rb-brand-secondary-rgb), 0.08);
}

.rabeea-store .rb-search-form__submit--header {
	position: absolute;
	inset-inline-start: 0.95rem;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: start;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #8b908d;
	box-shadow: none;
	transform: translateY(-50%);
}

.rabeea-store .rb-search-form__submit--header:hover {
	transform: translateY(-50%);
	box-shadow: none;
	color: #1b4d3c;
}

.rabeea-store .rb-search-form__submit--header svg {
	width: 1rem;
	height: 1rem;
}

.rabeea-store .rb-header-tools {
	gap: 0.7rem;
	direction: rtl;
}

.rabeea-store .rb-icon-link {
	width: 2.9rem;
	height: 2.9rem;
	padding: 0;
	border: 0;
	border-radius: 999px !important;
	background: #fff;
	box-shadow: none;
}

.rabeea-store .rb-icon-link::before {
	display: none;
}

.rabeea-store .rb-icon-link:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(20, 47, 34, 0.12);
}

.rabeea-store .rb-icon-link svg {
	width: 1.15rem;
	height: 1.15rem;
}

.rabeea-store .rb-header-tools .rb-icon-link--account,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link,
.rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link {
	width: auto;
	height: auto;
	padding: 0.58rem !important;
	border: 1px solid var(--rb-border-default) !important;
	border-radius: var(--rb-radius-pill) !important;
	background: linear-gradient(180deg, var(--rb-surface-base) 0%, var(--rb-surface-soft) 100%) !important;
	color: var(--rb-text-body) !important;
	box-shadow: none !important;
}

.rabeea-store .rb-header-tools .rb-icon-link--account:hover,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link:hover,
.rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link:hover {
	color: var(--rb-brand-primary) !important;
	border-color: var(--rb-hero-canvas-primary) !important;
	box-shadow: 0 12px 22px rgba(var(--rb-brand-primary-rgb), 0.12) !important;
}

.rabeea-store .rb-cart-count {
	top: -8px;
	inset-inline-end: -9px;
	min-width: 20px;
	width: auto;
	height: 20px;
	padding-inline: 4px;
	border: 2px solid var(--rb-surface-base);
	background: linear-gradient(160deg, var(--rb-brand-accent) 0%, var(--rb-brand-accent-hover) 100%);
	color: var(--rb-text-strong);
	font-size: 10px;
	line-height: 20px;
	box-shadow: 0 10px 16px rgba(var(--rb-brand-accent-rgb), 0.42);
}

.rabeea-store .rb-menu-toggle {
	width: 2.8rem;
	height: 2.8rem;
	padding: 0;
	border-radius: 999px !important;
	background: #fff;
	box-shadow: none;
}

.rabeea-store .rb-menu-toggle span {
	width: 15px;
	background-color: #1b4d3c;
}

.rabeea-store .rb-header__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.95rem 0 0.85rem;
	border-top: 1px solid #ece7df;
	direction: rtl;
}

.rabeea-store .rb-header__utility {
	flex: 0 0 auto;
}

.rabeea-store .rb-header-links {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	direction: rtl;
}

.rabeea-store .rb-header-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: #33594a;
	font-size: 0.96rem;
	font-weight: 600;
}

.rabeea-store .rb-header-link:hover {
	color: #1b4d3c;
}

.rabeea-store .rb-header-link__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	background: #ff9228;
	color: #fff;
	flex: 0 0 auto;
}

.rabeea-store .rb-header-link__icon svg {
	width: 0.85rem;
	height: 0.85rem;
}

.rabeea-store .rb-header-link__count {
	position: absolute;
	top: -6px;
	inset-inline-start: -7px;
	min-width: 1rem;
	height: 1rem;
	padding: 0 0.12rem;
	border-radius: 999px;
	background: linear-gradient(160deg, #ff4d6d 0%, #c9184a 100%);
	color: #ffffff;
	font-size: 0.62rem;
	font-weight: 800;
	line-height: 1rem;
	text-align: center;
	box-shadow: 0 0 0 1px rgba(201, 24, 74, 0.2);
}

.rabeea-store .rb-header__nav {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: start;
}

.rabeea-store .rb-nav--desktop .rb-menu {
	justify-content: flex-end;
	gap: 1.6rem;
}

.rabeea-store .rb-nav--desktop .rb-menu a {
	min-height: auto;
	font-size: 0.98rem;
	color: #2b4c40;
}

.rabeea-store .rb-nav--desktop .rb-menu a::after {
	bottom: -0.95rem;
}

.rabeea-store .rb-search-modal {
	position: absolute;
	inset-inline: 0;
	top: calc(100% - 1px);
	display: block;
	width: auto;
	height: auto;
	padding: 0.85rem 0 0;
	opacity: 0;
	pointer-events: none;
	z-index: 160;
}

.rabeea-store .rb-search-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.rabeea-store .rb-search-modal__overlay {
	position: fixed;
	inset: 0;
	background: transparent;
	backdrop-filter: none;
}

.rabeea-store .rb-search-modal__dialog {
	width: 100%;
	max-height: none;
	margin: 0;
	padding: 1.6rem;
	border: 1px solid #ece7df;
	border-radius: 0 0 1.35rem 1.35rem;
	background: #fff;
	box-shadow: 0 22px 48px rgba(34, 39, 36, 0.08);
	opacity: 0;
	transform: translateY(0.9rem);
	overflow: visible;
}

.rabeea-store .rb-search-modal.is-open .rb-search-modal__dialog {
	opacity: 1;
	transform: translateY(0);
}

.rabeea-store .rb-search-modal__head--mobile {
	display: none;
}

.rabeea-store .rb-search-form--modal {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
}

.rabeea-store .rb-search-form__mobile-shell {
	position: relative;
}

.rabeea-store .rb-search-form__mobile-icon {
	position: absolute;
	inset-inline-end: 1rem;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	color: #d19a6d;
	transform: translateY(-50%);
	pointer-events: none;
}

.rabeea-store .rb-search-form__mobile-icon svg,
.rabeea-store .rb-search-modal__back svg {
	width: 1rem;
	height: 1rem;
}

.rabeea-store .rb-search-form__input--modal {
	min-height: 3rem;
	padding-inline: 1rem 2.9rem;
	border: 1px solid #ece8de;
	border-radius: 1rem;
	background: #f8f8f5;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
	color: #27463b;
	font-size: 0.94rem;
	text-align: right;
}

.rabeea-store .rb-search-form__input--modal::placeholder {
	color: #a0a29e;
}

.rabeea-store .rb-search-form__input--modal:focus {
	box-shadow: inset 0 0 0 2px rgba(var(--rb-brand-secondary-rgb), 0.12), 0 0 0 3px rgba(var(--rb-brand-secondary-rgb), 0.07);
}

.rabeea-store .rb-search-modal__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #2e6d57;
	box-shadow: none;
}

.rabeea-store .rb-search-modal__meta {
	margin-top: 0;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1fr) minmax(0, 3fr);
	grid-template-areas: "recent tags live";
	gap: 2rem;
}

.rabeea-store .rb-search-modal__recent {
	grid-area: recent;
}

.rabeea-store .rb-search-modal__tags {
	grid-area: tags;
}

.rabeea-store .rb-search-modal__live {
	grid-area: live;
}

.rabeea-store .rb-search-panel {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	gap: 1rem;
}

.rabeea-store .rb-search-panel__title {
	padding-bottom: 0.9rem;
	border-bottom: 1px solid #ece7df;
	font-size: 1.05rem;
	color: #1b4d3c;
}

.rabeea-store .rb-search-chip-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.rabeea-store .rb-search-chip {
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid #e2e6e4;
	border-radius: 0.85rem;
	background: #fff;
	font-size: 0.96rem;
	color: #33594a;
}

.rabeea-store .rb-search-chip:hover {
	transform: none;
	border-color: #cfd8d3;
	box-shadow: none;
}

.rabeea-store .rb-search-modal__tags-list {
	gap: 0.8rem;
}

.rabeea-store .rb-search-tag {
	padding: 0.7rem 1rem;
	border-radius: 0.7rem;
	font-size: 0.92rem;
}

.rabeea-store .rb-search-results {
	gap: 0.85rem;
}

.rabeea-store .rb-search-results.is-default {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-height: none;
	overflow: visible;
}

.rabeea-store .rb-search-results.is-live {
	grid-template-columns: minmax(0, 1fr);
	max-height: 26rem;
}

.rabeea-store .rb-search-result {
	grid-template-columns: 82px 1fr;
	align-items: center;
	gap: 0.9rem;
	padding: 0.95rem;
	border: 0;
	border-radius: 0.95rem;
	background: #f7f7f7;
	box-shadow: none;
}

.rabeea-store .rb-search-result:hover {
	transform: none;
	border-color: transparent;
	box-shadow: none;
}

.rabeea-store .rb-search-result__thumb {
	width: 82px;
	height: 82px;
	border-radius: 0.75rem;
	background: transparent;
}

.rabeea-store .rb-search-result__thumb img {
	object-fit: contain;
}

.rabeea-store .rb-search-result__title {
	font-size: 1rem;
}

.rabeea-store .rb-search-result__price {
	color: #1b4d3c;
	font-size: 1.03rem;
	font-weight: 800;
}

.rabeea-store .rb-search-result__price ins {
	background: var(--rb-state-danger-bg);
	color: var(--rb-state-danger);
	padding: 0.12rem 0.38rem;
}

.rabeea-store .rb-search-modal__status {
	font-size: 0.78rem;
}

@media (max-width: 991px) {
	.rabeea-store .rb-header__top {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.9rem 1rem;
	}

	.rabeea-store .rb-header__side--brand {
		order: 1;
		flex: 0 1 auto;
		min-width: 0;
	}

	.rabeea-store .rb-header__side--tools {
		order: 2;
		flex: 0 0 auto;
		margin-inline-start: auto;
	}

	.rabeea-store .rb-header__search {
		order: 3;
		flex: 0 0 100%;
		width: 100%;
	}

	.rabeea-store .rb-header__delivery {
		display: none;
	}

	.rabeea-store .rb-search-modal__meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-areas:
			"tags recent"
			"live live";
		gap: 1.4rem;
	}

	.rabeea-store .rb-search-modal__live {
		grid-column: 1 / -1;
	}
}

@media (max-width: 339px) {
	.rabeea-store .rb-header__top {
		justify-content: center;
	}

	.rabeea-store .rb-header__side--tools {
		margin-inline-start: 0;
	}
}

@media (max-width: 767px) {
	.rabeea-store .rb-icon-link,
	.rabeea-store .rb-menu-toggle {
		width: 2.6rem;
		height: 2.6rem;
	}

	.rabeea-store .rb-search-form__input--header {
		min-height: 3.25rem;
		font-size: 0.92rem;
	}

	.rabeea-store .rb-search-modal {
		padding: calc(4.35rem + var(--rb-admin-bar-offset, 0px)) 0.75rem 0.75rem;
	}

	.rabeea-store .rb-search-modal__dialog {
		width: min(100%, 26rem);
		max-height: calc(100vh - 5.1rem - var(--rb-admin-bar-offset, 0px));
		padding: 0.95rem 0.95rem 1.1rem;
		border-radius: 1.35rem;
		border-color: #ece7df;
		background: #fff;
		box-shadow: 0 18px 42px rgba(33, 38, 36, 0.12);
	}

	.rabeea-store .rb-search-panel {
		gap: 0.7rem;
		padding-top: 0.9rem;
		border-top: 1px solid #efede7;
	}

	.rabeea-store .rb-search-modal__recent {
		padding-top: 0;
		border-top: 0;
	}

	.rabeea-store .rb-search-panel__title {
		padding-bottom: 0;
		border-bottom: 0;
		font-size: 0.95rem;
		font-weight: 800;
		color: #1f5a45;
	}

	.rabeea-store .rb-search-chip-list,
	.rabeea-store .rb-search-modal__tags-list {
		display: flex;
		flex-wrap: wrap;
		gap: 0.52rem;
	}

	.rabeea-store .rb-search-chip {
		min-height: 0;
		padding: 0.42rem 0.68rem;
		border-radius: 0.55rem;
		background: #fff;
		font-size: 0.74rem;
		color: #45685a;
	}

	.rabeea-store .rb-search-tag {
		padding: 0.42rem 0.72rem;
		border-radius: 0.48rem;
		font-size: 0.72rem;
		line-height: 1.1;
	}

	.rabeea-store .rb-search-modal.is-idle .rb-search-modal__live {
		display: grid;
	}

	.rabeea-store .rb-search-modal.has-query .rb-search-modal__recent,
	.rabeea-store .rb-search-modal.has-query .rb-search-modal__tags {
		display: none;
	}

	.rabeea-store .rb-header__bottom {
		display: none !important;
	}

	.rabeea-store .rb-search-modal {
		position: absolute;
		inset-inline: 0;
		top: calc(100% - 1px);
		padding: 0.75rem 0 0;
	}

	.rabeea-store .rb-search-modal__overlay {
		display: none;
	}

	.rabeea-store .rb-search-modal__dialog {
		width: 100%;
		max-height: none;
		margin: 0;
		padding: 1rem;
		border-radius: 0 0 1.15rem 1.15rem;
		overflow: visible;
		box-shadow: 0 18px 34px rgba(33, 38, 36, 0.1);
	}

	.rabeea-store .rb-search-modal__head--mobile {
		display: none !important;
	}

	.rabeea-store .rb-search-modal__meta {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"recent"
			"tags"
			"live";
		gap: 0.95rem;
	}

	.rabeea-store .rb-search-panel {
		padding-top: 0.85rem;
	}

	.rabeea-store .rb-search-modal__live {
		gap: 0.65rem;
	}

	.rabeea-store .rb-search-panel__head {
		align-items: center;
		gap: 0.5rem;
	}

	.rabeea-store .rb-search-panel__title {
		font-size: 0.88rem;
		line-height: 1.35;
	}

	.rabeea-store .rb-search-modal__status {
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.rabeea-store .rb-search-results {
		gap: 0.55rem;
	}

	.rabeea-store .rb-search-results.is-default,
	.rabeea-store .rb-search-results.is-live {
		grid-template-columns: minmax(0, 1fr);
		max-height: none;
		overflow: visible;
	}

	.rabeea-store .rb-search-result {
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 0.65rem;
		padding: 0.6rem;
		border-radius: 0.8rem;
	}

	.rabeea-store .rb-search-result__thumb {
		width: 56px;
		height: 56px;
		border-radius: 0.65rem;
	}

	.rabeea-store .rb-search-result__body {
		gap: 0.16rem;
	}

	.rabeea-store .rb-search-result__title {
		font-size: 0.82rem;
		line-height: 1.35;
	}

	.rabeea-store .rb-search-result__price {
		font-size: 0.82rem;
		line-height: 1.3;
	}

	.rabeea-store .rb-search-results.is-live {
		max-height: 20rem;
	}
}

body .xoo-wsc-ft-amt-label,
body .xoo-wsc-ft-amt-value {
	font-size: 0.92rem;
	line-height: 1.45;
}

body .xoo-wsc-ft-buttons-cont {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	align-items: stretch;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn {
	width: 100%;
	min-width: 0;
	padding: 0.72rem 0.78rem;
	font-size: 0.88rem !important;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child {
	grid-column: 1 / -1;
}

body .xoo-wsc-pattern-card .xoo-wsc-product {
	padding: 0 !important;
	overflow: hidden;
}

body .xoo-wsc-pattern-card .xoo-wsc-card-cont {
	display: flex;
	justify-content: flex-end;
	padding: 0.8rem 0.8rem 0;
}

body .xoo-wsc-pattern-card .xoo-wsc-img-col {
	width: 106px;
	max-width: 106px;
	min-width: 106px;
	margin: 0;
	border-radius: 18px;
}

body .xoo-wsc-pattern-card .xoo-wsc-img-col img {
	width: 100%;
}

body .xoo-wsc-pattern-card .xoo-wsc-sm-front {
	align-items: flex-start;
	text-align: right;
	padding: 0.75rem 0.9rem 0.95rem !important;
	gap: 0.28rem;
}

body .xoo-wsc-pattern-card .xoo-wsc-pname,
body .xoo-wsc-pattern-card .xoo-wsc-pname a {
	font-size: 0.92rem;
	line-height: 1.5;
}

body .xoo-wsc-pattern-card .xoo-wsc-card-price,
body .xoo-wsc-pattern-card .xoo-wsc-sml-qty,
body .xoo-wsc-pattern-card .xoo-wsc-card-ptotal,
body .xoo-wsc-pattern-card .xoo-wsc-qty-price,
body .xoo-wsc-pattern-card .xoo-wsc-product del .amount,
body .xoo-wsc-pattern-card .xoo-wsc-product ins .amount {
	font-size: 0.86rem;
	line-height: 1.45;
}

body .xoo-wsc-pattern-card .xoo-wsc-qty-box-cont {
	justify-content: flex-start;
	row-gap: 0.25rem;
	column-gap: 0.5rem;
}

body .xoo-wsc-pattern-card .xoo-wsc-psavings,
body .xoo-wsc-pattern-card .xoo-wsc-psavings .amount {
	padding: 0.2rem 0.48rem;
	font-size: 0.8rem;
}

body .xoo-wsc-pattern-card span.xoo-wsc-smr-del {
	top: 0.55rem;
	right: 0.55rem;
	padding: 0;
}

@media (max-width: 480px) {
	body .xoo-wsc-footer,
	body .xoo-wsc-footer a,
	body .xoo-wsc-footer .amount {
		font-size: 0.88rem !important;
	}

	body .xoo-wsc-ft-amt-label,
	body .xoo-wsc-ft-amt-value {
		font-size: 0.88rem;
	}

	body .xoo-wsc-ft-buttons-cont {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
	body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-checkout,
	body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:last-child {
		grid-column: 1 / -1;
		font-size: 0.84rem !important;
	}

	body .xoo-wsc-pattern-card .xoo-wsc-card-cont {
		padding: 0.72rem 0.72rem 0;
	}

	body .xoo-wsc-pattern-card .xoo-wsc-img-col {
		width: 92px;
		max-width: 92px;
		min-width: 92px;
	}

	body .xoo-wsc-pattern-card .xoo-wsc-sm-front {
		padding: 0.68rem 0.8rem 0.88rem !important;
	}

	body .xoo-wsc-pattern-card .xoo-wsc-pname,
	body .xoo-wsc-pattern-card .xoo-wsc-pname a {
		font-size: 0.88rem;
	}

body .xoo-wsc-pattern-card .xoo-wsc-card-price,
body .xoo-wsc-pattern-card .xoo-wsc-sml-qty,
body .xoo-wsc-pattern-card .xoo-wsc-card-ptotal,
body .xoo-wsc-pattern-card .xoo-wsc-qty-price {
		font-size: 0.82rem;
	}
}

/* Brand harmony refresh */
.rabeea-store .rb-btn {
	box-shadow: 0 12px 24px rgba(var(--rb-brand-primary-rgb), 0.16);
}

.rabeea-store .rb-btn:hover {
	box-shadow: 0 18px 34px rgba(var(--rb-brand-primary-rgb), 0.22);
}

.rabeea-store .rb-card::before {
	background: radial-gradient(circle at 10% 6%, rgba(var(--rb-brand-secondary-rgb), 0.12), transparent 48%);
}

.rabeea-store .rb-header {
	border-bottom: 1px solid var(--rb-border-soft);
	background: rgba(255, 252, 247, 0.96);
	box-shadow: 0 10px 22px rgba(var(--rb-surface-contrast-rgb), 0.06);
}

.rabeea-store .rb-header__side--brand {
	gap: 0;
}

.rabeea-store .rb-header__search {
	width: min(100%, 720px);
	justify-self: center;
}

.rabeea-store .rb-header__brand {
	display: flex;
	align-items: center;
}

.rabeea-store .rb-search-form__input--header {
	background: var(--rb-surface-base);
	box-shadow: inset 0 0 0 1px var(--rb-border-soft);
	color: var(--rb-text-strong);
}

.rabeea-store .rb-search-form__input--header::placeholder,
.rabeea-store .rb-search-form__submit--header {
	color: var(--rb-text-muted);
}

.rabeea-store .rb-search-form__submit--header:hover,
.rabeea-store .rb-header-link:hover,
.rabeea-store .rb-search-panel__title,
.rabeea-store .rb-search-result__price {
	color: var(--rb-brand-primary);
}

.rabeea-store .rb-menu-toggle span {
	background-color: var(--rb-brand-primary);
}

@media (max-width: 991px) {
	.rabeea-store .rb-header__search {
		width: 100%;
		max-width: none;
	}
}

.rabeea-store .rb-header__bottom,
.rabeea-store .rb-search-panel__title {
	border-color: var(--rb-border-soft);
}

.rabeea-store .rb-header-link {
	color: var(--rb-text-body);
}

.rabeea-store .rb-header-link__icon {
	background: linear-gradient(135deg, var(--rb-brand-accent) 0%, var(--rb-brand-accent-hover) 100%);
	color: var(--rb-text-inverse);
}

.rabeea-store .rb-header-link__count {
	background: linear-gradient(160deg, #ff4d6d 0%, #c9184a 100%);
	color: #ffffff;
	box-shadow: 0 0 0 1px rgba(201, 24, 74, 0.2);
}

.rabeea-store .rb-search-modal__dialog {
	border: 1px solid rgba(var(--rb-brand-accent-rgb), 0.18);
	background:
		radial-gradient(circle at 12% 10%, rgba(var(--rb-brand-accent-rgb), 0.08), transparent 26%),
		radial-gradient(circle at 88% 0%, rgba(var(--rb-brand-primary-rgb), 0.06), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 248, 253, 0.985) 100%);
	box-shadow:
		0 24px 56px rgba(var(--rb-surface-contrast-rgb), 0.12),
		0 0 0 1px rgba(var(--rb-brand-accent-rgb), 0.05);
}

.rabeea-store .rb-search-form__mobile-icon,
.rabeea-store .rb-search-modal__back {
	color: var(--rb-brand-accent);
}

.rabeea-store .rb-search-form__input--modal {
	border-color: var(--rb-border-soft);
	background: var(--rb-surface-base);
	color: var(--rb-text-strong);
}

.rabeea-store .rb-search-form__input--modal::placeholder {
	color: var(--rb-text-muted);
}

/* Final header search and notification badges cleanup - must stay last. */
.rabeea-store .rb-header-tools .rb-cart-count,
.rabeea-store .rb-header-tools [data-rb-cart-count],
.rabeea-store .rb-header-tools [data-rb-wishlist-count] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	top: -7px !important;
	inset-inline-end: -7px !important;
	min-width: 19px !important;
	height: 19px !important;
	padding: 0 5px !important;
	border: 2px solid var(--rb-surface-base) !important;
	border-radius: var(--rb-radius-pill) !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	box-shadow: 0 8px 16px rgba(var(--rb-brand-primary-rgb), 0.28) !important;
}

.rabeea-store .rb-search-form--header {
	display: flex !important;
	align-items: center !important;
	min-height: 48px !important;
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.14) !important;
	border-radius: 10px !important;
	background: var(--rb-surface-base) !important;
	box-shadow: 0 10px 24px rgba(var(--rb-surface-contrast-rgb), 0.05) !important;
	overflow: hidden !important;
	transition:
		border-color 260ms ease,
		box-shadow 260ms ease,
		transform 260ms ease !important;
}

.rabeea-store .rb-search-form--header:hover,
.rabeea-store .rb-search-form--header:focus-within {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.36) !important;
	box-shadow:
		0 14px 28px rgba(var(--rb-surface-contrast-rgb), 0.07),
		0 0 0 3px rgba(var(--rb-brand-primary-rgb), 0.08) !important;
}

.rabeea-store .rb-search-form__input--header {
	flex: 1 1 auto !important;
	min-height: 48px !important;
	height: 48px !important;
	padding-inline: 1rem 0.85rem !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--rb-text-strong) !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
}

.rabeea-store .rb-search-form__input--header:focus {
	box-shadow: none !important;
	outline: 0 !important;
}

.rabeea-store .rb-search-form__submit--header {
	position: static !important;
	flex: 0 0 40px !important;
	width: 40px !important;
	height: 40px !important;
	margin-inline-start: 4px !important;
	margin-inline-end: 4px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	box-shadow: none !important;
	transform: none !important;
	transition:
		background-color 220ms ease,
		transform 220ms ease,
		box-shadow 220ms ease !important;
}

.rabeea-store .rb-search-form__submit--header:hover,
.rabeea-store .rb-search-form__submit--header:focus-visible {
	background: var(--rb-brand-primary-hover) !important;
	color: #fff !important;
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.2) !important;
	transform: translateY(-1px) !important;
}

.rabeea-store .rb-search-form__submit--header svg {
	width: 1rem !important;
	height: 1rem !important;
}

.rabeea-store .rb-search-result__price,
.rabeea-store .rb-search-result__price .amount,
.rabeea-store .rb-search-result__price bdi,
.rabeea-store .rb-search-result__price ins,
.rabeea-store .rb-search-result__price del {
	border: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.rabeea-store .rb-search-result__price {
	color: var(--rb-brand-primary) !important;
	font-weight: 800 !important;
}

.rabeea-store .rb-search-result__price ins {
	color: var(--rb-brand-primary) !important;
	text-decoration: none !important;
}

.rabeea-store .rb-search-result__price del {
	color: var(--rb-text-muted) !important;
}

.rb-whatsapp-widget {
	position: fixed;
	inset-inline-start: max(1rem, env(safe-area-inset-left));
	bottom: max(1.1rem, env(safe-area-inset-bottom));
	z-index: 9997;
	display: grid;
	justify-items: start;
	gap: 0.72rem;
	font-family: var(--rb-font-family-base);
	direction: rtl;
}

.rb-whatsapp-widget__toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 52px;
	min-width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 16px;
	background: linear-gradient(135deg, #27d86f, #18b85a);
	color: #fff;
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 260ms ease,
		background-color 220ms ease;
}

.rb-whatsapp-widget__toggle::before {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: 15px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 58%);
	pointer-events: none;
}

.rb-whatsapp-widget__toggle:hover,
.rb-whatsapp-widget__toggle:focus-visible,
.rb-whatsapp-widget.is-open .rb-whatsapp-widget__toggle {
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(37, 211, 102, 0.38);
	outline: none;
}

.rb-whatsapp-widget__toggle img {
	position: relative;
	z-index: 1;
	width: 1.45rem;
	height: 1.45rem;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.rb-whatsapp-widget__toggle span {
	display: none;
}

.rb-whatsapp-widget__panel {
	width: min(340px, calc(100vw - 2rem));
	border: 1px solid rgba(37, 211, 102, 0.16);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 24px 58px rgba(var(--rb-surface-contrast-rgb), 0.2), 0 0 0 1px rgba(255, 255, 255, 0.62) inset;
	overflow: hidden;
	transform: translateY(8px) scale(0.98);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 220ms ease;
}

.rb-whatsapp-widget.is-open .rb-whatsapp-widget__panel {
	transform: translateY(0) scale(1);
	opacity: 1;
	pointer-events: auto;
}

.rb-whatsapp-widget__head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.72rem;
	padding: 0.9rem;
	background:
		linear-gradient(135deg, rgba(37, 211, 102, 0.16), rgba(255, 255, 255, 0.98)),
		#fff;
	border-bottom: 1px solid rgba(var(--rb-surface-contrast-rgb), 0.06);
}

.rb-whatsapp-widget__avatar {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	box-shadow: 0 12px 22px rgba(37, 211, 102, 0.2);
	overflow: hidden;
}

.rb-whatsapp-widget__avatar::after {
	display: none;
}

.rb-whatsapp-widget__avatar img {
	display: block;
	width: 44px;
	height: 44px;
	max-width: 44px;
	max-height: 44px;
	margin: 0;
	object-fit: cover;
	object-position: center;
	transform: none;
}

.rb-whatsapp-widget__head strong,
.rb-whatsapp-widget__head span {
	display: block;
}

.rb-whatsapp-widget__head strong {
	color: var(--rb-text-strong);
	font-size: 0.94rem;
	font-weight: 900;
	line-height: 1.35;
}

.rb-whatsapp-widget__head span {
	margin-top: 0.1rem;
	color: var(--rb-text-muted);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.45;
}

.rb-whatsapp-widget__close {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid rgba(var(--rb-surface-contrast-rgb), 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--rb-text-strong);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.rb-whatsapp-widget__close:hover,
.rb-whatsapp-widget__close:focus-visible {
	transform: rotate(90deg);
	background: var(--rb-state-danger-bg);
	color: var(--rb-state-danger);
	outline: none;
}

.rb-whatsapp-widget__body {
	display: grid;
	gap: 0.72rem;
	padding: 0.9rem;
}

.rb-whatsapp-widget__body p {
	margin: 0;
	color: var(--rb-text-body);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.7;
}

.rb-whatsapp-widget__body textarea {
	width: 100%;
	min-height: 88px;
	padding: 0.72rem;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.14);
	border-radius: 12px;
	background: var(--rb-surface-soft);
	color: var(--rb-text-strong);
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.65;
	resize: vertical;
	outline: none;
	transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.rb-whatsapp-widget__body textarea:focus {
	border-color: rgba(37, 211, 102, 0.45);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
}

.rb-whatsapp-widget__send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.48rem;
	min-height: 36px;
	padding: 0.48rem 0.78rem;
	border-radius: 10px;
	background: linear-gradient(135deg, #27d86f, #18b85a);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 14px 26px rgba(37, 211, 102, 0.24);
	transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.rb-whatsapp-widget__send:hover,
.rb-whatsapp-widget__send:focus-visible {
	transform: translateY(-1px);
	color: #fff;
	box-shadow: 0 18px 32px rgba(37, 211, 102, 0.3);
	outline: none;
}

.rb-whatsapp-widget__send i {
	font-size: 0.95rem;
}

@media (max-width: 575px) {
	.rb-whatsapp-widget {
		inset-inline-start: 0.78rem;
		bottom: 0.78rem;
	}

	.rb-whatsapp-widget__toggle {
		width: 50px;
		min-width: 50px;
		height: 50px;
		padding: 0;
		border-radius: 15px;
	}
}

/* Final search icon centering and sale badge. */
.rabeea-store .rb-search-form__submit--header {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	text-align: center !important;
	line-height: 1 !important;
}

.rabeea-store .rb-search-form__submit--header svg {
	display: block !important;
	flex: 0 0 auto !important;
	margin: 0 !important;
}

.rabeea-store .rb-search-result__thumb {
	position: relative !important;
	overflow: hidden !important;
}

.rabeea-store .rb-search-result__sale-badge {
	position: absolute;
	top: 7px;
	inset-inline-start: 7px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 23px;
	padding: 0.18rem 0.48rem;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 8px;
	background: var(--rb-brand-primary);
	color: #fff;
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.24);
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

/* Final red styling for offer/search sale language. */
.rabeea-store .rb-search-result__sale-badge {
	border-color: rgba(255, 255, 255, 0.78) !important;
	background: linear-gradient(135deg, var(--rb-sale-start) 0%, var(--rb-sale-end) 100%) !important;
	color: var(--rb-sale-text) !important;
	box-shadow: 0 10px 18px var(--rb-sale-shadow) !important;
	font-weight: 900 !important;
}

.rabeea-store .rb-search-result__sale-badge {
	top: 5px !important;
	inset-inline-start: 5px !important;
	max-width: calc(100% - 10px) !important;
	min-height: 20px !important;
	padding: 0.18rem 0.42rem !important;
	border: 1px solid rgba(180, 35, 24, 0.18) !important;
	border-radius: 5px !important;
	background: #d92d20 !important;
	background-image: none !important;
	color: #fff !important;
	font-size: 0.62rem !important;
	font-weight: 800 !important;
	box-shadow: 0 8px 14px rgba(217, 45, 32, 0.18) !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

@media (max-width: 575px) {
	.rabeea-store .rb-search-result__sale-badge {
		top: 4px !important;
		inset-inline-start: 4px !important;
		max-width: calc(100% - 8px) !important;
		min-height: 18px !important;
		padding: 0.14rem 0.34rem !important;
		border-radius: 5px !important;
		font-size: 0.56rem !important;
	}
}

/* Final header search and notification badges cleanup. */
.rabeea-store .rb-header-tools .rb-cart-count,
.rabeea-store .rb-header-tools [data-rb-cart-count],
.rabeea-store .rb-header-tools [data-rb-wishlist-count] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	top: -7px !important;
	inset-inline-end: -7px !important;
	min-width: 19px !important;
	height: 19px !important;
	padding: 0 5px !important;
	border: 2px solid var(--rb-surface-base) !important;
	border-radius: var(--rb-radius-pill) !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	box-shadow: 0 8px 16px rgba(var(--rb-brand-primary-rgb), 0.28) !important;
}

.rabeea-store .rb-search-form--header {
	display: flex !important;
	align-items: center !important;
	min-height: 48px !important;
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.14) !important;
	border-radius: 10px !important;
	background: var(--rb-surface-base) !important;
	box-shadow: 0 10px 24px rgba(var(--rb-surface-contrast-rgb), 0.05) !important;
	overflow: hidden !important;
	transition:
		border-color 260ms ease,
		box-shadow 260ms ease,
		transform 260ms ease !important;
}

.rabeea-store .rb-search-form--header:hover,
.rabeea-store .rb-search-form--header:focus-within {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.36) !important;
	box-shadow:
		0 14px 28px rgba(var(--rb-surface-contrast-rgb), 0.07),
		0 0 0 3px rgba(var(--rb-brand-primary-rgb), 0.08) !important;
}

.rabeea-store .rb-search-form__input--header {
	flex: 1 1 auto !important;
	min-height: 48px !important;
	height: 48px !important;
	padding-inline: 1rem 0.85rem !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--rb-text-strong) !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
}

.rabeea-store .rb-search-form__input--header:focus {
	box-shadow: none !important;
	outline: 0 !important;
}

.rabeea-store .rb-search-form__submit--header {
	position: static !important;
	flex: 0 0 40px !important;
	width: 40px !important;
	height: 40px !important;
	margin-inline-start: 4px !important;
	margin-inline-end: 4px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	box-shadow: none !important;
	transform: none !important;
	transition:
		background-color 220ms ease,
		transform 220ms ease,
		box-shadow 220ms ease !important;
}

.rabeea-store .rb-search-form__submit--header:hover,
.rabeea-store .rb-search-form__submit--header:focus-visible {
	background: var(--rb-brand-primary-hover) !important;
	color: #fff !important;
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.2) !important;
	transform: translateY(-1px) !important;
}

.rabeea-store .rb-search-form__submit--header svg {
	width: 1rem !important;
	height: 1rem !important;
}

.rabeea-store .rb-search-result__price,
.rabeea-store .rb-search-result__price .amount,
.rabeea-store .rb-search-result__price bdi,
.rabeea-store .rb-search-result__price ins,
.rabeea-store .rb-search-result__price del {
	border: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.rabeea-store .rb-search-result__price {
	color: var(--rb-brand-primary) !important;
	font-weight: 800 !important;
}

.rabeea-store .rb-search-result__price ins {
	color: var(--rb-brand-primary) !important;
	text-decoration: none !important;
}

.rabeea-store .rb-search-result__price del {
	color: var(--rb-text-muted) !important;
}

/* Final search redesign: compact radius and select-like inner lists. */
.rabeea-store .rb-search-form--header {
	min-height: 48px !important;
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.16) !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: 0 10px 22px rgba(var(--rb-surface-contrast-rgb), 0.06) !important;
	overflow: hidden !important;
}

.rabeea-store .rb-search-form__input--header {
	min-height: 48px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	color: var(--rb-text-strong) !important;
	font-weight: 700 !important;
	box-shadow: none !important;
}

.rabeea-store .rb-search-form__input--header::placeholder {
	color: #767676 !important;
	font-weight: 600 !important;
}

.rabeea-store .rb-search-form__input--header:focus {
	box-shadow: none !important;
}

.rabeea-store .rb-search-form--header:focus-within {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.42) !important;
	box-shadow: 0 0 0 3px rgba(var(--rb-brand-primary-rgb), 0.09), 0 12px 24px rgba(var(--rb-surface-contrast-rgb), 0.08) !important;
}

.rabeea-store .rb-search-form__submit--header {
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	margin-inline-start: 3px !important;
	border-radius: 8px !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	box-shadow: none !important;
}

.rabeea-store .rb-search-form__submit--header:hover {
	background: var(--rb-brand-primary-hover) !important;
	background-image: none !important;
	color: #fff !important;
	transform: none !important;
}

.rabeea-store .rb-search-modal__dialog {
	border-radius: 10px !important;
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.14) !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: 0 28px 70px rgba(var(--rb-surface-contrast-rgb), 0.18) !important;
}

.rabeea-store .rb-search-form__mobile-shell,
.rabeea-store .rb-search-form__input--modal {
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
}

.rabeea-store .rb-search-form__input--modal {
	min-height: 48px !important;
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.16) !important;
	box-shadow: none !important;
	font-weight: 700 !important;
}

.rabeea-store .rb-search-form__input--modal:focus {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.42) !important;
	box-shadow: 0 0 0 3px rgba(var(--rb-brand-primary-rgb), 0.09) !important;
}

.rabeea-store .rb-search-form__mobile-icon,
.rabeea-store .rb-search-modal__back {
	width: 38px !important;
	height: 38px !important;
	border-radius: 8px !important;
	background: rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	background-image: none !important;
	color: var(--rb-brand-primary) !important;
}

.rabeea-store .rb-search-panel {
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.1) !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: 0 12px 28px rgba(var(--rb-surface-contrast-rgb), 0.055) !important;
}

.rabeea-store .rb-search-panel__title {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 0.75rem !important;
	padding-bottom: 0.55rem !important;
	border-bottom: 1px solid #ebebeb !important;
	color: #111111 !important;
	font-weight: 900 !important;
}

.rabeea-store .rb-search-modal__tags-list,
.rabeea-store .rb-search-chip-list {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0.38rem !important;
	max-height: 280px !important;
	overflow: auto !important;
	padding: 0.25rem !important;
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.09) !important;
	border-radius: 10px !important;
	background: rgba(var(--rb-brand-secondary-rgb), 0.025) !important;
	scrollbar-width: thin !important;
	scrollbar-color: rgba(var(--rb-brand-primary-rgb), 0.32) transparent !important;
}

.rabeea-store .rb-search-tag,
.rabeea-store .rb-search-chip {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	min-height: 40px !important;
	padding: 0.55rem 0.78rem !important;
	border: 1px solid transparent !important;
	border-radius: 8px !important;
	background: #fff !important;
	background-image: none !important;
	color: var(--rb-text-strong) !important;
	box-shadow: none !important;
	font-size: 0.84rem !important;
	font-weight: 800 !important;
	text-align: start !important;
}

.rabeea-store .rb-search-tag::after,
.rabeea-store .rb-search-chip::after {
	content: "\f104";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: rgba(var(--rb-brand-secondary-rgb), 0.42);
	font-size: 0.75rem;
	margin-inline-start: 0.75rem;
}

.rabeea-store .rb-search-tag:hover,
.rabeea-store .rb-search-chip:hover,
.rabeea-store .rb-search-tag:focus-visible,
.rabeea-store .rb-search-chip:focus-visible {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.22) !important;
	background: rgba(var(--rb-brand-primary-rgb), 0.055) !important;
	background-image: none !important;
	color: var(--rb-brand-primary) !important;
	box-shadow: none !important;
	transform: none !important;
	outline: none !important;
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(odd),
.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(even) {
	background: #fff !important;
	background-image: none !important;
	color: var(--rb-text-strong) !important;
}

.rabeea-store .rb-search-result {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.1) !important;
	border-radius: 10px !important;
	background: #fff !important;
	background-image: none !important;
	box-shadow: 0 10px 22px rgba(var(--rb-surface-contrast-rgb), 0.05) !important;
}

.rabeea-store .rb-search-result:hover {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.24) !important;
	background: rgba(var(--rb-brand-primary-rgb), 0.035) !important;
	background-image: none !important;
	box-shadow: 0 14px 28px rgba(var(--rb-surface-contrast-rgb), 0.08) !important;
}

.rabeea-store .rb-search-result__thumb {
	border-radius: 8px !important;
	background: rgba(var(--rb-brand-secondary-rgb), 0.035) !important;
	background-image: none !important;
	box-shadow: inset 0 0 0 1px rgba(var(--rb-brand-secondary-rgb), 0.08) !important;
}

.rabeea-store .rb-search-result__title a,
.rabeea-store .rb-search-result__price {
	color: #111111 !important;
}

.rabeea-store .rb-search-result__title a:hover,
.rabeea-store .rb-search-result__price ins {
	color: #D97706 !important;
}

/* Aldeera global interaction refresh */
.rabeea-store .rb-btn {
	border-radius: 8px !important;
	box-shadow: 0 12px 24px rgba(var(--rb-brand-primary-rgb), 0.14);
	transition:
		transform 340ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 340ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 180ms ease,
		color 180ms ease,
		background-color 180ms ease;
}

.rabeea-store .rb-btn::before {
	background: linear-gradient(115deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 72%);
	transform: translateX(-135%) skewX(-12deg);
}

.rabeea-store .rb-btn:hover {
	transform: translateY(-2px) scale(1.012);
	box-shadow: 0 18px 32px rgba(var(--rb-brand-primary-rgb), 0.2), 0 0 0 3px rgba(var(--rb-brand-secondary-rgb), 0.08);
}

.rabeea-store .rb-btn:hover::before {
	transform: translateX(135%) skewX(-12deg);
}

.rabeea-store .rb-card {
	border-radius: 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 248, 244, 0.96)),
		linear-gradient(135deg, rgba(var(--rb-brand-secondary-rgb), 0.06), rgba(var(--rb-brand-accent-rgb), 0.05));
	transition:
		transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 220ms ease;
}

.rabeea-store .rb-card::before {
	background: linear-gradient(135deg, rgba(var(--rb-brand-secondary-rgb), 0.12), rgba(var(--rb-brand-accent-rgb), 0.08), transparent 62%);
	transform: translate3d(14%, -14%, 0);
}

.rabeea-store .rb-card:hover {
	transform: translateY(-5px) scale(1.004);
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.28);
	box-shadow: 0 24px 46px rgba(var(--rb-surface-contrast-rgb), 0.12);
}

.rabeea-store .rb-menu a::after {
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--rb-brand-secondary), var(--rb-brand-accent));
	transform-origin: right center;
}

.rabeea-store .rb-menu a:hover::after,
.rabeea-store .rb-menu > li.current-menu-item > a::after,
.rabeea-store .rb-menu > li.current_page_item > a::after,
.rabeea-store .rb-menu > li.current-menu-ancestor > a::after {
	transform-origin: left center;
}

.rabeea-store .rb-icon-link::before {
	background: conic-gradient(from 140deg, rgba(var(--rb-brand-secondary-rgb), 0), rgba(var(--rb-brand-secondary-rgb), 0.22), rgba(var(--rb-brand-accent-rgb), 0.18), rgba(var(--rb-brand-secondary-rgb), 0));
}

.rabeea-store .rb-icon-link:hover {
	box-shadow: 0 16px 28px rgba(var(--rb-surface-contrast-rgb), 0.14), 0 0 0 3px rgba(var(--rb-brand-secondary-rgb), 0.08);
}

.rabeea-store .rb-search-chip,
.rabeea-store .rb-search-result {
	border-color: var(--rb-border-soft);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 235, 0.96));
}

.rabeea-store .rb-search-chip:hover {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.28);
}

/* Final header icons + side cart unification */
.rabeea-store .rb-header-tools .rb-icon-link--account,
.rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
	width: 2.95rem !important;
	height: 2.95rem !important;
	min-width: 2.95rem !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.14) !important;
	border-radius: 10px !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.96) 100%) !important;
	color: var(--rb-brand-primary) !important;
	box-shadow: 0 10px 20px rgba(var(--rb-surface-contrast-rgb), 0.07) !important;
}

.rabeea-store .rb-header-tools .rb-icon-link--account:hover,
.rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link:hover,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link:hover {
	border-color: rgba(var(--rb-hero-canvas-primary-rgb), 0.4) !important;
	color: var(--rb-hero-canvas-primary) !important;
	box-shadow: 0 12px 22px rgba(var(--rb-brand-primary-rgb), 0.14) !important;
	transform: translateY(-2px) !important;
}

.rabeea-store .rb-header-tools .rb-icon-link--account svg,
.rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link svg,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link svg {
	width: 1.1rem !important;
	height: 1.1rem !important;
}

body .xoo-wsc-container,
body .xoo-wsc-slider {
	border-radius: 0 !important;
	background:
		radial-gradient(circle at 100% 0, rgba(var(--rb-brand-accent-rgb), 0.1), transparent 24%),
		linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(238, 244, 248, 0.97) 100%) !important;
	border-inline-start: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	box-shadow: -24px 0 54px rgba(var(--rb-surface-contrast-rgb), 0.2) !important;
}

html[dir='rtl'] body .xoo-wsc-container,
html[dir='rtl'] body .xoo-wsc-slider {
	box-shadow: 24px 0 54px rgba(var(--rb-surface-contrast-rgb), 0.2) !important;
}

body .xoo-wsc-header,
body .xoo-wsc-footer {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 244, 248, 0.94) 100%) !important;
}

body .xoo-wsc-product,
body .xoo-wsc-pattern-card .xoo-wsc-product {
	border-radius: 10px !important;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 248, 0.94) 100%) !important;
	box-shadow: 0 12px 24px rgba(var(--rb-surface-contrast-rgb), 0.07) !important;
}

body .xoo-wsc-img-col,
body .xoo-wsc-pattern-card .xoo-wsc-img-col,
body .xoo-wsc-product a img,
body .xoo-wsc-img-col img {
	border-radius: 10px !important;
}

body .xoo-wsc-ft-amt,
body .xoo-wsc-ft-amt-total {
	border-radius: 10px !important;
}

body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn,
body .xoo-wsc-container .xoo-wsc-btn {
	min-height: 48px !important;
	border-radius: 10px !important;
	font-weight: 800 !important;
}

/* Home page parity with internal header cart styling */
body.home .rabeea-store .rb-header-tools .rb-icon-link--account,
body.home .rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link,
body.home .rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
	width: 2.95rem !important;
	height: 2.95rem !important;
	min-width: 2.95rem !important;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.14) !important;
	border-radius: 10px !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.96) 100%) !important;
	color: var(--rb-brand-primary) !important;
	box-shadow: 0 10px 20px rgba(var(--rb-surface-contrast-rgb), 0.07) !important;
}

body.home .rabeea-store .rb-header-tools .rb-icon-link--account:hover,
body.home .rabeea-store .rb-header-tools .rb-header-cart.xoo-wsc-cart-trigger.rb-icon-link:hover,
body.home .rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link:hover {
	border-color: rgba(var(--rb-hero-canvas-primary-rgb), 0.4) !important;
	color: var(--rb-hero-canvas-primary) !important;
	box-shadow: 0 12px 22px rgba(var(--rb-brand-primary-rgb), 0.14) !important;
}

body.home .xoo-wsc-container,
body.home .xoo-wsc-slider {
	border-radius: 0 !important;
	background:
		radial-gradient(circle at 100% 0, rgba(var(--rb-brand-accent-rgb), 0.1), transparent 24%),
		linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(238, 244, 248, 0.97) 100%) !important;
	border-inline-start: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	box-shadow: -24px 0 54px rgba(var(--rb-surface-contrast-rgb), 0.2) !important;
}

html[dir='rtl'] body.home .xoo-wsc-container,
html[dir='rtl'] body.home .xoo-wsc-slider {
	box-shadow: 24px 0 54px rgba(var(--rb-surface-contrast-rgb), 0.2) !important;
}

body.home .xoo-wsc-header,
body.home .xoo-wsc-footer {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 244, 248, 0.94) 100%) !important;
}

body.home .xoo-wsc-product,
body.home .xoo-wsc-pattern-card .xoo-wsc-product {
	border-radius: 10px !important;
	border: 1px solid rgba(var(--rb-brand-primary-rgb), 0.08) !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 248, 0.94) 100%) !important;
	box-shadow: 0 12px 24px rgba(var(--rb-surface-contrast-rgb), 0.07) !important;
}

.rb-toast-stack {
	position: fixed;
	inset-inline-end: 1rem;
	bottom: 1rem;
	z-index: 100000;
	display: grid;
	gap: 0.75rem;
	width: min(100%, 24rem);
	pointer-events: none;
}

.rb-toast {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.8rem;
	padding: 0.95rem 1rem;
	border: 1px solid rgba(var(--rb-brand-accent-rgb), 0.16);
	border-radius: 18px;
	background:
		radial-gradient(circle at top right, rgba(var(--rb-brand-accent-rgb), 0.12), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 253, 0.98) 100%);
	box-shadow: 0 24px 40px rgba(var(--rb-surface-contrast-rgb), 0.16);
	color: var(--rb-text-strong);
	opacity: 0;
	transform: translateY(10px) scale(0.97);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: auto;
}

.rb-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.rb-toast--success {
	border-color: rgba(var(--rb-brand-accent-rgb), 0.26);
}

.rb-toast--info {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.18);
}

.rb-toast__icon {
	display: inline-grid;
	place-items: center;
	position: relative;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff4d6d 0%, #c9184a 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
}

.rb-toast__icon-svg {
	width: 1.08rem;
	height: 1.08rem;
	display: block;
}

.rb-toast__icon-svg--heart {
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.rb-toast__icon-svg--heart-outline {
	width: 1.14rem;
	height: 1.14rem;
}

.rb-toast__count-badge {
	position: absolute;
	top: -6px;
	inset-inline-end: -6px;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	border-radius: 999px;
	background: #ffffff;
	color: #c9184a;
	font-size: 0.6rem;
	font-weight: 900;
	line-height: 16px;
	text-align: center;
	box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.rb-toast__icon-glyph {
	display: inline-block;
	line-height: 1;
	font-size: 0.95rem;
}

.rb-toast__content {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}

.rb-toast__title {
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--rb-text-strong);
}

.rb-toast__message {
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--rb-text-body);
	word-break: break-word;
}

.rb-toast__close {
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 999px;
	background: rgba(var(--rb-brand-accent-rgb), 0.14);
	color: var(--rb-brand-primary);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.18s ease;
}

.rb-toast__close:hover {
	background: rgba(var(--rb-brand-accent-rgb), 0.22);
	transform: scale(1.04);
}

body.is-rb-wishlist-toast-mode > .tinv-wishlist {
	position: fixed;
	inset: 0;
	z-index: 99999;
	pointer-events: none;
}

body.is-rb-wishlist-toast-mode > .tinv-wishlist > * {
	opacity: 0 !important;
	visibility: hidden !important;
	transform: none !important;
	pointer-events: none !important;
}

body > .tinv-wishlist:empty {
	display: none !important;
}

@media (max-width: 767px) {
	.rb-toast-stack {
		inset-inline: 0.75rem;
		bottom: 0.75rem;
		width: auto;
	}

	.rb-toast {
		padding: 0.9rem;
		border-radius: 16px;
	}
}

/* Final search modal palette alignment */
.rabeea-store .rb-search-modal__dialog {
	border: 1px solid rgba(var(--rb-brand-accent-rgb), 0.24);
	background:
		radial-gradient(circle at 12% 10%, rgba(var(--rb-brand-accent-rgb), 0.1), transparent 26%),
		radial-gradient(circle at 88% 0%, rgba(var(--rb-brand-secondary-rgb), 0.1), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.995) 0%, rgba(240, 245, 246, 0.985) 100%);
	box-shadow:
		0 28px 56px rgba(var(--rb-surface-contrast-rgb), 0.14),
		0 0 0 1px rgba(var(--rb-brand-accent-rgb), 0.05);
}

.rabeea-store .rb-search-panel {
	border-radius: var(--rb-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(241, 246, 247, 0.9) 100%);
	box-shadow: inset 0 0 0 1px rgba(var(--rb-brand-accent-rgb), 0.12);
	padding: 1rem;
}

.rabeea-store .rb-search-panel__title {
	border-bottom-color: rgba(var(--rb-brand-accent-rgb), 0.26);
	color: var(--rb-brand-primary);
}

.rabeea-store .rb-search-form__mobile-icon,
.rabeea-store .rb-search-modal__back {
	color: var(--rb-brand-primary);
}

.rabeea-store .rb-search-modal__back {
	border: 1px solid rgba(var(--rb-brand-accent-rgb), 0.22);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 10px 18px rgba(var(--rb-surface-contrast-rgb), 0.06);
	transition: var(--rb-transition-fast);
}

.rabeea-store .rb-search-modal__back:hover {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.36);
	background: rgba(var(--rb-brand-accent-rgb), 0.14);
	color: var(--rb-brand-secondary);
}

.rabeea-store .rb-search-form__input--modal {
	border-color: rgba(var(--rb-brand-accent-rgb), 0.24);
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.8),
		0 10px 22px rgba(var(--rb-surface-contrast-rgb), 0.04);
}

.rabeea-store .rb-search-form__input--modal:focus {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.42);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.88),
		0 0 0 4px rgba(var(--rb-brand-secondary-rgb), 0.12),
		0 14px 26px rgba(var(--rb-surface-contrast-rgb), 0.06);
}

.rabeea-store .rb-search-chip {
	border-color: rgba(var(--rb-brand-accent-rgb), 0.24);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 242, 243, 0.96) 100%);
	color: var(--rb-brand-primary);
	box-shadow: 0 10px 18px rgba(var(--rb-surface-contrast-rgb), 0.04);
}

.rabeea-store .rb-search-chip:hover {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.32);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(229, 238, 239, 0.98) 100%);
	box-shadow: 0 14px 24px rgba(var(--rb-surface-contrast-rgb), 0.08);
}

.rabeea-store .rb-search-tag {
	border: 1px solid rgba(var(--rb-brand-accent-rgb), 0.18);
	box-shadow: 0 12px 20px rgba(var(--rb-brand-primary-rgb), 0.14);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(odd) {
	background: linear-gradient(135deg, var(--rb-brand-primary) 0%, var(--rb-brand-secondary) 100%);
	color: var(--rb-text-inverse);
}

.rabeea-store .rb-search-modal__tags .rb-search-tag:nth-child(even) {
	background: linear-gradient(135deg, rgba(var(--rb-brand-accent-rgb), 0.98) 0%, rgba(var(--rb-brand-secondary-rgb), 0.96) 100%);
	color: var(--rb-brand-primary);
}

.rabeea-store .rb-search-tag:hover {
	box-shadow: 0 16px 28px rgba(var(--rb-brand-primary-rgb), 0.18);
	filter: none;
}

.rabeea-store .rb-search-result {
	border: 1px solid rgba(var(--rb-brand-accent-rgb), 0.18);
	background:
		radial-gradient(circle at 88% 12%, rgba(var(--rb-brand-accent-rgb), 0.12), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(237, 243, 244, 0.97) 100%);
	box-shadow: 0 14px 24px rgba(var(--rb-surface-contrast-rgb), 0.05);
}

.rabeea-store .rb-search-result:hover {
	border-color: rgba(var(--rb-brand-secondary-rgb), 0.3);
	background:
		radial-gradient(circle at 88% 12%, rgba(var(--rb-brand-secondary-rgb), 0.12), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(231, 240, 241, 0.98) 100%);
	box-shadow: 0 18px 30px rgba(var(--rb-surface-contrast-rgb), 0.08);
}

.rabeea-store .rb-search-result__thumb {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 238, 240, 0.98) 100%);
	box-shadow: inset 0 0 0 1px rgba(var(--rb-brand-accent-rgb), 0.16);
}

.rabeea-store .rb-search-result__title a {
	color: #111111;
}

.rabeea-store .rb-search-result__title a:hover {
	color: #D97706;
}

.rabeea-store .rb-search-result__price {
	color: #111111;
}

.rabeea-store .rb-search-result__price del {
	color: var(--rb-text-muted);
}

.rabeea-store .rb-search-result__price ins {
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.22);
	background: rgba(var(--rb-brand-secondary-rgb), 0.12);
	color: var(--rb-brand-primary);
}

.rabeea-store .rb-search-modal__status {
	color: var(--rb-text-muted);
}

@media (max-width: 991px) {
	.rabeea-store .rb-desktop-only,
	.rabeea-store .rb-header__bottom,
	.rabeea-store .rb-nav--desktop {
		display: none !important;
	}

	.rabeea-store .rb-mobile-only {
		display: inline-flex !important;
	}
}

/* Final ShamCall palette harmonization */
.rabeea-store .rb-header__delivery,
.rabeea-store .rb-header__delivery-value,
.rabeea-store .rb-header__delivery-icon,
.rabeea-store .rb-header-link:hover,
.rabeea-store .rb-search-panel__title {
	color: var(--rb-brand-primary);
}

.rabeea-store .rb-header__delivery-label,
.rabeea-store .rb-header-link {
	color: var(--rb-text-body);
}

.rabeea-store .rb-header__delivery-icon {
	background: rgba(var(--rb-brand-secondary-rgb), 0.12);
}

.rabeea-store .rb-menu-toggle span {
	background-color: var(--rb-brand-primary);
}

.rabeea-store .rb-header__bottom,
.rabeea-store .rb-search-panel__title {
	border-color: var(--rb-border-soft);
}

.rabeea-store .rb-search-form__mobile-icon,
.rabeea-store .rb-search-modal__back {
	color: var(--rb-brand-secondary);
}

.rabeea-store .rb-search-form__input--modal {
	border-color: var(--rb-border-default);
	background: var(--rb-surface-base);
	color: var(--rb-text-strong);
}

.rabeea-store .rb-search-form__input--modal::placeholder {
	color: var(--rb-text-muted);
}

/* Final header search and notification badges cleanup - must stay last. */
.rabeea-store .rb-header-tools .rb-cart-count,
.rabeea-store .rb-header-tools [data-rb-cart-count],
.rabeea-store .rb-header-tools [data-rb-wishlist-count] {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	top: -7px !important;
	inset-inline-end: -7px !important;
	min-width: 19px !important;
	height: 19px !important;
	padding: 0 5px !important;
	border: 2px solid var(--rb-surface-base) !important;
	border-radius: var(--rb-radius-pill) !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	box-shadow: 0 8px 16px rgba(var(--rb-brand-primary-rgb), 0.28) !important;
}

.rabeea-store .rb-search-form--header {
	display: flex !important;
	align-items: center !important;
	min-height: 48px !important;
	border: 1px solid rgba(var(--rb-brand-secondary-rgb), 0.14) !important;
	border-radius: 10px !important;
	background: var(--rb-surface-base) !important;
	box-shadow: 0 10px 24px rgba(var(--rb-surface-contrast-rgb), 0.05) !important;
	overflow: hidden !important;
	transition:
		border-color 260ms ease,
		box-shadow 260ms ease,
		transform 260ms ease !important;
}

.rabeea-store .rb-search-form--header:hover,
.rabeea-store .rb-search-form--header:focus-within {
	border-color: rgba(var(--rb-brand-primary-rgb), 0.36) !important;
	box-shadow:
		0 14px 28px rgba(var(--rb-surface-contrast-rgb), 0.07),
		0 0 0 3px rgba(var(--rb-brand-primary-rgb), 0.08) !important;
}

.rabeea-store .rb-search-form__input--header {
	flex: 1 1 auto !important;
	min-height: 48px !important;
	height: 48px !important;
	padding-inline: 1rem 0.85rem !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--rb-text-strong) !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
}

.rabeea-store .rb-search-form__input--header:focus {
	box-shadow: none !important;
	outline: 0 !important;
}

.rabeea-store .rb-search-form__submit--header {
	position: static !important;
	flex: 0 0 40px !important;
	width: 40px !important;
	height: 40px !important;
	margin-inline-start: 4px !important;
	margin-inline-end: 4px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: var(--rb-brand-primary) !important;
	background-image: none !important;
	color: #fff !important;
	box-shadow: none !important;
	transform: none !important;
	transition:
		background-color 220ms ease,
		transform 220ms ease,
		box-shadow 220ms ease !important;
}

.rabeea-store .rb-search-form__submit--header:hover,
.rabeea-store .rb-search-form__submit--header:focus-visible {
	background: var(--rb-brand-primary-hover) !important;
	color: #fff !important;
	box-shadow: 0 10px 18px rgba(var(--rb-brand-primary-rgb), 0.2) !important;
	transform: translateY(-1px) !important;
}

.rabeea-store .rb-search-form__submit--header svg {
	width: 1rem !important;
	height: 1rem !important;
}

.rabeea-store .rb-search-result__price,
.rabeea-store .rb-search-result__price .amount,
.rabeea-store .rb-search-result__price bdi,
.rabeea-store .rb-search-result__price ins,
.rabeea-store .rb-search-result__price del {
	border: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.rabeea-store .rb-search-result__price {
	color: var(--rb-brand-primary) !important;
	font-weight: 800 !important;
}

.rabeea-store .rb-search-result__price ins {
	color: var(--rb-brand-primary) !important;
	text-decoration: none !important;
}

.rabeea-store .rb-search-result__price del {
	color: var(--rb-text-muted) !important;
}

/* ─── Global Notification Badge Color ───────────────────────── */
.rabeea-store .rb-cart-count,
.rabeea-store [data-rb-cart-count],
.rabeea-store [data-rb-wishlist-count],
.rabeea-store .rb-header-link__count,
.rabeea-store .rb-header-tools .rb-cart-count,
.rabeea-store .rb-header-tools [data-rb-cart-count],
.rabeea-store .rb-header-tools [data-rb-wishlist-count] {
	background: var(--rb-badge-bg) !important;
	color: var(--rb-badge-color) !important;
	box-shadow: 0 4px 12px var(--rb-badge-shadow) !important;
}

/* Bahr flat global interactions. */
.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit {
	border: 2px solid #25324b !important;
	background: #25324b !important;
	background-image: none !important;
	color: #ffffff !important;
	box-shadow: 5px 5px 0 rgba(47, 159, 143, 0.32) !important;
	transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1), background-color 180ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.rabeea-store .rb-btn::before,
.rabeea-store .rb-btn::after,
.rabeea-store .rb-card::before,
.rabeea-store .rb-icon-link::before {
	content: none !important;
	display: none !important;
}

.rabeea-store .rb-btn:hover,
.rabeea-store .button:hover,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce #respond input#submit:hover {
	border-color: #25324b !important;
	background: #2f9f8f !important;
	background-image: none !important;
	color: #ffffff !important;
	transform: translate(-3px, -3px) !important;
	box-shadow: 8px 8px 0 rgba(217, 108, 74, 0.58) !important;
}

.rabeea-store .rb-card,
.rabeea-store .rb-input,
.rabeea-store select,
.rabeea-store textarea,
.rabeea-store .input-text {
	background: #ffffff !important;
	background-image: none !important;
	border-color: #25324b !important;
}

.rabeea-store .rb-card {
	border-width: 2px;
	box-shadow: 6px 6px 0 rgba(47, 159, 143, 0.28);
}

.rabeea-store .rb-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 10px 10px 0 rgba(37, 50, 75, 0.72);
}

.rabeea-store .rb-header,
body.home .rabeea-store .rb-header,
.rabeea-store .rb-sticky-header {
	background: #ffffff !important;
	background-image: none !important;
	border-bottom: 2px solid #25324b !important;
	box-shadow: 0 4px 0 rgba(47, 159, 143, 0.32) !important;
}

.rabeea-store .rb-menu a::after {
	height: 4px;
	background: #2f9f8f !important;
}

.rabeea-store .rb-menu a:hover,
.rabeea-store .rb-menu > li.current-menu-item > a,
.rabeea-store .rb-menu > li.current_page_item > a,
.rabeea-store .rb-menu > li.current-menu-ancestor > a {
	color: #d96c4a !important;
}

.rabeea-store .rb-icon-link,
.rabeea-store .rb-menu-toggle,
.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
	border: 2px solid #25324b !important;
	background: #ffffff !important;
	background-image: none !important;
	color: #25324b !important;
	box-shadow: 4px 4px 0 rgba(47, 159, 143, 0.32) !important;
}

.rabeea-store .rb-icon-link:hover,
.rabeea-store .rb-menu-toggle:hover,
.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link:hover,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link:hover {
	background: #d96c4a !important;
	color: #ffffff !important;
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 rgba(37, 50, 75, 0.72) !important;
}

.rabeea-store .rb-search-modal__dialog,
.rabeea-store .rb-search-panel,
.rabeea-store .rb-search-result,
.rabeea-store .rb-search-chip,
.rabeea-store .rb-search-tag,
.rabeea-store .rb-toast,
.rabeea-store .rb-whatsapp-widget__panel,
.rabeea-store .rb-product-card,
.rabeea-store .product,
.rabeea-store .woocommerce-message,
.rabeea-store .woocommerce-info,
.rabeea-store .woocommerce-error {
	background: #ffffff !important;
	background-image: none !important;
	border-color: #25324b !important;
	box-shadow: 5px 5px 0 rgba(47, 159, 143, 0.28) !important;
}

.rabeea-store .rb-search-chip:hover,
.rabeea-store .rb-search-tag:hover,
.rabeea-store .rb-search-result:hover,
.rabeea-store .rb-product-card:hover,
.rabeea-store .product:hover {
	background: #eaf6f3 !important;
	background-image: none !important;
	color: #25324b !important;
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 rgba(37, 50, 75, 0.72) !important;
}

.rabeea-store .onsale,
.rabeea-store .rb-sale-badge,
.rabeea-store .rb-search-result__sale-badge,
.rabeea-store .rb-toast__icon,
.rabeea-store .rb-cart-count,
.rabeea-store [data-rb-cart-count],
.rabeea-store [data-rb-wishlist-count] {
	background: #e8192c !important;
	background-image: none !important;
	color: #ffffff !important;
	box-shadow: 3px 3px 0 rgba(37, 50, 75, 0.72) !important;
}

.rabeea-store .rb-search-form,
.rabeea-store .rb-search-form__mobile-shell {
	background: #ffffff !important;
	background-image: none !important;
	border: 2px solid #25324b !important;
	box-shadow: 4px 4px 0 rgba(47, 159, 143, 0.28) !important;
}

/* IKEA-inspired global polish and scroll progress. */
.rabeea-store .rb-header,
body.home .rabeea-store .rb-header,
.rabeea-store .rb-sticky-header {
	background: #ffffff !important;
	border-bottom: 1px solid rgba(245, 158, 11, 0.16) !important;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08) !important;
	overflow: visible;
}

.rabeea-store .rb-header,
body.home .rabeea-store .rb-header {
	position: relative;
}

.rabeea-store .rb-sticky-header {
	position: fixed !important;
}

.rabeea-store .rb-header::after,
.rabeea-store .rb-sticky-header::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	inset-inline-end: 0;
	bottom: -1px;
	height: 3px;
	background: #F59E0B;
	transform: scaleX(var(--rb-scroll-progress, 0));
	transform-origin: left center;
	transition: transform 90ms linear;
	z-index: 4;
}

[dir="rtl"] .rabeea-store .rb-header::after,
[dir="rtl"] .rabeea-store .rb-sticky-header::after {
	transform-origin: right center;
}

.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit {
	border-color: #111827 !important;
	background: #111827 !important;
	color: #ffffff !important;
	box-shadow: 0 10px 22px rgba(17, 24, 39, 0.14) !important;
}

.rabeea-store .rb-btn:hover,
.rabeea-store .button:hover,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce #respond input#submit:hover {
	border-color: #F59E0B !important;
	background: #F59E0B !important;
	color: #111827 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16), 0 0 0 4px rgba(245, 158, 11, 0.2) !important;
}

.rabeea-store .rb-icon-link,
.rabeea-store .rb-menu-toggle,
.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
	border-color: rgba(245, 158, 11, 0.22) !important;
	background: #ffffff !important;
	color: #111827 !important;
	box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08) !important;
}

.rabeea-store .rb-icon-link:hover,
.rabeea-store .rb-menu-toggle:hover,
.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link:hover,
.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link:hover {
	background: #F59E0B !important;
	color: #111827 !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14) !important;
}

.rabeea-store .rb-menu a::after {
	background: #F59E0B !important;
}

.rabeea-store .rb-menu a:hover,
.rabeea-store .rb-menu > li.current-menu-item > a,
.rabeea-store .rb-menu > li.current_page_item > a,
.rabeea-store .rb-menu > li.current-menu-ancestor > a {
	color: #F59E0B !important;
}

.rabeea-store .rb-card,
.rabeea-store .rb-search-modal__dialog,
.rabeea-store .rb-search-panel,
.rabeea-store .rb-search-result,
.rabeea-store .rb-product-card,
.rabeea-store .product {
	border-color: rgba(245, 158, 11, 0.18) !important;
	box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08) !important;
}

.rabeea-store .rb-card:hover,
.rabeea-store .rb-search-result:hover,
.rabeea-store .rb-product-card:hover,
.rabeea-store .product:hover {
	background: #ffffff !important;
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(17, 24, 39, 0.13), 0 0 0 4px rgba(245, 158, 11, 0.2) !important;
}

.rabeea-store .onsale,
.rabeea-store .rb-sale-badge,
.rabeea-store .rb-search-result__sale-badge,
.rabeea-store .rb-toast__icon,
.rabeea-store .rb-cart-count,
.rabeea-store [data-rb-cart-count],
.rabeea-store [data-rb-wishlist-count] {
	background: #e8192c !important;
	background-image: none !important;
	color: #ffffff !important;
	box-shadow: 0 6px 14px rgba(232, 25, 44, 0.3) !important;
}

@media (max-width: 575px) {
	.rabeea-store .rb-brand__text {
		font-size: 0.92rem;
		line-height: 1.25;
	}

	.rabeea-store .rb-header__top {
		gap: 0.6rem;
	}

	.rabeea-store .rb-icon-link,
	.rabeea-store .rb-menu-toggle,
	.rabeea-store .rb-header-tools .xoo-wsc-cart-trigger.rb-icon-link,
	.rabeea-store .rb-header-tools .rb-header-wishlist.rb-icon-link {
		width: 38px;
		height: 38px;
		padding: 0.48rem !important;
	}
}

/* Final cascade: no gradients on primary interface surfaces. */
.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit,
.rabeea-store .rb-icon-link,
.rabeea-store .rb-menu-toggle,
.rabeea-store .rb-card,
.rabeea-store .rb-search-modal__dialog,
.rabeea-store .rb-search-panel,
.rabeea-store .rb-search-result,
.rabeea-store .rb-product-card,
.rabeea-store .product,
.rabeea-store .rb-search-form,
.rabeea-store .rb-search-form__mobile-shell,
.rabeea-store .rb-header,
body.home .rabeea-store .rb-header,
.rabeea-store .rb-sticky-header {
	background-image: none !important;
}

.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit {
	background: #111827 !important;
	border-color: #111827 !important;
	color: #ffffff !important;
}

.rabeea-store .rb-btn:hover,
.rabeea-store .button:hover,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce #respond input#submit:hover {
	background: #F59E0B !important;
	border-color: #F59E0B !important;
	color: #111827 !important;
}

/* Bahr: sale price final override (search results). */
/* الستايل على ins فقط — العناصر الداخلية شفافة */
.rabeea-store .rb-search-result__price ins {
	display: inline-flex !important;
	align-items: center !important;
	padding: 0.22rem 0.6rem !important;
	border-radius: 4px !important;
	background: #F59E0B !important;
	color: #111827 !important;
	border: none !important;
	font-weight: 900 !important;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35) !important;
}
.rabeea-store .rb-search-result__price ins .amount,
.rabeea-store .rb-search-result__price ins bdi,
.rabeea-store .rb-search-result__price ins .woocommerce-Price-currencySymbol {
	display: inline !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	color: inherit !important;
	font-weight: inherit !important;
}

/* ═══════════════════════════════════════════════════════════════
   Bahr Search Results Final Override
   بادج التخفيض + السعر بنفس شكل كروت المنتجات
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Sale badge: نفس شكل product-card بالظبط ── */
.rabeea-store .rb-search-result__sale-badge {
position: absolute !important;
top: 6px !important;
inset-inline-start: 6px !important;
z-index: 3 !important;
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
min-height: 24px !important;
padding: 0.3rem 0.6rem !important;
border: 1px solid rgba(180, 35, 24, 0.18) !important;
border-radius: 5px !important;
background: #d92d20 !important;
background-image: none !important;
color: #fff !important;
font-size: 0.72rem !important;
font-weight: 800 !important;
line-height: 1 !important;
white-space: nowrap !important;
box-shadow: 0 6px 12px rgba(217, 45, 32, 0.22) !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
max-width: calc(100% - 12px) !important;
}

@media (max-width: 575px) {
.rabeea-store .rb-search-result__sale-badge {
top: 4px !important;
inset-inline-start: 4px !important;
min-height: 20px !important;
padding: 0.22rem 0.46rem !important;
font-size: 0.64rem !important;
}
}

/* ── 2. Price container: flex row, السعر الجديد أولاً ── */
.rabeea-store .rb-search-result__price {
display: inline-flex !important;
flex-wrap: wrap !important;
align-items: center !important;
gap: 0.45rem !important;
color: var(--rb-text-strong) !important;
font-weight: 800 !important;
line-height: 1.3 !important;
}

/* ── 3. السعر القديم (del) ── */
.rabeea-store .rb-search-result__price del {
	color: var(--rb-text-muted) !important;
	font-size: 1em !important;
	font-weight: 600 !important;
	/* الشطب من الـ browser فقط — بدون إضافة ثانية */
	text-decoration: line-through !important;
	text-decoration-thickness: 1px !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}
/* العناصر الداخلية لـ del — بدون شطب إضافي */
.rabeea-store .rb-search-result__price del .amount,
.rabeea-store .rb-search-result__price del bdi,
.rabeea-store .rb-search-result__price del .woocommerce-Price-currencySymbol {
	display: inline !important;
	text-decoration: none !important;
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
}

/* ── 4. السعر الجديد (ins) ── */
.rabeea-store .rb-search-result__price ins {
	display: inline-flex !important;
	align-items: center !important;
	padding: 0.26rem 0.65rem !important;
	border-radius: 4px !important;
	background: #F59E0B !important;
	color: #111827 !important;
	border: none !important;
	font-weight: 900 !important;
	font-size: 1em !important;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35) !important;
}
/* العناصر الداخلية شفافة — بدون شكل إضافي */
.rabeea-store .rb-search-result__price ins .amount,
.rabeea-store .rb-search-result__price ins bdi,
.rabeea-store .rb-search-result__price ins .woocommerce-Price-currencySymbol {
	display: inline !important;
	padding: 0 !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	color: inherit !important;
	font-weight: inherit !important;
}

/* ── 5. السعر العادي (بدون عرض) ── */
.rabeea-store .rb-search-result__price > .woocommerce-Price-amount.amount,
.rabeea-store .rb-search-result__price > bdi {
color: var(--rb-text-strong) !important;
background: transparent !important;
border: none !important;
box-shadow: none !important;
padding: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   Bahr Final text/placeholder color lock
   لا أصفر على النصوص أو العناوين أو الـ placeholders
   ═══════════════════════════════════════════════════════════════ */
.rabeea-store input::placeholder,
.rabeea-store textarea::placeholder,
.rabeea-store .rb-input::placeholder,
.rabeea-store .input-text::placeholder,
.rabeea-store .search-field::placeholder,
.rabeea-store .rb-search-form__input--header::placeholder,
.rabeea-store .rb-search-form__input--modal::placeholder {
color: #767676 !important;
opacity: 1 !important;
}

.rabeea-store h1,
.rabeea-store h2,
.rabeea-store h3,
.rabeea-store h4,
.rabeea-store h5,
.rabeea-store h6 {
color: #111111;
}

.rabeea-store .rb-search-panel__title,
.rabeea-store .rb-search-result__title a,
.rabeea-store .rb-shop-filter-block__title,
.rabeea-store .rb-shop-filters__title {
color: #111111 !important;
}

.rabeea-store .rb-search-result__title a:hover {
color: #D97706 !important;
}

/* Final button text normalization: no yellow button text. */
.rabeea-store .rb-btn,
.rabeea-store .button,
.rabeea-store button,
.rabeea-store input[type="button"],
.rabeea-store input[type="submit"],
.rabeea-store .woocommerce a.button,
.rabeea-store .woocommerce button.button,
.rabeea-store .woocommerce input.button,
.rabeea-store .woocommerce #respond input#submit,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn {
	color: #ffffff !important;
}

.rabeea-store .rb-btn:hover,
.rabeea-store .rb-btn:focus,
.rabeea-store .button:hover,
.rabeea-store .button:focus,
.rabeea-store button:hover,
.rabeea-store button:focus,
.rabeea-store input[type="button"]:hover,
.rabeea-store input[type="button"]:focus,
.rabeea-store input[type="submit"]:hover,
.rabeea-store input[type="submit"]:focus,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce a.button:focus,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce button.button:focus,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce input.button:focus,
.rabeea-store .woocommerce #respond input#submit:hover,
.rabeea-store .woocommerce #respond input#submit:focus,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:focus {
	color: #ffffff !important;
}

.rabeea-store .rb-home-banner-card__cta,
.rabeea-store .rb-shop-inline-banner__cta,
.rabeea-store .rb-home-banner-card:hover .rb-home-banner-card__cta,
.rabeea-store .rb-shop-inline-banner:hover .rb-shop-inline-banner__cta,
.rabeea-store .rb-home-banner-card:focus-within .rb-home-banner-card__cta,
.rabeea-store .rb-shop-inline-banner:focus-within .rb-shop-inline-banner__cta {
	color: #111111 !important;
}

.rabeea-store .rb-products-wide-banner__cta,
.rabeea-store .rb-products-wide-banner:hover .rb-products-wide-banner__cta,
.rabeea-store .rb-products-wide-banner:focus-within .rb-products-wide-banner__cta {
	color: #ffffff !important;
}

/* Blue-background buttons must always use white text. */
.rabeea-store .rb-btn--primary:hover,
.rabeea-store .rb-btn--primary:focus,
.rabeea-store .button:hover,
.rabeea-store .button:focus,
.rabeea-store button:hover,
.rabeea-store button:focus,
.rabeea-store .woocommerce a.button:hover,
.rabeea-store .woocommerce a.button:focus,
.rabeea-store .woocommerce button.button:hover,
.rabeea-store .woocommerce button.button:focus,
.rabeea-store .woocommerce input.button:hover,
.rabeea-store .woocommerce input.button:focus,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover,
body .xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:focus,
.rabeea-store [style*="#F59E0B"].rb-btn,
.rabeea-store [style*="#F59E0B"].button,
.rabeea-store [style*="rgb(245, 158, 11)"].rb-btn,
.rabeea-store [style*="rgb(245, 158, 11)"].button {
	color: #ffffff !important;
}
