.chasb-widget-card {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 16px;
	background: #ffffff;
}

.chasb-faq {
	--chasb-faq-sidebar: 360px;
	--chasb-faq-gap: 20px;
	display: grid;
	grid-template-columns: var(--chasb-faq-sidebar) minmax(0, 1fr);
	gap: var(--chasb-faq-gap);
	direction: rtl;
	background: #ffffff;
	color: #101828;
}

.chasb-faq--no-sidebar {
	grid-template-columns: minmax(0, 1fr);
}

.chasb-faq *,
.chasb-faq *::before,
.chasb-faq *::after {
	box-sizing: border-box;
}

.chasb-faq__sidebar {
	min-width: 0;
	order: 1;
}

.chasb-faq__main {
	min-width: 0;
	order: 2;
}

.chasb-faq__search {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 12px;
	background: #ffffff;
	border: 1px solid #edf0f4;
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}

.chasb-faq__search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #4c5565;
	flex: 0 0 auto;
}

.chasb-faq__search-icon svg {
	display: block;
	width: 21px;
	height: 21px;
}

.chasb-faq__search-input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	border: 0 !important;
	outline: 0;
	padding: 0;
	background: transparent !important;
	color: #4c5565;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	text-align: right;
	box-shadow: none !important;
}

.chasb-faq__search-input::placeholder {
	color: #a4acb9;
	opacity: 1;
}

.chasb-faq__categories-title {
	margin: 16px 0 18px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	color: #101828;
	text-align: right;
}

.chasb-faq__categories-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.chasb-faq__category {
	width: 100%;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border: 1px solid #e2e6ec;
	border-radius: 10px;
	background: #ffffff;
	color: #4c5565;
	padding: 18px 22px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-align: right;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.chasb-faq__category:hover,
.chasb-faq__category:focus {
	border-color: #d5dbe4;
	color: #101828;
	outline: 0;
}

.chasb-faq__category.is-active {
	background: #f4f7fb;
	color: #4c5565;
	border-color: #dfe5ee;
}

.chasb-faq__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 16px;
	min-height: 34px;
}

.chasb-faq__title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin: 0;
	color: #101828;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	white-space: nowrap;
}

.chasb-faq__title-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #f15f4c;
	flex: 0 0 auto;
}

.chasb-faq__title-line {
	display: block;
	flex: 1 1 auto;
	border-bottom: 1px solid #edf0f4;
	transform: translateY(1px);
}

.chasb-faq__items {
	display: block;
}

.chasb-faq__item {
	border-bottom: 1px solid #edf0f4;
	background: transparent;
}

.chasb-faq__question {
	width: 100%;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 0;
	background: transparent;
	color: #4c5565;
	padding: 0;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	text-align: right;
	cursor: pointer;
}

.chasb-faq__question:focus {
	outline: 0;
}

.chasb-faq__question-text {
	min-width: 0;
	overflow-wrap: anywhere;
}

.chasb-faq__chevron {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	color: #4c5565;
	flex: 0 0 auto;
}

.chasb-faq__chevron::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	border-inline-end: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-50%, -60%) rotate(45deg);
	transition: transform 0.18s ease;
}

.chasb-faq__item.is-open .chasb-faq__chevron::before {
	transform: translate(-50%, -35%) rotate(316deg);
}

.chasb-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	background: transparent;
	transition: grid-template-rows 0.22s ease;
}

.chasb-faq__item.is-open .chasb-faq__answer {
	grid-template-rows: 1fr;
}

.chasb-faq__answer-inner {
	min-height: 0;
	padding: 0 0 14px 30px;
	color: #4c5565;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.95;
	text-align: right;
}

.chasb-faq__empty {
	margin: 18px 0 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.7;
	text-align: right;
}

@media (max-width: 1024px) {
	.chasb-faq {
		grid-template-columns: minmax(0, 1fr);
	}

	.chasb-faq__sidebar,
	.chasb-faq__main {
		order: initial;
	}

	.chasb-faq__categories-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.chasb-faq {
		--chasb-faq-gap: 18px;
	}

	.chasb-faq__categories-list {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.chasb-faq__category {
		min-height: 52px;
		padding: 12px 16px;
	}

	.chasb-faq__title {
		font-size: 18px;
	}

	.chasb-faq__question {
		font-size: 13px;
		min-height: 44px;
	}

	.chasb-faq__answer-inner {
		font-size: 13px;
		padding-left: 20px;
	}
}

.chasb-widget-card__title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.3;
}

.chasb-widget-card__desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #374151;
}

.chasb-hero-slider {
	position: relative;
	overflow: hidden;
	background: #eef0f3;
	border-radius: 0;
	direction: rtl;
	touch-action: pan-y;
	--chasb-overlay-color: #000000;
	--chasb-overlay-opacity: 0.25;
}

.chasb-hero-slider__slides {
	position: relative;
	z-index: 1;
	cursor: grab;
	user-select: none;
}

.chasb-hero-slider.is-dragging .chasb-hero-slider__slides {
	cursor: grabbing;
}

.chasb-hero-slide {
	display: flex;
	align-items: stretch;
	min-height: 500px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	inset: 0;
	transition: opacity var(--chasb-transition-speed, 500ms) ease;
}

.chasb-hero-slider--full .chasb-hero-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--chasb-overlay-color);
	opacity: var(--chasb-overlay-opacity);
	z-index: 1;
}

.chasb-hero-slide--linked {
	color: inherit;
	text-decoration: none;
}

.chasb-hero-slide.chasb-hero-slide--linked .chasb-hero-slide__media {
	flex: 0 0 100%;
	width: 100%;
}

.chasb-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	position: relative;
}

.chasb-hero-slide__media {
	flex: 0 0 48%;
	min-height: 100%;
}

.chasb-hero-slide__media img {
	display: block;
}

.chasb-hero-slide__content {
	flex: 0 0 52%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px 56px;
}

.chasb-hero-slide__content-inner {
	max-width: 620px;
	width: 100%;
	text-align: right;
}


.chasb-hero-slider--full .chasb-hero-slide__media {

}

.chasb-hero-slider--full .chasb-hero-slide__content {
	position: relative;
	z-index: 2;
	flex: 0 0 100%;
	width: 100%;
	padding-inline: 6%;
	justify-content: flex-start;
}

.chasb-hero-slider--content-right .chasb-hero-slide__content {
	justify-content: flex-start;
}

.chasb-hero-slider--content-center .chasb-hero-slide__content {
	justify-content: center;
}

.chasb-hero-slider--content-left .chasb-hero-slide__content {
	justify-content: flex-end;
}

.chasb-hero-slide__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0b2a64;
	color: #fff;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 16px;
}

.chasb-hero-slide__title {
	margin: 0;
	color: #0b2a64;
	font-size: clamp(32px, 4vw, 66px);
	font-weight: 800;
	line-height: 1.2;
}

.chasb-hero-slide__subtitle {
	margin: 18px 0 0;
	font-size: 21px;
	line-height: 1.65;
	color: #243f76;
}

.chasb-hero-slide__button {
	margin-top: 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ec6841;
	color: #fff;
	border-radius: 12px;
	padding: 12px 30px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.chasb-hero-slide__button:hover,
.chasb-hero-slide__button:focus {
	color: #fff;
	opacity: 0.92;
}

.chasb-hero-slide__button-icon {
	font-size: 22px;
	line-height: 1;
	transform: translateY(-1px);
}

.chasb-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: rgba(11, 42, 100, 0.85);
	color: #fff;
	cursor: pointer;
	pointer-events: auto;
	z-index: 10;
	font-size: 20px;
	line-height: 1;
}

