.baly-category-listing {
	--accent: #0000ff;
	--accent-dark: #0000cc;
	--accent-tint: rgba(0, 0, 255, 0.08);
	--accent-icon-bg: rgba(0, 0, 255, 0.07);
	--text-primary: #0a0a18;
	--text-secondary: #6b7280;
	--text-muted: #9ca3af;
	--border: #e9eaf0;
	--border-light: #f3f4f6;
	--bg-card: #f3f4f6;
	--bg-hover: #f8f9ff;
	--radius-card: 14px;
	--radius-hero: 20px;
	--radius-icon: 24px;
	--radius-badge: 20px;
	--shadow-nav: 0 2px 12px rgba(0, 0, 0, 0.05);
	--shadow-hero: 0 2px 16px rgba(0, 0, 0, 0.08);
	--shadow-icon: 0 4px 20px rgba(0, 0, 0, 0.06);
	--font: "Graphikarabic3", Tahoma, Arial, sans-serif;
	--max-width: 1100px;
	direction: rtl;
	font-family: var(--font);
	color: var(--text-primary);
	margin-top: 80px;
}

.baly-category-listing *,
.baly-category-listing *::before,
.baly-category-listing *::after {
	box-sizing: border-box;
	font-family: inherit;
}

.baly-cl-notice,
.baly-cl-empty-state {
	max-width: var(--max-width);
	margin: 16px auto;
	padding: 18px 20px;
	border-radius: 20px;
	border: 1px solid var(--border);
	background: #fff;
	box-shadow: var(--shadow-hero);
}

.baly-cl-page-content {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 16px 20px 40px;
}

.baly-cl-hero-wrapper {
	padding: 0 0 20px;
}

.baly-cl-hero {
	background: #fff;
	border-radius: var(--radius-hero);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	box-shadow: var(--shadow-hero);
	border: 1px solid var(--border);
}

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

.baly-cl-hero-icon {
	width: 140px;
	height: 140px;
	border-radius: var(--radius-icon);
	background: var(--accent-icon-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	flex-shrink: 0;
}

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

.baly-cl-hero-title-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

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

.baly-cl-hero-count {
	background: var(--border-light);
	border-radius: var(--radius-badge);
	padding: 4px 14px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text-secondary);
	white-space: nowrap;
}

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

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

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

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

.baly-cl-brand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
	gap: 16px;
}

.baly-cl-brand-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	animation: baly-cl-fade-up 0.25s ease;
	text-decoration: none;
}

.baly-cl-brand-card-image-box {
	position: relative;
	background: var(--bg-card);
	border-radius: var(--radius-card);
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.baly-cl-brand-card-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.baly-cl-brand-card-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 54px;
	opacity: 0.35;
}

.baly-cl-brand-card-name {
	font-size: 13px;
	font-weight: 700;
	color: #374151;
	text-align: center;
	line-height: 1.3;
	word-break: break-word;
}

.baly-cl-disc-badge {
	position: absolute;
	top: 6px;
	font-size: 11px;
	font-weight: 900;
	padding: 3px 9px;
	border-radius: 20px;
	white-space: nowrap;
	letter-spacing: 0.2px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.baly-cl-badge-discount {
	left: 6px;
}

.baly-cl-badge-tag {
	right: 6px;
}

.baly-cl-empty-state {
	text-align: center;
}

.baly-cl-empty-icon {
	font-size: 40px;
	margin-bottom: 8px;
}

.baly-cl-empty-text {
	font-size: 16px;
	font-weight: 700;
	color: var(--text-muted);
}

@keyframes baly-cl-fade-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	.baly-category-listing {
		margin-top: 55px;
	}

	.baly-cl-page-content {
		padding: 16px 0 32px;
	}

	.baly-cl-hero-wrapper {
		padding-bottom: 16px;
	}

	.baly-cl-hero {
		padding: 20px;
	}

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

	.baly-cl-hero-icon {
		width: 90px;
		height: 90px;
		font-size: 40px;
	}

	.baly-cl-hero-title {
		font-size: 20px;
	}

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

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

	.baly-cl-brand-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.baly-cl-brand-card-name {
		font-size: 12px;
	}
}

@media (max-width: 380px) {
	.baly-cl-page-content {
		padding: 14px 10px 28px;
	}

	.baly-cl-hero {
		padding: 16px;
	}

	.baly-cl-hero-top {
		gap: 12px;
	}

	.baly-cl-hero-icon {
		width: 78px;
		height: 78px;
		font-size: 34px;
	}

	.baly-cl-hero-pill {
		padding: 5px 10px;
		font-size: 11px;
	}
}
