:root {
	--home-max: 1240px;
}

.arooj-home {
	max-width: var(--home-max);
	margin: 0 auto;
	padding: 120px 16px 60px;
}

.home-section {
	margin-top: 48px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.section-heading h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: var(--ar-ink);
}

.section-heading p {
	margin: 0;
	color: var(--ar-ink-soft);
}

.section-heading.center {
	flex-direction: column;
	text-align: center;
}

.home-hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 26px;
	padding: 24px;
	background: linear-gradient(135deg, #0f766e 0%, #0c5c55 45%, #0b4845 100%);
	border-radius: 24px;
	color: #ecfeff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(12, 92, 85, 0.26);
}

.home-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.12), transparent 32%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 30%),
		radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.06), transparent 45%);
	pointer-events: none;
}

.home-hero .hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-hero h1 {
	font-size: 36px;
	line-height: 1.1;
	margin: 0;
	color: #ffffff;
}

.home-hero .lead {
	font-size: 16px;
	color: #e5fffc;
	margin: 0;
}

.home-hero .eyebrow {
	display: inline-block;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 12px;
}

.home-hero .hero-highlights {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 8px;
	padding: 0;
	margin: 8px 0 4px;
	list-style: none;
}

.home-hero .hero-highlights li {
	background: rgba(236, 254, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 10px 12px;
	border-radius: 12px;
}

.home-hero .hero-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 6px;
}

.home-hero .button.primary {
	background: #f4b942;
	color: #0c3b34;
	box-shadow: 0 16px 40px rgba(244, 185, 66, 0.25);
}

.home-hero .button.primary:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.home-hero .muted {
	color: #cdecef;
	font-weight: 600;
}

.home-hero .hero-media {
	position: relative;
	z-index: 2;
}

.home-hero .hero-media img {
	display: block;
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero .hero-blob {
	position: absolute;
	inset: 10% 14%;
	background: radial-gradient(circle at 30% 30%, rgba(244, 185, 66, 0.28), transparent 55%),
		radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15), transparent 50%);
	filter: blur(10px);
	z-index: 1;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.category-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
	display: block;
}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.category-card .category-title {
	position: absolute;
	left: 16px;
	bottom: 14px;
	background: rgba(12, 59, 52, 0.85);
	color: #ffffff;
	padding: 8px 12px;
	border-radius: 10px;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.category-card:hover img,
.category-card:focus img {
	transform: scale(1.04);
}

.featured .products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.product-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid #e2e8f0;
}

.product-card .thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.product-card .product-body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product-card h3 {
	margin: 0;
	font-size: 17px;
}

.product-card h3 a {
	color: var(--ar-ink);
}

.product-card .price-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.product-card .price {
	color: var(--ar-primary);
	font-weight: 800;
}

.product-card .rating {
	color: #f4b942;
}

.product-card .excerpt {
	margin: 0;
	color: var(--ar-ink-soft);
	min-height: 38px;
}

.product-card .button.ghost {
	align-self: flex-start;
	padding: 10px 14px;
	border: 1px solid var(--ar-primary);
	color: var(--ar-primary);
	background: transparent;
	box-shadow: none;
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.promo-card {
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

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

.promo-card .promo-body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.promo-card h3 {
	margin: 0;
	font-size: 18px;
}

.promo-card p {
	margin: 0;
	color: var(--ar-ink-soft);
}

.promo-card .button.link {
	color: var(--ar-primary);
	font-weight: 700;
	background: none;
	padding: 8px 0;
	box-shadow: none;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 14px;
}

.trust-card {
	background: linear-gradient(135deg, #0f766e, #0c5c55);
	color: #ecfeff;
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: 0 18px 36px rgba(12, 92, 85, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-card h3 {
	margin: 0 0 6px;
	font-size: 17px;
}

.trust-card p {
	margin: 0;
	color: #dbeef0;
}

.banner .banner-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	align-items: center;
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 18px;
	padding: 22px;
	overflow: hidden;
	position: relative;
}

.banner .banner-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 30%, rgba(244, 185, 66, 0.2), transparent 45%);
	pointer-events: none;
}

.banner-copy h2 {
	margin: 0 0 8px;
	color: #ffffff;
}

.banner-copy p {
	margin: 0 0 12px;
}

.banner-media img {
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.social .social-card {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 16px;
	background: #ffffff;
	border-radius: 18px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	padding: 18px;
}

.social-media img {
	width: 100%;
	border-radius: 14px;
	object-fit: cover;
}

.social-copy h2 {
	margin: 0 0 8px;
}

.social-copy p {
	margin: 0 0 10px;
	color: var(--ar-ink-soft);
}

.social-copy .handle {
	display: inline-block;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--ar-primary-strong);
}

/* RTL */
[dir="rtl"] .home-hero .hero-actions {
	flex-direction: row-reverse;
}

[dir="rtl"] .category-card .category-title {
	left: auto;
	right: 16px;
}

[dir="rtl"] .product-card .price-rating {
	flex-direction: row-reverse;
}

[dir="rtl"] .section-heading {
	text-align: right;
}

[dir="rtl"] .section-heading.center {
	text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
	.home-hero {
		grid-template-columns: 1fr;
	}

	.banner .banner-card {
		grid-template-columns: 1fr;
	}

	.social .social-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.arooj-home {
		padding: 130px 12px 60px;
	}

	.home-hero {
		padding: 18px;
	}

	.home-hero h1 {
		font-size: 28px;
	}

	.home-hero .hero-highlights {
		grid-template-columns: 1fr;
	}

	.section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-heading.center {
		align-items: center;
	}
}