.chasb-hero-slider__arrow--prev {
	right: 18px;
}

.chasb-hero-slider__arrow--next {
	left: 18px;
}

@media (max-width: 1024px) {
	.chasb-hero-slide__content {
		padding: 28px 30px;
	}

	.chasb-hero-slider--full .chasb-hero-slide__content {
		padding-inline: 4%;
	}

	.chasb-hero-slide__subtitle {
		font-size: 16px;
	}

	.chasb-hero-slide__button {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.chasb-hero-slide {
		flex-direction: column;
		min-height: 560px;
	}

	.chasb-hero-slider--full .chasb-hero-slide {
		flex-direction: row;
		min-height: 520px;
	}

	.chasb-hero-slide__media,
	.chasb-hero-slide__content {
		flex-basis: auto;
	}

	.chasb-hero-slide__media {
		height: 250px;
	}

	.chasb-hero-slider--full .chasb-hero-slide__media {
		height: 100%;
	}

	.chasb-hero-slide__content {
		padding: 22px 18px 28px;
	}

	.chasb-hero-slider--full .chasb-hero-slide__content {
		padding: 22px 18px 28px;
	}

	.chasb-hero-slide__title {
		font-size: clamp(26px, 7vw, 40px);
	}

	.chasb-hero-slide__subtitle {
		font-size: 15px;
		line-height: 1.7;
	}

	.chasb-hero-slide__button {
		font-size: 17px;
		padding: 10px 22px;
	}

	.chasb-hero-slider__arrow {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
}

.chasb-product-categories {
	--chasb-category-columns: 9;
	--chasb-category-gap: 20px;
	--chasb-slides-per-view: 6;
	--chasb-carousel-transition-speed: 350ms;
	position: relative;
	direction: rtl;
}

.chasb-product-categories__track {
	display: grid;
	grid-template-columns: repeat(var(--chasb-category-columns), minmax(0, 1fr));
	gap: var(--chasb-category-gap);
}

.chasb-product-categories__item {
	min-width: 0;
}

.chasb-product-categories__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease;
}

.chasb-product-categories__link:hover,
.chasb-product-categories__link:focus {
	color: inherit;
	transform: translateY(-2px);
}

.chasb-product-categories__image-wrap {
	background: #f2f4f7;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 14px;
}

.chasb-product-categories__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.chasb-product-categories__title {
	margin: 0;
	font-size: 26px;
	line-height: 1.35;
	font-weight: 700;
	color: #0f172a;
	word-break: break-word;
}

.chasb-product-categories__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 14px;
	line-height: 1;
	background: #eef2ff;
	color: #334155;
}

.chasb-product-categories--carousel {
	direction: ltr;
}

.chasb-product-categories--carousel .chasb-product-categories__viewport {
	direction: ltr;
	overflow: hidden;
	touch-action: pan-y;
}

.chasb-product-categories--carousel .chasb-product-categories__track {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	gap: var(--chasb-category-gap);
	justify-content: flex-start;
	transition: transform var(--chasb-carousel-transition-speed) ease;
	will-change: transform;
	cursor: grab;
	user-select: none;
}

.chasb-product-categories--carousel .chasb-product-categories__link {
	direction: rtl;
}

.chasb-product-categories--carousel.is-dragging .chasb-product-categories__track {
	cursor: grabbing;
	transition: none;
}

.chasb-product-categories--carousel .chasb-product-categories__item {
	flex: 0 0 calc((100% - (var(--chasb-slides-per-view) - 1) * var(--chasb-category-gap)) / var(--chasb-slides-per-view));
}

.chasb-product-categories--carousel .chasb-product-categories__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.chasb-product-categories--carousel .chasb-product-categories__arrow--prev {
	right: 8px;
}

.chasb-product-categories--carousel .chasb-product-categories__arrow--next {
	left: 8px;
}

.chasb-product-categories--carousel .chasb-product-categories__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.chasb-product-categories__dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 14px;
}

.chasb-product-categories__dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: #cbd5e1;
	padding: 0;
	cursor: pointer;
}

.chasb-product-categories__dot.is-active {
	background: #0f172a;
}

@media (max-width: 1200px) {
	.chasb-product-categories__title {
		font-size: 20px;
	}
}

@media (max-width: 767px) {

	.chasb-products-tabs__header-main {
		width: 100%;
	}

	.chasb-product-categories {
		--chasb-category-gap: 14px;
	}

	.chasb-product-categories__image-wrap {
		width: 95px;
		height: 95px;
		padding: 10px;
	}

	.chasb-product-categories__title {
		font-size: 15px;
	}

	.chasb-product-categories--carousel .chasb-product-categories__arrow {
		width: 32px;
		height: 32px;
	}
}

.chasb-products-tabs {
	--chasb-products-gap: 0px;
	--chasb-products-slides-per-view: 6;
	--chasb-products-transition-speed: 350ms;
	position: relative;
	direction: rtl;
	background: #02050b;
	border: 1px solid #cbd5e1;
	border-radius: 16px;
	overflow: hidden;
}

.chasb-products-tabs__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 14px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.chasb-products-tabs__header-main {
	display: flex;
	align-items: center;
	gap: 15px;
}

.chasb-products-tabs__heading {
	margin: 0;
	font-size: 36px;
	line-height: 1.2;
	color: #0b4db3;
	font-weight: 800;
}

.chasb-products-tabs__header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.chasb-products-tabs__all-link {
	color: #4C5565;
	font-weight: 600;
	font-size: 15px;
	line-height: 100%;
	text-align: right;
	display: flex;
	gap: 4px;
	align-items: center;
}


.chasb-products-tabs__tabs {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	padding: 3px;
	border-radius: 8px;
}

.chasb-products-tabs__tab {
	border: 0;
	background: #f1f5f9;
	color: #6b7280;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.2s ease;
}

.chasb-products-tabs__tab.is-active {
	background: #f97355;
	color: #ffffff;
}

.chasb-products-tabs__panel {
	padding: 0;
}

.chasb-products-tabs__empty {
	margin: 0;
	padding: 20px 14px;
	color: #e2e8f0;
}

.chasb-products-tabs__carousel {
	position: relative;
}

.chasb-products-tabs__viewport {
	overflow: hidden;
}

.chasb-products-tabs__track {
	display: flex;
	gap: var(--chasb-products-gap);
	transition: transform var(--chasb-products-transition-speed) ease;
	will-change: transform;
}

.chasb-products-tabs__item {
	flex: 0 0 calc((100% - (var(--chasb-products-slides-per-view) - 1) * var(--chasb-products-gap)) / var(--chasb-products-slides-per-view));
	border-left: 1px solid rgba(148, 163, 184, 0.35);
}

.chasb-products-tabs__card {
	display: flex;
	flex-direction: column;
	direction: rtl;
	text-align: right;
	gap: 10px;
	padding: 12px;
	min-height: 100%;
}

.chasb-products-tabs__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
	background: #ffffff;
	border-radius: 6px;
	padding: 10px;
	border: 1px solid #e2e8f0;
}

.chasb-products-tabs__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.chasb-products-tabs__badge {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 10px;
	border-radius: 999px;
	background: #374151;
	color: #e5e7eb;
	font-size: 12px;
	line-height: 1;
}

.chasb-products-tabs__title {
	margin: 0;
	font-size: 30px;
	line-height: 1.25;
	font-weight: 800;
	color: #e5e7eb;
}

.chasb-products-tabs__title a {
	color: inherit;
	text-decoration: none;
}

.chasb-products-tabs__meta {
	margin: 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: right;
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 12px;
}

