.rabeea-store .rb-product-card {
	height: 100%;
	padding: var(--rb-space-4);
	border-radius: 22px;
	background: var(--rb-surface-card);
	box-shadow: 0 16px 28px rgba(var(--rb-surface-contrast-rgb), 0.1);
	display: flex;
	flex-direction: column;
}

.rabeea-store .rb-product-card__thumb {
	display: block;
	margin-bottom: var(--rb-space-3);
	border-radius: var(--rb-radius-md);
	overflow: hidden;
	background-color: var(--rb-surface-soft);
	position: relative;
}

.rabeea-store .rb-product-card__thumb img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard);
	box-shadow: none;
}

.rabeea-store .rb-product-card:hover .rb-product-card__thumb img {
	transform: none;
}

.rabeea-store .rb-product-card__sale,
.rabeea-store .rb-product-card__sale-badge {
	position: absolute;
	top: 10px;
	inset-inline-start: 10px;
	display: inline-grid;
	gap: 0.32rem;
	z-index: 2;
	max-width: calc(100% - 20px);
}

.rabeea-store .rb-product-card__sale-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	padding: 0.28rem 0.6rem;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--rb-sale-start) 0%, var(--rb-sale-end) 100%);
	color: var(--rb-sale-text);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 10px 16px var(--rb-sale-shadow);
}

.rabeea-store .rb-product-card__sale-timer {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	max-width: 100%;
	padding: 0.22rem 0.55rem;
	border-radius: 4px;
	background: rgba(var(--rb-white-rgb), 0.94);
	color: var(--rb-brand-primary);
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.15;
	box-shadow: 0 8px 14px rgba(var(--rb-surface-contrast-rgb), 0.1);
}

.rabeea-store .rb-product-card__cat {
	position: absolute;
	bottom: 10px;
	inset-inline-end: 10px;
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.54rem;
	border-radius: var(--rb-radius-pill);
	background: rgba(var(--rb-surface-contrast-rgb), 0.78);
	backdrop-filter: blur(4px);
	color: var(--rb-inverse-soft);
	font-size: 0.7rem;
	font-weight: 700;
	z-index: 2;
}

.rabeea-store .rb-product-card__title {
	margin: 0 0 var(--rb-space-2);
	font-size: var(--rb-font-size-300);
}

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

.rabeea-store .rb-product-card__rating {
	margin-bottom: var(--rb-space-2);
	font-size: 0.85rem;
	line-height: 1;
}

.rabeea-store .rb-stars-rating {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 0.18rem;
	width: auto;
	height: auto;
	line-height: 1;
	font-size: 0.92rem;
	vertical-align: middle;
	direction: ltr;
}

.rabeea-store .rb-stars-rating__star {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--rb-rating-star-muted);
}

.rabeea-store .rb-stars-rating__star.is-filled {
	color: var(--rb-rating-star);
	text-shadow: 0 1px 2px rgba(var(--rb-brand-accent-rgb), 0.18);
}

.rabeea-store .rb-stars-rating__star::before {
	content: "\f005";
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1em;
	line-height: 1;
}

.rabeea-store .rb-product-card__rating .star-rating {
	color: var(--rb-rating-star);
}

.rabeea-store .rb-product-card__price {
	margin-bottom: var(--rb-space-3);
	color: var(--rb-brand-primary);
	font-weight: 400;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.42rem;
	align-items: center;
}

.rabeea-store .rb-product-card__price del {
	color: var(--rb-text-muted);
	font-size: 0.85em;
	text-decoration-thickness: 2px;
}

.rabeea-store .rb-product-card__price ins {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	padding: 0.14rem 0.44rem;
	border-radius: var(--rb-radius-pill);
	background: rgba(var(--rb-brand-accent-rgb), 0.18);
	color: var(--rb-brand-primary);
	font-size: 0.95em;
}

.rabeea-store .rb-product-card__actions {
	margin-top: auto;
}

