.baly-shortcode-wrap {
	--baly-accent: #0000ff;
	--baly-accent-dark: #0000cc;
	--baly-accent-light: #eef2ff;
	--baly-accent-tint: rgba(0, 0, 255, 0.08);
	--baly-text-primary: #0a0a18;
	--baly-text-secondary: #6b7280;
	--baly-text-muted: #9ca3af;
	--baly-border: #e9eaf0;
	--baly-border-light: #e5e7eb;
	--baly-bg: #ffffff;
	--baly-shadow-card: 0 1px 8px rgba(0, 0, 0, 0.06);
	--baly-shadow-section: 0 2px 16px rgba(0, 0, 0, 0.08);
	--baly-shadow-arrow: 0 2px 8px rgba(0, 0, 0, 0.12);
	--baly-font-family: "Graphikarabic3", Tahoma, Arial, sans-serif;
	direction: rtl;
	font-family: var(--baly-font-family);
	color: var(--baly-text-primary);
	margin-top: 80px;
}

.baly-shortcode-wrap *,
.baly-shortcode-wrap *::before,
.baly-shortcode-wrap *::after {
	box-sizing: border-box;
	font-family: inherit;
	font-weight: 500;
}

.baly-shortcode-notice,
.baly-empty-state {
	background: #f8faff;
	border: 1px solid var(--baly-border);
	border-radius: 14px;
	padding: 16px 18px;
	color: var(--baly-text-secondary);
}

.baly-group-block + .baly-group-block {
	margin-top: 28px;
}

.baly-product-hero-wrapper {
	padding: 16px 20px 20px;
}

.baly-product-hero-box {
	max-width: 1060px;
	margin: 0 auto;
	background: var(--baly-bg);
	border-radius: 20px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: var(--baly-shadow-section);
	border: 1px solid var(--baly-border);
}

.baly-product-hero-top {
	display: flex;
	align-items: center;
	gap: 28px;
}

.baly-product-hero-media {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.baly-product-hero-logo {
	width: 140px;
	height: 140px;
	border-radius: 24px;
	background: #f3f4f6;
	flex-shrink: 0;
	overflow: hidden;
}

.baly-product-hero-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.baly-product-hero-content {
	flex: 1;
	min-width: 0;
	direction: rtl;
	text-align: right;
}

.baly-product-hero-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--baly-text-primary);
	margin: 0 0 8px;
	line-height: 1.3;
}

.baly-product-hero-description {
	font-size: 14px;
	color: var(--baly-text-secondary);
	line-height: 1.8;
	max-width: 680px;
	margin: 0 0 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.baly-product-hero-pills {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	align-items: center;
	margin-top: 2px;
}

.baly-product-hero-pills-mobile {
	display: none;
}

.baly-product-hero-pill {
	background: var(--baly-accent-tint);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 700;
	color: var(--baly-accent);
}

.baly-page-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px 40px;
}

.baly-country-section {
	background: var(--baly-bg);
	border-radius: 18px;
	padding: 16px 20px 20px;
	margin-bottom: 16px;
	box-shadow: var(--baly-shadow-section);
	border: 1px solid var(--baly-border);
}

.baly-howto-section {
	background: var(--baly-bg);
	border-radius: 18px;
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: var(--baly-shadow-section);
	border: 1px solid var(--baly-border);
}

.baly-howto-title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: var(--baly-text-primary);
}

.baly-howto-intro {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.9;
	color: var(--baly-text-secondary);
}

.baly-howto-block + .baly-howto-block {
	margin-top: 14px;
}

.baly-howto-block-title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--baly-text-primary);
}

.baly-howto-list {
	margin: 0;
	padding: 0;
	color: var(--baly-text-secondary);
	list-style: none;
	counter-reset: baly-howto-step;
}

.baly-howto-list li {
	margin: 0 0 10px;
	line-height: 1.8;
	position: relative;
	padding-right: 42px;
}

.baly-howto-list li::before {
	counter-increment: baly-howto-step;
	content: counter(baly-howto-step);
	position: absolute;
	right: 0;
	top: 2px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--baly-accent-light);
	color: var(--baly-accent-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.baly-howto-note {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--baly-accent-light);
	color: var(--baly-text-primary);
	line-height: 1.8;
}

.baly-howto-code-wrap {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.baly-howto-code-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--baly-text-secondary);
}

.baly-howto-code {
	display: inline-block;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f5f7ff;
	color: var(--baly-accent-dark);
	font-size: 15px;
	font-weight: 700;
	direction: ltr;
	text-align: left;
}

.baly-country-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.baly-country-section-header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.baly-section-accent-bar {
	width: 4px;
	height: 24px;
	border-radius: 4px;
	background: var(--baly-accent);
	flex-shrink: 0;
}

.baly-country-flag-logo {
	width: 42px;
	height: 42px;
	border-radius: 10px !important;
	object-fit: cover;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.04);
}

.baly-country-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--baly-text-primary);
	margin: 0;
}

.baly-country-scroll-container {
	position: relative;
}

.baly-scroll-row {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	flex-wrap: nowrap;
	padding: 8px;
	margin: -8px;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

.baly-scroll-row::-webkit-scrollbar {
	display: none;
}

.baly-arrow-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--baly-border-light);
	box-shadow: var(--baly-shadow-arrow);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	color: var(--baly-accent);
	font-size: 22px;
	line-height: 1;
}