.chasb-products-tabs__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.chasb-products-tabs__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

.chasb-product__prices {
	display: flex;
	align-items: center;
	gap: 6px;
}

.chasb-price-current {
	font-weight: 300;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: right;
	text-decoration: line-through;
	color: #4C5565;
}

.chasb-price-regular span bdi {
	font-weight: 700;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: right;
	color: #E56352;
}

.chasb-price-regular span bdi .woocommerce-Price-currencySymbol {
	font-weight: 300;
	font-size: 10px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: right;
}

.chasb-products-tabs__price {
	color: #f97355;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.chasb-products-tabs__price del {
	font-size: 0.78em;
	opacity: 0.7;
}

.chasb-products-tabs__sale {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #334155;
	color: #fff;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 12px;
	line-height: 1;
}

.chasb-products-tabs__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.chasb-products-tabs__arrow--prev {
	right: 8px;
}

.chasb-products-tabs__arrow--next {
	left: 8px;
}

.chasb-products-tabs__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.chasb-products-tabs__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 0 14px;
}

.chasb-products-tabs__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 999px;
	background: #64748b;
	cursor: pointer;
	padding: 0;
}

.chasb-products-tabs__dot.is-active {
	background: #f97355;
}

@media (max-width: 1200px) {
	.chasb-products-tabs__heading {
		font-size: 28px;
	}

	.chasb-products-tabs__title {
		font-size: 22px;
	}

	.chasb-products-tabs__meta {
		font-size: 15px;
	}
	.chasb-products-tabs__arrow {
	display: none;
}
}

@media (max-width: 767px) {
	.chasb-products-tabs__header {
		padding: 10px;
	}

.chasb-products-tabs__tabs {
	width: fit-content;
	overflow-x: auto;
}

	.chasb-products-tabs__tab {
		font-size: 14px;
		padding: 8px 12px;
		white-space: nowrap;
	}

	.chasb-products-tabs__heading {
		font-size: 20px;
	}

	.chasb-products-tabs__track {
		direction: rtl;
		overflow-x: auto;
		transform: unset !important;
	}

	.chasb-products-tabs__item {
		max-width: 170px;
	}

	.chasb-products-tabs__badge {
		font-size: 10px;
	}

	.chasb-products-tabs__thumb {
		height: 130px;
	}

	/* Wrapper */
	.chasb-products-tabs__fake-select {
		position: relative;
		width: 100%;
		max-width: max-content;
		min-width: 106px;
	}

	/* Trigger button */
	.chasb-products-tabs__fake-select-trigger {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		padding: 12px 14px;
		border-radius: 10px;
		background: #ECF1FA !important;
		color: #001F52 !important;
		font-size: 14px;
		line-height: 1.2;
		cursor: pointer;
		transition: border-color .2s ease, box-shadow .2s ease;
		border: 0;
	}

	.chasb-products-tabs__fake-select-trigger:focus {
		outline: none;
		border-color: #6366f1;
		box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
	}

	/* caret icon */
	.chasb-products-tabs__fake-select-trigger::after {
		content: "";
		width: 7px;
		height: 7px;
		border-right: 2px solid #001F52;
		border-bottom: 2px solid #001F52;
		transform: rotate(45deg);
		transition: transform .2s ease;
		margin-left: 6px;
	}

	/* rotate caret when open */
	.chasb-products-tabs__fake-select-trigger[aria-expanded="true"]::after {
		transform: rotate(-135deg);
	}

	/* Dropdown list */
	.chasb-products-tabs__fake-select-list {
		position: absolute;
		top: calc(100% + 6px);
		left: 0;
		right: 0;
		background: #fff;
		border: 1px solid #e5e7eb;
		border-radius: 10px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
		padding: 6px;
		z-index: 100;
		display: none;
	}

	/* show */
	.chasb-products-tabs__fake-select-list.is-open {
		display: block;
	}

	/* options */
	.chasb-products-tabs__fake-select-option {
		width: 100%;
		text-align: right;
		padding: 10px 12px;
		border: 0;
		border-radius: 8px;
		background: transparent;
		color: #111827;
		font-size: 14px;
		line-height: 1.2;
		cursor: pointer;
		transition: background .15s ease, color .15s ease;
	}

	.chasb-products-tabs__fake-select-option:hover {
		background: #f3f4f6;
	}

	.chasb-products-tabs__fake-select-option.is-active,
	.chasb-products-tabs__fake-select-option[aria-selected="true"] {
		background: #eef2ff;
		color: #4338ca;
	}

	/* Optional: label */
	.chasb-products-tabs__fake-select-label {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	/* dark mode نمونه (اختیاری) */
	@media (prefers-color-scheme: dark) {

		.chasb-products-tabs__fake-select-trigger,
		.chasb-products-tabs__fake-select-list {
			background: #0f172a;
			border-color: #1f2937;
			color: #e5e7eb;
		}

		.chasb-products-tabs__fake-select-option {
			color: #e5e7eb;
		}

		.chasb-products-tabs__fake-select-option:hover {
			background: #1f2937;
		}

		.chasb-products-tabs__fake-select-option.is-active {
			background: #1e1b4b;
			color: #c7d2fe;
		}
	}

	.chasb-products-tabs__title {
		font-size: 15px;
	}

	.chasb-products-tabs__meta {
		font-size: 13px;
	}

	.chasb-products-tabs__price {
		font-size: 15px;
	}
}

.chasb-promo-cards {
	--chasb-promo-columns: 4;
	display: grid;
	grid-template-columns: repeat(var(--chasb-promo-columns), minmax(0, 1fr));
	gap: 16px;
	direction: rtl;
}

.chasb-promo-cards__card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 330px;
	border-radius: 12px;
	background: #eff2f5;
}

.chasb-promo-cards__card--linked {
	color: inherit;
	text-decoration: none;
}

.chasb-promo-cards__media {
	position: absolute;
	inset: 0;
}

.chasb-promo-cards__media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.chasb-promo-cards__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 22px;
	z-index: 2;
}

.chasb-promo-cards__content--top-right {
	align-items: flex-end;
	justify-content: flex-start;
	text-align: right;
}

.chasb-promo-cards__content--top-left {
	align-items: flex-start;
	justify-content: flex-start;
	text-align: left;
}

.chasb-promo-cards__content--bottom-right {
	align-items: flex-end;
	justify-content: flex-end;
	text-align: right;
}

.chasb-promo-cards__content--bottom-left {
	align-items: flex-start;
	justify-content: flex-end;
	text-align: left;
}

.chasb-promo-cards__content--center-right {
	align-items: flex-end;
	justify-content: center;
	text-align: right;
}

.chasb-promo-cards__content--center-left {
	align-items: flex-start;
	justify-content: center;
	text-align: left;
}

.chasb-promo-cards__content--center {
	align-items: center;
	justify-content: center;
	text-align: center;
}

.chasb-promo-cards__title {
	margin: 0;
	font-size: 54px;
	line-height: 1.15;
	font-weight: 800;
	color: #0b2a64;
}

.chasb-promo-cards__button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #0b2a64;
	font-size: 34px;
	line-height: 1;
	font-weight: 700;
	transition: opacity 0.2s ease;
}

.chasb-promo-cards__button .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
}

.chasb-promo-cards__button:hover {
	color: #0b2a64;
	opacity: 0.85;
}

@media (max-width: 1200px) {
	.chasb-promo-cards__title {
		font-size: 34px;
	}

	.chasb-promo-cards__button {
		font-size: 28px;
	}
}