.rabeea-store .rb-product-card__actions .button,
.rabeea-store .rb-product-card__actions .added_to_cart {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 14px;
	font-size: var(--rb-font-size-200);
	font-weight: 400;
	background: linear-gradient(138deg, var(--rb-brand-primary) 0%, var(--rb-brand-secondary) 58%, var(--rb-brand-accent) 100%);
	background-size: 180% 180%;
	background-position: 0 50%;
	box-shadow: 0 14px 24px rgba(var(--rb-brand-primary-rgb), 0.24), inset 0 1px 0 rgba(var(--rb-white-rgb), 0.2);
	color: var(--rb-text-inverse);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	transition: transform var(--rb-duration-base) var(--rb-ease-standard), box-shadow var(--rb-duration-base) var(--rb-ease-standard), background-position var(--rb-duration-base) var(--rb-ease-standard);
}

.rabeea-store .rb-product-card__actions .button::after {
	content: "\f07a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.78rem;
}

.rabeea-store .rb-product-card__actions .button::before,
.rabeea-store .rb-product-card__actions .added_to_cart::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 72%);
	transform: translateX(-130%);
	transition: transform 720ms var(--rb-ease-standard);
	pointer-events: none;
	z-index: -1;
}

.rabeea-store .rb-product-card__actions .button:hover,
.rabeea-store .rb-product-card__actions .added_to_cart:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 30px rgba(var(--rb-brand-primary-rgb), 0.32);
	color: var(--rb-text-inverse);
	background-position: 100% 50%;
}

.rabeea-store .rb-product-card__actions .button:hover::before,
.rabeea-store .rb-product-card__actions .added_to_cart:hover::before {
	transform: translateX(130%);
}

.rabeea-store .rb-product-card__actions .added_to_cart {
	margin-top: var(--rb-space-2);
	background: linear-gradient(138deg, rgba(var(--rb-surface-contrast-rgb), 0.98) 0%, var(--rb-brand-primary) 60%, var(--rb-brand-secondary) 100%);
}

.rabeea-store .rb-product-card__actions .button.is-rb-atc-loading {
	pointer-events: none;
	cursor: wait;
	filter: saturate(0.92);
	transform: translateY(-1px) scale(0.995);
	box-shadow: 0 16px 26px rgba(var(--rb-brand-primary-rgb), 0.22);
}

.rabeea-store .rb-product-card__actions .button.is-rb-atc-loading::after {
	content: "";
	width: 1rem;
	height: 1rem;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.28);
	border-top-color: #ffffff;
	border-right-color: #ffffff;
	font-size: 0;
	opacity: 1;
	animation: rb-atc-spin 0.82s linear infinite;
}

.rabeea-store .rb-product-card__actions .button.is-rb-atc-success {
	background: linear-gradient(138deg, var(--rb-state-success) 0%, var(--rb-state-success-strong) 58%, var(--rb-state-success) 100%);
	box-shadow: 0 16px 28px rgba(31, 138, 102, 0.3);
}

.rabeea-store .rb-product-card__actions .button.is-rb-atc-success::after {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	animation: rb-atc-pop 320ms var(--rb-ease-standard) both;
}

.rabeea-store .rb-product-card__actions .button .rb-atc-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rabeea-store .rb-atc-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
}

.rabeea-store .rb-atc-button > i {
	display: none;
}

.rabeea-store .rb-atc-button::after {
	content: "\f07a";
	display: inline-block;
	flex: 0 0 auto;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.82rem;
	line-height: 1;
	transform-origin: center;
	will-change: transform;
}

.rabeea-store .rb-atc-button.is-rb-atc-loading {
	pointer-events: none;
	cursor: wait;
}

.rabeea-store .rb-atc-button.is-rb-atc-loading::after {
	content: "";
	width: 1rem;
	height: 1rem;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.28);
	border-top-color: #ffffff;
	border-right-color: #ffffff;
	font-size: 0;
	animation: rb-atc-spin 0.82s linear infinite;
}

.rabeea-store .rb-atc-button.is-rb-atc-success::after {
	content: "\f00c";
	display: inline-block;
	width: auto;
	height: auto;
	border: 0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 0.82rem;
	line-height: 1;
	animation: rb-atc-pop 320ms var(--rb-ease-standard) both;
}

@keyframes rb-atc-spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes rb-atc-pop {
	0% {
		transform: scale(0.2);
		opacity: 0;
	}

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