.hero-section {
	padding: 2.5rem 0 1.5rem;
	background: linear-gradient(180deg, rgba(243, 156, 18, 0.18), rgba(255, 255, 255, 0));
}

.hero-section__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.hero-slide-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hero-carousel .hero-slide {
	position: relative;
	min-height: 360px;
	border-radius: 1.5rem;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	background-color: #fef2e2;
	background-size: cover;
	width: 100%;
	background-position: center;
}

.hero-carousel .owl-nav {
	position: absolute;
	width: 100%;
	top: 50%;
}
.hero-carousel .owl-nav button.owl-next {
	position: absolute;
	right: -2.5rem;
}
.hero-carousel .owl-nav button.owl-prev {
	position: absolute;
	left: -2.5rem;
}
.hero-slide__overlay {
	width: 100%;
	padding: 2.5rem;
	background: linear-gradient(180deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.72) 100%);
	color: #ffffff;
}

.hero-slide__title {
	margin: 0 0 0.75rem;
	font-size: 2rem;
	font-weight: 700;
}

.hero-slide__description {
	margin: 0 0 1.25rem;
	font-size: 1.1rem;
	line-height: 1.6;
	opacity: 0.95;
}

.hero-slide__price {
	margin: 0 0 1.25rem;
	font-size: 1.2rem;
}

.hero-slide__button {
	display: inline-flex;
	padding: 0.75rem 1.8rem;
	border-radius: 999px;
	background: #ffffff;
	color: #d35400;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slide-link:hover .hero-slide__button {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
}

.hero-slide--empty .hero-slide__overlay {
	background: #d35400;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1rem;
}

.intro-section {
	padding: 3rem 0 2rem;
	text-align: center;
}

.intro-content {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.intro-content h2 {
	font-size: 2rem;
	margin: 0;
	font-weight: 700;
}

.intro-content p {
	margin: 0;
	color: #555555;
	font-size: 1.05rem;
	line-height: 1.9;
}

.product-section,
.category-section {
	padding: 2.5rem 0;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.section-header h2 {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 700;
}

.section-link {
	font-weight: 600;
	color: #d35400;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.section-link::after {
	content: "›";
	font-size: 1.4rem;
	line-height: 1;
}

.product-card {
	background: #ffffff;
	border-radius: 1.2rem;
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(31, 31, 31, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card__thumb {
	display: block;
	overflow: hidden;
	position: relative;
	padding-top: 75%;
}

.product-card__thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-card__thumb:hover img {
	transform: scale(1.08);
}

.product-card__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	color: #999999;
	font-size: 0.85rem;
}

.product-card__body {
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1 1 auto;
}

.product-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
}

.product-card__title a {
	color: #1f1f1f;
	text-decoration: none;
}

.product-card__price {
	font-weight: 700;
	color: #d35400;
	font-size: 1.05rem;
}

.product-card__actions {
	margin-top: auto;
	display: flex;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
	width: 100%;
	border-radius: 999px;
	padding: 0.65rem 1.4rem;
	background: transparent;
	border: 1px solid #d35400;
	color: #d35400;
	text-align: center;
	font-weight: 600;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.product-card__actions .add_to_cart_button:hover,
.product-card__actions .add_to_cart_button:focus,
.product-card__actions .added_to_cart {
	background: #d35400;
	color: #ffffff;
}

.product-card__actions .added_to_cart {
	display: inline-block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #1f1f1f;
	text-decoration: underline;
}

.category-card {
	background: linear-gradient(180deg, rgba(255, 139, 61, 0.1), rgba(255, 255, 255, 0));
	border-radius: 1.2rem;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 12px 24px rgba(31, 31, 31, 0.05);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	justify-content: center;
}

.category-card a {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.category-card__thumb {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 6px solid rgba(211, 84, 0, 0.1);
}

.category-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-card__placeholder {
	padding: 1.5rem;
	font-weight: 600;
	color: #d35400;
}

.category-card__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}

.owl-carousel .owl-stage {
	display: flex;
}

.owl-carousel .owl-item {
	display: flex;
}

.owl-carousel .product-card,
.owl-carousel .category-card {
	width: 100%;
}

.hero-carousel,
.product-carousel,
.category-carousel {
	position: relative;
}

.owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	left: -2.5rem;
	right: -2.5rem;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}

.owl-theme .owl-nav button {
	pointer-events: auto;
}

.owl-theme .owl-nav button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.owl-nav-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.owl-nav-icon i {
	font-size: 1.3rem;
}

.owl-theme .owl-nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	color: #d35400 !important;
	font-size: 1.6rem !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	transition: transform 0.2s ease;
}

.owl-theme .owl-nav button:hover {
	transform: scale(1.1);
}

.rtl .owl-theme .owl-nav {
	direction: ltr;
	left: -2.5rem;
	right: -2.5rem;
}

.owl-theme .owl-dots {
	margin-top: 1rem;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	background: #d9d9d9;
	transition: all 0.2s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #d35400;
	width: 20px;
}
.product-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}

.product-carousel .owl-nav button.owl-next {
	right: -2.5rem;
	position: absolute;
}
.product-carousel .owl-nav button.owl-prev {
	left: -2.5rem;
	position: absolute;
}
@media (max-width: 960px) {
	.hero-carousel .owl-nav,
	.product-carousel .owl-nav,
	.category-carousel .owl-nav,
	.rtl .hero-carousel .owl-nav,
	.rtl .product-carousel .owl-nav,
	.rtl .category-carousel .owl-nav {
		left: -1.5rem;
		right: -1.5rem;
	}

	.hero-slide__overlay {
		padding: 2rem;
	}

	.hero-slide__title {
		font-size: 1.6rem;
	}

	.hero-slide__description {
		font-size: 1rem;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.section-link {
		align-self: flex-end;
	}
}

@media (max-width: 600px) {
	.hero-carousel .owl-nav,
	.product-carousel .owl-nav,
	.category-carousel .owl-nav,
	.rtl .hero-carousel .owl-nav,
	.rtl .product-carousel .owl-nav,
	.rtl .category-carousel .owl-nav {
		left: -1rem;
		right: -1rem;
	}

	.hero-carousel .hero-slide {
		min-height: 240px;
	}

	.hero-slide__overlay {
		padding: 1.5rem;
	}

	.hero-slide__title {
		font-size: 1.4rem;
	}

	.hero-slide__button {
		padding: 0.65rem 1.4rem;
		font-size: 0.95rem;
	}

	.section-header {
		align-items: stretch;
	}

	.section-link {
		align-self: flex-start;
	}
}