@media (max-width: 767px) {

	.chasb-promo-cards__card {
		min-height: 250px;
	}

	.chasb-promo-cards__title {
		font-size: 28px;
	}

	.chasb-promo-cards__button {
		font-size: 20px;
	}
}

.chasb-best-selling {
	--chasb-best-cols: 4;
	background: #f3f4f6;
	direction: rtl;
	border: 1px solid #e2e8f0;
}

.chasb-best-selling__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 16px;
	border-bottom: 1px solid #d8dee6;
}

.chasb-best-selling__right {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.chasb-best-selling__title {
	margin: 0;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
}

.chasb-best-selling__tabs-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.chasb-best-selling__tabs {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.chasb-best-selling__tab {
	border: 0;
	background: transparent;
	color: #334155;
	font-size: 15px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 8px;
	cursor: pointer;
	line-height: 1;
}

.chasb-best-selling__tab.is-active {
	background: #f97355;
	color: #fff;
}

.chasb-best-selling__note {
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.2;
}

.chasb-best-selling__left {
	display: flex;
	align-items: center;
}

.chasb-best-selling__view-all,
.chasb-membership-offer__button {
	color: #4C5565;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	text-align: right;
	display: flex;
	gap: 4px;
	align-items: center;
}

.chasb-best-selling__view-all:hover {
	color: #0f172a;
}

.chasb-best-selling__grid {
	display: grid;
	grid-template-columns: repeat(var(--chasb-best-cols), minmax(0, 1fr));
	gap: 0;
}

.chasb-best-selling__item {
	border-inline-start: 1px solid #d8dee6;
	border-bottom: 1px solid #d8dee6;
}

.chasb-best-selling__item.is-row-start {
	border-inline-start: 0;
}

.chasb-best-selling__item-inner {
	display: flex;
	direction: rtl;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	min-height: 126px;
	background: transparent;
	position: relative;
}

.chasb-best-selling__info {
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
}

.chasb-best-selling__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e2e8f0;
	color: #334155;
	border-radius: 999px;
	padding: 3px 10px;
	font-size: 12px;
	line-height: 1;
}

.chasb-best-selling__name {
	margin: 8px 0 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 800;
	color: #0f172a;
}

.chasb-best-selling__name a {
	color: inherit;
	text-decoration: none;
}

.chasb-best-selling__meta {
	margin: 6px 0 0;
	color: #94a3b8;
	font-size: 13px;
	line-height: 1.3;
}

.chasb-best-selling__price-row {
	margin-top: 8px;
}

.chasb-best-selling__price {
	color: #f97355;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.chasb-best-selling__price del {
	font-size: 0.75em;
	opacity: 0.7;
}

.chasb-best-selling__thumb {
	position: relative;
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	border: 1px solid #d8dee6;
	border-radius: 8px;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chasb-best-selling__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.chasb-best-selling__sale {
	position: absolute;
	top: 18px;
	right: 18px;
	background: #64748b;
	color: #fff;
	border-radius: 999px;
	padding: 2px 6px;
	font-size: 10px;
	line-height: 1;
}

@media (max-width: 1200px) {
	.chasb-best-selling__title {
		font-size: 20px;
	}

	.chasb-best-selling__tab {
		font-size: 14px;
	}

	.chasb-best-selling__view-all {
		font-size: 14px;
	}

	.chasb-best-selling__name {
		font-size: 14px;
	}

	.chasb-best-selling__price {
		font-size: 14px;
	}

	.chasb-best-selling__thumb {
		flex-basis: 86px;
		width: 86px;
		height: 86px;
	}
}

@media (max-width: 767px) {
	.chasb-best-selling__header {
		padding: 20px 10px;
	}

	.chasb-best-selling__grid {
		padding: 0 15px;
	}

	.chasb-best-selling__title {
		font-size: 18px;
	}

	.chasb-best-selling__tabs-wrap {
		display: none;
	}

	.chasb-best-selling__tabs {
		width: 100%;
		overflow-x: auto;
	}

	.chasb-best-selling__tab {
		font-size: 13px;
		padding: 8px 12px;
		white-space: nowrap;
	}

	.chasb-best-selling__note {
		font-size: 12px;
	}

	.chasb-best-selling__view-all {
		font-size: 13px;
	}

	.chasb-best-selling__item-inner {
		min-height: 112px;
		padding: 10px;
	}

	.chasb-best-selling__name {
		font-size: 13px;
	}

	.chasb-best-selling__meta {
		font-size: 11px;
	}

	.chasb-best-selling__price {
		font-size: 13px;
	}

	.chasb-best-selling__thumb {
		flex-basis: 70px;
		width: 70px;
		height: 70px;
		border-radius: 7px;
	}
}

.chasb-membership-offer {
	position: relative;
	background: #e9edf3;
	border: 1px dotted #0b2f6f;
	border-radius: 16px;
	padding: 18px 44px;
	overflow: hidden;
	direction: rtl;
}

.chasb-membership-offer__main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.chasb-membership-offer.has-pattern::before {
	content: '';
	position: absolute;
	left: 22%;
	top: -28px;
	width: 240px;
	height: 240px;
	background:
		radial-gradient(circle at 22% 12%, rgba(255, 255, 255, 0.45) 0 20px, transparent 21px),
		radial-gradient(circle at 60% 36%, rgba(255, 255, 255, 0.32) 0 14px, transparent 15px),
		radial-gradient(circle at 44% 64%, rgba(255, 255, 255, 0.25) 0 18px, transparent 19px);
	opacity: 0.9;
	pointer-events: none;
}

.chasb-membership-offer__left,
.chasb-membership-offer__right {
	position: relative;
	z-index: 1;
}

.chasb-membership-offer__left {
	order: 2;
	flex: 0 0 auto;
}

.chasb-membership-offer__right {
	order: 1;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	text-align: right;
}

.chasb-membership-offer__text {
	text-align: right;
}

.chasb-membership-offer__percent {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 80px;
	line-height: 0.9;
	font-weight: 800;
	color: #0b3273;
	letter-spacing: -0.02em;
}

.chasb-membership-offer__percent-extra {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.32em;
	line-height: 1;
}

.chasb-membership-offer__percent-extra .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.chasb-membership-offer__percent-extra svg {
	width: 1em;
	height: 1em;
}

.chasb-membership-offer__title {
	margin: 0;
	color: #0a2e6a;
	font-size: 52px;
	line-height: 1.1;
	font-weight: 800;
}

.chasb-membership-offer__subtitle {
	margin: 8px 0 0;
	color: #1e3a70;
	font-size: 22px;
	line-height: 1.5;
}

.chasb-membership-offer__button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #f97355;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
}

.chasb-membership-offer__button-icon {
	font-size: 0.9em;
	line-height: 1;
}

.chasb-membership-offer__button:hover {
	color: #f97355;
	opacity: 0.9;
}

@media (max-width: 1200px) {
	.chasb-membership-offer {
		padding: 14px 22px;
		min-height: 112px;
	}

	.chasb-membership-offer__right {
		gap: 14px;
	}

	.chasb-membership-offer__percent {
		font-size: 52px;
	}

	.chasb-membership-offer__title {
		font-size: 32px;
	}

	.chasb-membership-offer__subtitle {
		font-size: 17px;
	}

	.chasb-membership-offer__button {
		font-size: 23px;
	}
}

@media (max-width: 767px) {
	.chasb-membership-offer {
		padding: 14px;
		text-align: right;
	}

	.chasb-membership-offer__main {
		flex-direction: row-reverse;
		align-items: center;
		gap: 8px;
	}

	.chasb-membership-offer__right,
	.chasb-membership-offer__left {
		order: initial;
		justify-content: flex-start;
	}

	.chasb-membership-offer__right {
		width: 100%;
		justify-content: space-between;
	}

	.chasb-membership-offer__text {
		flex: 1 1 auto;
	}

	.chasb-membership-offer__percent {
		font-size: 36px;
	}

	.chasb-membership-offer__title {
		font-size: 22px;
	}

	.chasb-membership-offer__subtitle {
		font-size: 14px;
		margin-top: 4px;
	}

	.chasb-membership-offer__button {
		font-size: 18px;
	}
}

.chasb-brands-showcase {
	--chasb-brands-cols: 3;
	--chasb-brands-gap: 14px;
	background: #000;
	padding: 14px 0 18px;
	direction: rtl;
}

.chasb-brands-showcase__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px 14px;
}

