.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(15, 76, 92, 0.16);
	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;
}
.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(15, 76, 92, 0.24);
}

.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(15, 76, 92, 0.14), 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);
	color: var(--rb-text-strong);
}

.rabeea-store .rb-brand__logo {
	max-height: 84px;
	width: auto;
	filter: drop-shadow(0 8px 16px rgba(15, 76, 92, 0.14));
}

.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, var(--rb-brand-accent) 0%, var(--rb-brand-accent-hover) 100%);
	color: var(--rb-text-strong);
	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(240, 180, 63, 0.45);
	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(240, 180, 63, 0.45);
	}

	50% {
		box-shadow: 0 12px 22px rgba(240, 180, 63, 0.62);
	}

	100% {
		box-shadow: 0 10px 16px rgba(240, 180, 63, 0.45);
	}
}

@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;
	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);
	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);
}

.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;
}

.rabeea-store .rb-search-result__price ins {
	text-decoration: none;
	padding: 0.12rem 0.38rem;
	border-radius: var(--rb-radius-pill);
	background: rgba(240, 180, 63, 0.2);
	color: #7a421a;
}

.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: linear-gradient(180deg, rgba(var(--rb-surface-contrast-rgb), 0.98) 0%, rgba(var(--rb-brand-primary-rgb), 0.94) 100%);
	color: var(--rb-text-inverse);
}

.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__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-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: var(--rb-inverse-link);
	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%, #f8ecdc 100%);
	box-shadow: 0 10px 18px rgba(43, 27, 17, 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-brand__logo {
		max-height: 70px;
	}

	.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(var(--rb-brand-accent-rgb), 0.42);
}

@keyframes rb-cart-badge-pulse {
	0% {
		box-shadow: 0 10px 16px rgba(var(--rb-brand-accent-rgb), 0.42);
	}

	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: rgba(var(--rb-brand-accent-rgb), 0.16);
	color: var(--rb-brand-primary);
}

.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-brand__logo {
	max-height: 52px;
	filter: none;
}

.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-end: 0.95rem;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: end;
	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-brand-secondary) !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: #fff;
	color: #ff9228;
	font-size: 0.62rem;
	font-weight: 800;
	line-height: 1rem;
	text-align: center;
	box-shadow: 0 0 0 1px rgba(255, 146, 40, 0.16);
}

.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: transparent;
	color: inherit;
	padding: 0;
}

.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: 767px) {
	.rabeea-store .rb-brand__logo {
		max-height: 44px;
	}

	.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-brand__logo {
	max-height: 66px;
	width: auto;
}

.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-brand__logo {
		max-height: 58px;
	}
}

@media (max-width: 767px) {
	.rabeea-store .rb-brand__logo {
		max-height: 50px;
	}
}

.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 {
	color: var(--rb-brand-accent);
	box-shadow: 0 0 0 1px rgba(var(--rb-brand-accent-rgb), 0.16);
}

.rabeea-store .rb-search-modal__dialog {
	border: 1px solid var(--rb-border-soft);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 235, 0.98) 100%);
	box-shadow: 0 22px 48px rgba(var(--rb-surface-contrast-rgb), 0.08);
}

.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);
}

.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-brand-secondary-rgb), 0.4) !important;
	color: var(--rb-brand-secondary) !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-brand-secondary-rgb), 0.4) !important;
	color: var(--rb-brand-secondary) !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;
}