.baly-arrow-btn.is-visible {
	opacity: 0.72;
	visibility: visible;
	pointer-events: auto;
}

.baly-arrow-btn:hover {
	opacity: 1;
}

.baly-arrow-btn.baly-prev {
	right: -16px;
}

.baly-arrow-btn.baly-next {
	left: -16px;
}

.baly-product-card {
	background: #fff;
	border-radius: 14px;
	flex-shrink: 0;
	width: 180px;
	padding: 10px 14px 14px;
	box-shadow: var(--baly-shadow-card);
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
	min-height: 196px;
}

.baly-product-card-name {
	padding-top: 6px;
	line-height: 1.4;
	margin: 0;
}

.baly-product-card-name.has-tag {
	padding-top: 34px;
}

.baly-number-part {
	display: inline;
	font-size: 20px;
	font-weight: 700;
	color: var(--baly-text-primary);
	line-height: 1.15;
	direction: ltr;
	unicode-bidi: isolate;
}

.baly-unit-part,
.baly-product-card-label {
	display: inline;
	font-size: 12px;
	font-weight: 600;
	color: var(--baly-text-secondary);
	line-height: 1.5;
}

.baly-unit-part {
	margin-right: 2px;
}

.baly-product-card-label {
	font-size: 13px;
	color: var(--baly-text-primary);
}

.baly-product-card-label-strong {
	display: inline;
	font-size: 20px;
	font-weight: 700;
	color: var(--baly-text-primary);
	line-height: 1.15;
	direction: ltr;
	unicode-bidi: bidi-override;
}

.baly-product-card-label-text {
	display: inline;
	font-size: 12px;
	font-weight: 600;
	color: var(--baly-text-secondary);
	line-height: 1.5;
}

.baly-price-box {
	margin-top: auto;
	border-radius: 12px;
	padding: 10px 12px;
	background: var(--baly-accent-light);
	min-width: 0;
	overflow: hidden;
}

.baly-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 2px;
	min-width: 0;
}

.baly-price-original {
	font-size: 12px;
	color: var(--baly-text-muted);
	text-decoration: line-through;
	text-decoration-color: #cbd5e1;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.baly-price-discounted,
.baly-price-only {
	font-size: 19px;
	font-weight: 700;
	color: var(--baly-accent-dark);
	line-height: 1.15;
}

.baly-buy-btn {
	width: 100%;
	background: var(--baly-accent);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 9px 0;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	display: block;
	text-align: center;
	text-decoration: none;
}

.baly-buy-btn:hover {
	background: var(--baly-accent-dark);
	color: #fff;
}

.baly-buy-btn:focus-visible {
	color: #fff;
}

.baly-card-badge-tl {
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: calc(100% - 16px);
}

.baly-disc-badge {
	font-size: 12px;
	font-weight: 700;
	padding: 0 5px;
	border-radius: 20px;
	white-space: nowrap;
	letter-spacing: 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
	display: inline-block;
}

@media (max-width: 768px) {
	.baly-shortcode-wrap {
		margin-top: 55px;
	}

	.baly-product-hero-box {
		padding: 20px;
	}

	.baly-product-hero-top {
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}

	.baly-product-hero-media {
		align-items: center;
	}

	.baly-product-hero-logo {
		width: 90px;
		height: 90px;
	}

	.baly-product-hero-title {
		font-size: 20px;
		line-height: 1.2;
		letter-spacing: 0;
		word-spacing: 0.03em;
		font-kerning: normal;
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
	}

	.baly-product-hero-description {
		line-height: 1.7;
		letter-spacing: 0;
		word-spacing: 0.04em;
		font-kerning: normal;
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
	}

	.baly-product-hero-pills {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
	}

	.baly-product-hero-pills-desktop {
		display: none;
	}

	.baly-product-hero-pills-mobile {
		display: flex;
	}

	.baly-product-hero-pill {
		text-align: center;
		padding: 5px 8px;
	}

	.baly-country-section {
		border-radius: 20px;
		padding: 14px 14px 16px;
	}

	.baly-howto-section {
		border-radius: 20px;
		padding: 16px 14px;
	}

	.baly-howto-list li {
		padding-right: 38px;
	}

	.baly-howto-list li::before {
		width: 26px;
		height: 26px;
		font-size: 12px;
	}

	.baly-product-card {
		width: 150px;
	}

	.baly-product-card-name {
		margin-bottom: 5px;
	}

	.baly-number-part {
		font-size: 18px;
	}

	.baly-price-discounted,
	.baly-price-only {
		font-size: 16px;
	}

	.baly-price-original {
		font-size: 10px;
	}

	.baly-price-box {
		margin-top: 5px;
	}

	.baly-disc-badge {
		padding: 1px 4px;
	}
}

@media (max-width: 480px) {
	.baly-product-hero-box {
		gap: 0;
	}

	.baly-product-hero-wrapper,
	.baly-page-container {
		padding-left: 0;
		padding-right: 0;
	}

	.baly-product-hero-box {
		gap: 16px;
	}

	.baly-product-hero-title {
		font-size: 18px;
		line-height: 1.2;
		word-spacing: 0.04em;
	}
}