.chasb-brands-showcase__title {
	margin: 0;
	color: #0b1222;
	font-size: 44px;
	line-height: 1.2;
	font-weight: 800;
}

.chasb-brands-showcase__view-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #94a3b8;
	font-size: 26px;
	font-weight: 700;
	text-decoration: none;
}

.chasb-brands-showcase__view-all:hover {
	color: #cbd5e1;
}

.chasb-brands-showcase__arrow {
	font-size: 0.92em;
	line-height: 1;
}

.chasb-brands-showcase__grid {
	display: grid;
	grid-template-columns: repeat(var(--chasb-brands-cols), minmax(0, 1fr));
	gap: var(--chasb-brands-gap);
	padding: 0 8px;
}

.chasb-brands-showcase__grid-item {
	min-width: 0;
}

.chasb-brands-showcase--desktop-grid .chasb-brands-showcase__carousel,
.chasb-brands-showcase--desktop-carousel .chasb-brands-showcase__grid {
	display: none;
}

.chasb-brands-showcase--desktop-carousel .chasb-brands-showcase__carousel {
	display: block;
}

.chasb-brands-showcase__card {
	background: #e5e7eb;
	border-radius: 14px;
	padding: 18px 16px 16px;
}

.chasb-brands-showcase__brand-title {
	margin: 0 0 10px;
	text-align: right;
	color: #111827;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
}

.chasb-brands-showcase__body {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.chasb-brands-showcase__content {
	flex: 1 1 auto;
	min-width: 0;
}

.chasb-brands-showcase__list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.chasb-brands-showcase__list li+li {
	margin-top: 6px;
}

.chasb-brands-showcase__list a {
	color: #64748b;
	font-size: 33px;
	line-height: 1.35;
	text-decoration: none;
}

.chasb-brands-showcase__list a:hover {
	color: #475569;
}

.chasb-brands-showcase__logo-wrap {
	flex: 0 0 46%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.chasb-brands-showcase__logo {
	max-width: 100%;
	max-height: 120px;
	object-fit: contain;
	display: block;
}

.chasb-brands-showcase__brand-link {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fb6a4a;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	justify-content: right;
	width: 100%;
}

.chasb-brands-showcase__brand-link:hover {
	color: #ef4444;
}

@media (max-width: 1200px) {
	.chasb-brands-showcase__title {
		font-size: 28px;
	}

	.chasb-brands-showcase__view-all {
		font-size: 17px;
	}

	.chasb-brands-showcase__brand-title {
		font-size: 28px;
	}

	.chasb-brands-showcase__list a {
		font-size: 20px;
	}

	.chasb-brands-showcase__brand-link {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.chasb-brands-showcase__header {
		padding-bottom: 10px;
	}

	.chasb-brands-showcase__title {
		font-size: 20px;
	}

	.chasb-brands-showcase__view-all {
		font-size: 14px;
	}

	.chasb-brands-showcase__grid {
		grid-template-columns: 1fr;
	}

	.chasb-brands-showcase--mobile-grid .chasb-brands-showcase__grid {
		display: grid;
	}

	.chasb-brands-showcase--mobile-grid .chasb-brands-showcase__carousel,
	.chasb-brands-showcase--mobile-carousel .chasb-brands-showcase__grid {
		display: none;
	}

	.chasb-brands-showcase--mobile-carousel .chasb-brands-showcase__carousel {
		display: block;
	}

	.chasb-brands-showcase__card {
		padding: 12px;
	}

	.chasb-brands-showcase__brand-title {
		font-size: 18px;
	}

	.chasb-brands-showcase__list a {
		font-size: 15px;
	}

	.chasb-brands-showcase__logo {
		max-height: 84px;
	}

	.chasb-brands-showcase__brand-link {
		font-size: 15px;
	}
}

.chasb-brands-showcase__carousel {
	--chasb-brands-slides-per-view: 3;
	--chasb-brands-transition-speed: 350ms;
	position: relative;
	width: 100%;
	display: block;
	padding: 0 8px;
}

.chasb-brands-showcase__viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
}

.chasb-brands-showcase__track {
	display: flex !important;
	width: 100%;
	gap: var(--chasb-brands-gap);
	transition: transform var(--chasb-brands-transition-speed) ease;
	will-change: transform;
	cursor: grab;
	user-select: none;
	flex-wrap: nowrap;
}

.chasb-brands-showcase__carousel.is-dragging .chasb-brands-showcase__track {
	cursor: grabbing;
	transition: none;
}

.chasb-brands-showcase__item {
	flex: 0 0 calc((100% - (var(--chasb-brands-slides-per-view) - 1) * var(--chasb-brands-gap)) / var(--chasb-brands-slides-per-view));
	min-width: 0;
}

.chasb-brands-showcase__arrow-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.chasb-brands-showcase__arrow-btn--prev {
	left: 8px;
}

.chasb-brands-showcase__arrow-btn--next {
	right: 8px;
}

.chasb-brands-showcase__arrow-btn[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.chasb-brands-showcase__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-top: 10px;
}

.chasb-brands-showcase__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #64748b;
	cursor: pointer;
}

.chasb-brands-showcase__dot.is-active {
	background: #f97355;
}

@media (max-width: 767px) {
	.chasb-brands-showcase__arrow-btn {
		width: 32px;
		height: 32px;
	}
}

.chasb-brand-logos {
	background: #000000;
	direction: rtl;
	padding: 12px 10px;
}

.chasb-brand-logos__carousel {
	--chasb-brand-logos-slides-per-view: 8;
	--chasb-brand-logos-gap: 18px;
	--chasb-brand-logos-transition-speed: 350ms;
	position: relative;
}

.chasb-brand-logos__viewport {
	overflow: hidden;
}

.chasb-brand-logos__track {
	display: flex;
	direction: ltr;
	gap: var(--chasb-brand-logos-gap);
	transition: transform var(--chasb-brand-logos-transition-speed) ease;
	will-change: transform;
}

.chasb-brand-logos__item {
	flex: 0 0 calc((100% - (var(--chasb-brand-logos-slides-per-view) - 1) * var(--chasb-brand-logos-gap)) / var(--chasb-brand-logos-slides-per-view));
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.chasb-brand-logos__link {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	min-height: 72px;
	padding: 6px;
	text-decoration: none;
}

.chasb-brand-logos__img {
	display: block;
	width: 100%;
	height: 72px;
	object-fit: contain;
	transition: opacity 0.25s ease;
}

.chasb-brand-logos__img--default {
	opacity: 0.55;
}

.chasb-brand-logos__img--hover {
	position: absolute;
	inset: 6px;
	opacity: 0;
}

.chasb-brand-logos__link.has-hover-image:hover .chasb-brand-logos__img--default,
.chasb-brand-logos__link.has-hover-image:focus .chasb-brand-logos__img--default {
	opacity: 0;
}

.chasb-brand-logos__link.has-hover-image:hover .chasb-brand-logos__img--hover,
.chasb-brand-logos__link.has-hover-image:focus .chasb-brand-logos__img--hover {
	opacity: 1;
}

.chasb-brand-logos__caption {
	margin: 6px 0 0;
	color: #cbd5e1;
	font-size: 12px;
	line-height: 1.35;
	text-align: center;
}

.chasb-brand-logos__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.85);
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.chasb-brand-logos__arrow--prev {
	left: 0;
}

.chasb-brand-logos__arrow--next {
	right: 0;
}

.chasb-brand-logos__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.chasb-brand-logos__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-top: 12px;
}

.chasb-brand-logos__dot {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 999px;
	background: #cbd5e1;
	padding: 0;
	cursor: pointer;
}

.chasb-brand-logos__dot.is-active {
	background: #f97355;
}

@media (max-width: 767px) {
	.chasb-brand-logos__arrow {
		width: 28px;
		height: 28px;
	}
}

.chasb-blog-magazine {
	background: #f3f4f6;
	border: 1px solid #dde3ea;
	direction: rtl;
}

.chasb-blog-magazine__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	border-bottom: 1px solid #dde3ea;
}

.chasb-blog-magazine__title {
	margin: 0;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
}

.chasb-blog-magazine__view-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: #4c5565;
	font-size: 28px;
	font-weight: 700;
}

.chasb-blog-magazine__grid {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1fr;
	gap: 0;
}

.chasb-blog-magazine__post {
	padding: 16px 14px 14px;
	border-inline-start: 1px solid #dde3ea;
	display: flex;
	flex-direction: column;
}

.chasb-blog-magazine__post--featured {
	grid-column: 1;
	border-inline-start: 0;
}

.chasb-blog-magazine__thumb {
	display: block;
	text-decoration: none;
}

.chasb-blog-magazine__thumb img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 16px;
}

.chasb-blog-magazine__post--featured .chasb-blog-magazine__thumb img {
	height: 360px;
}

.chasb-blog-magazine__content {
	padding-top: 10px;
}

.chasb-blog-magazine__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	padding: 4px 12px;
	border-radius: 999px;
	background: #edf1f6;
	color: #697385;
	font-size: 12px;
	line-height: 1;
}

.chasb-blog-magazine__post-title {
	margin: 0;
	font-size: 37px;
	line-height: 1.35;
	font-weight: 800;
}

.chasb-blog-magazine__post-title a {
	color: #111827;
	text-decoration: none;
}

.chasb-blog-magazine__excerpt {
	margin: 10px 0 0;
	color: #6b7280;
	font-size: 14px;
	line-height: 1.75;
}

.chasb-blog-magazine__meta {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.chasb-blog-magazine__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #4c5565;
	font-size: 12px;
	line-height: 1.2;
}

.chasb-blog-magazine__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: inherit;
}

.chasb-blog-magazine__meta-icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

@media (max-width: 1200px) {
	.chasb-blog-magazine__header {
		padding: 12px 14px;
	}

	.chasb-blog-magazine__title {
		font-size: 28px;
	}

	.chasb-blog-magazine__view-all {
		font-size: 18px;
	}

	.chasb-blog-magazine__grid {
		grid-template-columns: 1fr 1fr;
	}

	.chasb-blog-magazine__post--featured {
		grid-column: 1 / span 2;
		border-inline-start: 0;
	}

	.chasb-blog-magazine__post-title {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.chasb-blog-magazine__header {
		padding: 10px 12px;
	}

	.chasb-blog-magazine__title {
		font-size: 20px;
	}

	.chasb-blog-magazine__view-all {
		font-size: 14px;
	}

	.chasb-blog-magazine__grid {
		display: flex;
		overflow-x: auto;
	}

	.chasb-blog-magazine__post {
		border-inline-start: 0;
		border-top: 1px solid #dde3ea;
		padding: 12px;
		min-width: 272px;
	}

	.chasb-blog-magazine__post:first-child {
		border-top: 0;
		display: none;
	}

	.chasb-blog-magazine__post--featured {
		grid-column: auto;
	}

	.chasb-blog-magazine__thumb img,
	.chasb-blog-magazine__post--featured .chasb-blog-magazine__thumb img {
		height: 220px;
	}

	.chasb-blog-magazine__post-title {
		font-size: 18px;
	}

	.chasb-blog-magazine__excerpt {
		font-size: 13px;
	}
}

.chasb-testimonials {
	background: #f1f4f8;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 14px 12px;
	direction: rtl;
}

.chasb-testimonials__header {
	padding: 6px 8px 14px;
	border-bottom: 1px solid #e2e8f0;
}

.chasb-testimonials__title {
	margin: 0;
	font-size: 48px;
	line-height: 1.2;
	font-weight: 800;
	color: #111827;
	text-align: right;
}

.chasb-testimonials__grid {
	--chasb-testimonials-cols: 5;
	display: grid;
	grid-template-columns: repeat(var(--chasb-testimonials-cols), minmax(0, 1fr));
	gap: 14px;
	padding-top: 14px;
}

.chasb-testimonials__carousel {
	--chasb-testimonials-slides-per-view: 5;
	--chasb-testimonials-gap: 14px;
	--chasb-testimonials-transition-speed: 350ms;
	position: relative;
	padding-top: 14px;
}

.chasb-testimonials__viewport {
	overflow: hidden;
}

.chasb-testimonials__track {
	display: flex;
	direction: ltr;
	gap: var(--chasb-testimonials-gap);
	transition: transform var(--chasb-testimonials-transition-speed) ease;
	will-change: transform;
}

.chasb-testimonials__item {
	flex: 0 0 calc((100% - (var(--chasb-testimonials-slides-per-view) - 1) * var(--chasb-testimonials-gap)) / var(--chasb-testimonials-slides-per-view));
	min-width: 0;
}

.chasb-testimonials__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.chasb-testimonials__arrow--prev {
	left: 6px;
}

.chasb-testimonials__arrow--next {
	right: 6px;
}

.chasb-testimonials__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.chasb-testimonials__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-top: 0;
	position: absolute;
	bottom: -47px;
	right: 0;
	left: 0;
	width: auto;
	background: #F6FAFF;
	height: 24px;
	min-width: 90px;
	border-radius: 20px;
	margin: 0 auto;
	max-width: fit-content;
}

.chasb-testimonials__dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: #cbd5e1;
	padding: 0;
	cursor: pointer;
}

.chasb-testimonials__dot.is-active {
	background: #f97355;
}

.chasb-testimonials__card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px 14px;
}

.chasb-testimonials__card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.chasb-testimonials__quote-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ecf1fa;
}

.chasb-testimonials__quote-icon svg {
	display: block;
	width: 17px;
	height: 17px;
}

.chasb-testimonials__head-right {
	text-align: right;
}

.chasb-testimonials__stars {
	color: #0b3f8a;
	font-size: 16px;
	letter-spacing: 2px;
	line-height: 1;
	font-weight: 700;
}

.chasb-testimonials__review-title {
	margin: 6px 0 0;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: #374151;
}

.chasb-testimonials__card-divider {
	height: 1px;
	background: #e2e8f0;
	margin: 12px 0 10px;
}

.chasb-testimonials__review-text {
	margin: 0;
	color: #6b7280;
	font-size: 15px;
	line-height: 2;
	text-align: center;
}

.chasb-testimonials__author {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.chasb-testimonials__author-text {
	text-align: right;
}

.chasb-testimonials__name {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #1f2937;
}

.chasb-testimonials__role {
	margin: 4px 0 0;
	font-size: 13px;
	line-height: 1.3;
	color: #6b7280;
}

.chasb-testimonials__avatar {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	object-fit: cover;
	display: block;
}

@media (max-width: 1200px) {
	.chasb-testimonials__title {
		font-size: 30px;
	}

	.chasb-testimonials__grid {
		--chasb-testimonials-cols: 3;
	}

	.chasb-testimonials__carousel {
		--chasb-testimonials-slides-per-view: 3;
	}

	.chasb-testimonials__review-title {
		font-size: 16px;
	}

	.chasb-testimonials__review-text {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.chasb-testimonials {
		padding: 10px;
	}

	.chasb-testimonials__header {
		padding: 4px 4px 10px;
	}

	.chasb-testimonials__title {
		font-size: 21px;
	}

	.chasb-testimonials__grid {
		--chasb-testimonials-cols: 1;
		gap: 10px;
		padding-top: 10px;
	}

	.chasb-testimonials__carousel {
		--chasb-testimonials-slides-per-view: 1;
		--chasb-testimonials-gap: 10px;
		padding-top: 10px;
	}

	.chasb-testimonials__arrow {
		width: 30px;
		height: 30px;
	}

	.chasb-testimonials__card {
		padding: 10px 12px;
	}

	.chasb-testimonials__stars {
		font-size: 14px;
	}

	.chasb-testimonials__review-title {
		font-size: 15px;
	}

	.chasb-testimonials__review-text {
		font-size: 13px;
		line-height: 1.85;
	}
}

.chasb-icon-grid-wrap {
	direction: rtl;
	background: #f3f4f6;
	border: 1px solid #dfe3e8;
	overflow: hidden;
}

.chasb-icon-grid__header {
	border-bottom: 1px solid #dfe3e8;
	margin-bottom: 0;
	padding: 12px 18px 12px;
	text-align: right;
}

.chasb-icon-grid__main-title {
	margin: 0;
	color: #0b2a64;
	font-size: 52px;
	line-height: 1.15;
	font-weight: 800;
}

.chasb-icon-grid__main-subtitle {
	margin: 12px 0 0;
	color: #6b7280;
	font-size: 15px;
	line-height: 1.9;
}

.chasb-icon-grid {
	--chasb-icon-grid-columns: 2;
	--chasb-icon-grid-rows: 2;
	display: grid;
	grid-template-columns: repeat(var(--chasb-icon-grid-columns), minmax(0, 1fr));
	grid-template-rows: repeat(var(--chasb-icon-grid-rows), minmax(0, 1fr));
	gap: 1px;
	background: #dfe3e8;
}

.chasb-icon-grid__item {
	background: #f3f4f6;
	border-radius: 0;
	padding: 20px 24px;
	min-height: 140px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.chasb-icon-grid__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 62px;
	height: 62px;
	border: 1.5px solid #9098a6;
	border-radius: 999px;
	color: #6b7280;
	background: transparent;
	margin-bottom: 0;
}

.chasb-icon-grid__icon {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.chasb-icon-grid__content {
	min-width: 0;
	flex: 1 1 auto;
}

.chasb-icon-grid__title {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	color: #8a919f;
}

.chasb-icon-grid__subtitle {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
	font-weight: 700;
	color: #3f4653;
}

.chasb-icon-grid__button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	color: #e06a4f;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.chasb-icon-grid__button:hover {
	color: #d65d42;
}

.chasb-icon-grid__button .elementor-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
}

.chasb-icon-grid__button svg {
	width: 16px;
	height: 16px;
}

.chasb-icon-grid__subtitle a {
	color: #e06a4f;
	text-decoration: none;
}

.chasb-icon-grid__subtitle a:hover {
	opacity: 0.88;
}

.chasb-icon-grid--align-right .chasb-icon-grid__item {
	text-align: right;
}

.chasb-icon-grid--align-center .chasb-icon-grid__item {
	text-align: center;
}

.chasb-icon-grid--align-left .chasb-icon-grid__item {
	text-align: left;
}

@media (max-width: 767px) {
	.chasb-icon-grid__main-title {
		font-size: 32px;
	}

	.chasb-icon-grid__main-subtitle {
		font-size: 14px;
	}

	.chasb-icon-grid {
		--chasb-icon-grid-columns: 1;
	}

	.chasb-icon-grid__title {
		font-size: 14px;
	}

	.chasb-icon-grid__subtitle {
		font-size: 14px;
	}

	.chasb-icon-grid__item {
		padding: 16px;
		min-height: 120px;
		gap: 10px;
	}

	.chasb-icon-grid__icon-wrap {
		width: 54px;
		height: 54px;
	}

	.chasb-icon-grid__icon {
		width: 34px;
		height: 34px;
	}
}

.chasb-blog-split-wrap {
	background: #f3f4f6;
}

.chasb-blog-split {
	display: grid;
	grid-template-columns: 1fr 2.05fr;
	grid-template-areas: "stack featured";
	gap: 10px;
	direction: ltr;
}

.chasb-blog-split__stack {
	grid-area: stack;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.chasb-blog-split__card {
	position: relative;
	min-height: 245px;
	border-radius: 12px;
	overflow: hidden;
	background: #111827;
}

.chasb-blog-split__card--featured {
	grid-area: featured;
	min-height: 500px;
}

.chasb-blog-split__thumb {
	position: absolute;
	inset: 0;
	display: block;
}

.chasb-blog-split__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.chasb-blog-split__card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--chasb-blog-split-overlay-start, rgba(3, 7, 18, 0.05)) 20%, var(--chasb-blog-split-overlay-end, rgba(3, 7, 18, 0.7)) 100%);
	z-index: 1;
	pointer-events: none;
}

.chasb-blog-split__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 20px;
	text-align: right;
	direction: rtl;
}

.chasb-blog-split__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 14px;
	border-radius: 999px;
	background: #e5e7eb;
	color: #0f172a;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 10px;
}

.chasb-blog-split__title {
	margin: 0 0 10px;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.35;
}

.chasb-blog-split__card--side .chasb-blog-split__title {
	font-size: 22px;
}

.chasb-blog-split__title a {
	color: #fff;
	text-decoration: none;
}

.chasb-blog-split__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.chasb-blog-split__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #e5e7eb;
	font-size: 19px;
	line-height: 1.2;
}

.chasb-blog-split__card--side .chasb-blog-split__meta-item {
	font-size: 14px;
}

.chasb-blog-split__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.chasb-blog-split__meta-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

@media (max-width: 1200px) {
	.chasb-blog-split {
		grid-template-columns: 1fr 1.5fr;
	}

	.chasb-blog-split__card--featured {
		min-height: 420px;
	}

	.chasb-blog-split__title {
		font-size: 28px;
	}

	.chasb-blog-split__card--side .chasb-blog-split__title {
		font-size: 18px;
	}

	.chasb-blog-split__meta-item {
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.chasb-blog-split {
		grid-template-columns: 1fr;
		grid-template-areas:
			"featured"
			"stack";
	}

	.chasb-blog-split__card--featured {
		min-height: 320px;
	}

	.chasb-blog-split__card--side {
		min-height: 220px;
	}

	.chasb-blog-split__content {
		padding: 14px;
	}

	.chasb-blog-split__title {
		font-size: 20px;
	}

	.chasb-blog-split__card--side .chasb-blog-split__title {
		font-size: 17px;
	}

	.chasb-blog-split__meta-item {
		font-size: 13px;
	}
}

.chasb-blog-cards {
	background: #f3f4f6;
	direction: rtl;
}

.chasb-blog-cards__header {
	margin-bottom: 12px;
}

.chasb-blog-cards__title {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.25;
	color: #0f172a;
}

.chasb-blog-cards__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #f87171;
	flex: 0 0 auto;
}

.chasb-blog-cards-carousel {
	--chasb-blog-cards-slides-per-view: 4;
	--chasb-blog-cards-gap: 14px;
	--chasb-blog-cards-transition-speed: 350ms;
	position: relative;
}

.chasb-blog-cards-carousel__viewport {
	overflow: hidden;
}

.chasb-blog-cards-carousel__track {
	display: flex;
	direction: ltr;
	gap: var(--chasb-blog-cards-gap);
	transition: transform var(--chasb-blog-cards-transition-speed) ease;
	will-change: transform;
}

.chasb-blog-cards-carousel__item {
	flex: 0 0 calc((100% - (var(--chasb-blog-cards-slides-per-view) - 1) * var(--chasb-blog-cards-gap)) / var(--chasb-blog-cards-slides-per-view));
	min-width: 0;
}

.chasb-blog-cards__card {
	background: #f3f4f6;
	border: 1px solid #dce1e7;
	min-height: 100%;
}

.chasb-blog-cards__thumb {
	display: block;
	text-decoration: none;
	padding: 10px;
}

.chasb-blog-cards__header {
	border-bottom: 1px solid #ECF1FA;
	padding-bottom: 15px;
}

.chasb-blog-cards__thumb img {
	display: block;
	width: 100%;
	height: 205px;
	object-fit: cover;
	border-radius: 12px !important;
}

.chasb-blog-cards__body {
	padding: 10px 6px;
	text-align: right;
	direction: rtl;
}

.chasb-blog-cards__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: #eceff3;
	color: #6b7280;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 8px;
}

.chasb-blog-cards__post-title {
	margin: 0;
	font-size: 42px;
	line-height: 1.35;
	font-weight: 800;
}

.chasb-blog-cards__post-title a {
	color: #111827;
	text-decoration: none;
}

.chasb-blog-cards__excerpt {
	margin: 8px 0 0;
	color: #6b7280;
	font-size: 15px;
	line-height: 1.8;
}

.chasb-blog-cards__meta {
	margin-top: 12px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.chasb-blog-cards__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.2;
}

.chasb-blog-cards__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.chasb-blog-cards__meta-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.chasb-blog-cards-carousel__arrow {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	cursor: pointer;
}

.chasb-blog-cards-carousel__arrow--prev {
	left: 4px;
}

.chasb-blog-cards-carousel__arrow--next {
	right: 4px;
}

.chasb-blog-cards-carousel__arrow[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
}

.chasb-blog-cards-carousel__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.chasb-blog-cards-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #d1d5db;
	cursor: pointer;
}

.chasb-blog-cards-carousel__dot.is-active {
	background: #ef6b50;
}

@media (max-width: 1200px) {
	.chasb-blog-cards__title {
		font-size: 32px;
	}

	.chasb-blog-cards__post-title {
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.chasb-blog-cards__title {
		font-size: 22px;
	}

	.chasb-blog-cards__thumb img {
		height: 180px;
	}

	.chasb-blog-cards__post-title {
		font-size: 18px;
	}

	.chasb-blog-cards__excerpt {
		font-size: 14px;
	}
}

.chasb-blog-hlist {
	background: #f3f4f6;
	direction: rtl;
}

.chasb-blog-hlist__header {
	margin-bottom: 10px;
}

.chasb-blog-hlist__title {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.25;
	color: #0f172a;
}

.chasb-blog-hlist__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #f87171;
	flex: 0 0 auto;
}

.chasb-blog-hlist__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.chasb-blog-hlist__item {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid #dce1e7;
	background: #f3f4f6;
}

.chasb-blog-hlist__thumb {
	order: 1;
	flex: 0 0 180px;
	width: 180px;
	text-decoration: none;
}

.chasb-blog-hlist__thumb img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
}

.chasb-blog-hlist__content {
	order: 1;
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
}

.chasb-blog-hlist__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 12px;
	border-radius: 999px;
	background: #eceff3;
	color: #6b7280;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 8px;
}

.chasb-blog-hlist__post-title {
	margin: 0;
	font-size: 44px;
	line-height: 1.35;
	font-weight: 800;
}

.chasb-blog-hlist__post-title a {
	color: #111827;
	text-decoration: none;
}

.chasb-blog-hlist__excerpt {
	margin: 8px 0 0;
	color: #6b7280;
	font-size: 16px;
	line-height: 1.85;
}

.chasb-blog-hlist__meta {
	margin-top: 10px;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.chasb-blog-hlist__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.2;
}

.chasb-blog-hlist__meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.chasb-blog-hlist__meta-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

@media (max-width: 1200px) {
	.chasb-blog-hlist__title {
		font-size: 32px;
	}

	.chasb-blog-hlist__post-title {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.chasb-blog-hlist__title {
		font-size: 22px;
	}

	.chasb-blog-hlist__item {
		flex-direction: column;
		gap: 10px;
	}

	.chasb-blog-hlist__thumb {
		order: 1;
		flex-basis: auto;
		width: 100%;
	}

	.chasb-blog-hlist__thumb img {
		height: 190px;
	}

	.chasb-blog-hlist__content {
		order: 2;
	}

	.chasb-blog-hlist__post-title {
		font-size: 20px;
	}

	.chasb-blog-hlist__excerpt {
		font-size: 14px;
	}
}

.chasb-blog-rlist {
	background: #f3f4f6;
	direction: rtl;
}

.chasb-blog-rlist__header {
	margin-bottom: 8px;
}

.chasb-blog-rlist__title {
	margin: 0;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.3;
	color: #111827;
}

.chasb-blog-rlist__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.chasb-blog-rlist__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #dce1e7;
}

.chasb-blog-rlist__thumb {
	flex: 0 0 88px;
	width: 88px;
	text-decoration: none;
}

.chasb-blog-rlist__thumb img {
	display: block;
	width: 88px;
	height: 88px;
	object-fit: cover;
	border-radius: 999px;
}

.chasb-blog-rlist__content {
	flex: 1 1 auto;
	min-width: 0;
	text-align: right;
}

.chasb-blog-rlist__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #6b7280;
	font-size: 12px;
	line-height: 1.2;
}

.chasb-blog-rlist__date-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.chasb-blog-rlist__date-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.chasb-blog-rlist__post-title {
	margin: 6px 0 0;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.3;
}

.chasb-blog-rlist__post-title a {
	color: #111827;
	text-decoration: none;
}

.chasb-blog-rlist__excerpt {
	margin: 8px 0 0;
	color: #6b7280;
	font-size: 16px;
	line-height: 1.8;
}

@media (max-width: 1200px) {
	.chasb-blog-rlist__title {
		font-size: 26px;
	}

	.chasb-blog-rlist__post-title {
		font-size: 28px;
	}

	.chasb-blog-rlist__excerpt {
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.chasb-blog-rlist__title {
		font-size: 20px;
	}

	.chasb-blog-rlist__item {
		gap: 10px;
	}

	.chasb-blog-rlist__thumb {
		flex-basis: 72px;
		width: 72px;
	}

	.chasb-blog-rlist__thumb img {
		width: 72px;
		height: 72px;
	}

	.chasb-blog-rlist__post-title {
		font-size: 18px;
	}

	.chasb-blog-rlist__excerpt {
		font-size: 13px;
	}


}

.chasb-best-selling {
	overflow: hidden;
}