/**
 * DinnerlyHub - Front Page Styles
 * Optimized for performance, accessibility, and brand consistency.
 * Uses 8px spacing scale and dual-font typography system.
 */

/* ==========================================================================
   REUSABLE COMPONENTS
   ========================================================================== */

/* Pills - Consolidated from duplicate code */
.dh-pill {
	display: inline-block;
	padding: 4px 14px;
	font-size: var(--dh-text-xs);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	letter-spacing: 1.2px;
	text-transform: uppercase;
	border-radius: var(--dh-radius-pill);
	width: fit-content;
}

.dh-pill--green {
	background: var(--dh-green-subtle);
	color: var(--dh-green);
}

.dh-pill--orange {
	background: rgba(242, 101, 34, 0.10);
	color: var(--dh-orange);
}

/* Buttons - Consolidated */
.dh-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--dh-space-1);
	padding: 14px 28px;
	border-radius: var(--dh-radius-pill);
	font-size: var(--dh-text-sm);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.dh-btn:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

.dh-btn--primary {
	background: var(--dh-green);
	color: var(--dh-white);
	box-shadow: var(--dh-shadow-btn-green);
}

.dh-btn--primary:hover {
	background: var(--dh-green-dark);
	transform: translateY(-2px);
	box-shadow: var(--dh-shadow-btn-green-hover);
}

.dh-btn--secondary {
	background: transparent;
	color: var(--dh-orange);
	border: 2px solid rgba(242, 101, 34, 0.35);
}

.dh-btn--secondary:hover {
	background: rgba(242, 101, 34, 0.06);
	border-color: var(--dh-orange);
	transform: translateY(-2px);
}

.dh-btn--orange {
	background: var(--dh-orange);
	color: var(--dh-white);
	box-shadow: var(--dh-shadow-btn-orange);
}

.dh-btn--orange:hover {
	background: var(--dh-orange-dark);
	transform: translateY(-2px);
}

.dh-btn--orange:focus-visible {
	outline-color: var(--dh-orange);
}

/* Skeleton Loading */
.dh-skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* Image Lazy Load with Blur Placeholder */
.dh-img-lazy {
	opacity: 0;
	filter: blur(10px);
	transition: opacity 0.4s ease, filter 0.4s ease;
	will-change: opacity, filter;
}

.dh-img-lazy.is-loaded {
	opacity: 1;
	filter: blur(0);
}

.dh-img-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #e8f5ee 0%, #fff4ec 100%);
}

/* ==========================================================================
   SCOPED RESET
   ========================================================================== */

.dh-home *,
.dh-home *::before,
.dh-home *::after {
	box-sizing: border-box;
}

.dh-home {
	font-family: var(--dh-font-body);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* ==========================================================================
   HERO SECTION - Professional Redesign
   ========================================================================== */

.dh-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(244, 250, 246, 0.97) 0%, rgba(255, 250, 247, 0.97) 50%, rgba(244, 250, 246, 0.97) 100%),
		url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a7c59' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animated background shapes */
.dh-hero__bg-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
	pointer-events: none;
	z-index: 0;
	animation: heroFloatShape 20s ease-in-out infinite;
}

.dh-hero__bg-shape--1 {
	width: 500px;
	height: 500px;
	background: var(--dh-green);
	top: -150px;
	right: -100px;
	animation-delay: 0s;
}

.dh-hero__bg-shape--2 {
	width: 400px;
	height: 400px;
	background: var(--dh-orange);
	bottom: -100px;
	left: -100px;
	animation-delay: -10s;
}

.dh-hero__bg-shape--3 {
	width: 200px;
	height: 200px;
	background: var(--dh-green);
	top: 50%;
	left: 30%;
	opacity: 0.2;
	animation-delay: -5s;
}

@keyframes heroFloatShape {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(30px, -30px) scale(1.05); }
	50% { transform: translate(-20px, 20px) scale(0.95); }
	75% { transform: translate(20px, 30px) scale(1.02); }
}

.dh-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--dh-max-width);
	margin: 0 auto;
	padding: 60px 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* Text Content */
.dh-hero__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	animation: heroContentFade 0.8s ease forwards;
}

@keyframes heroContentFade {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Eyebrow Badge */
.dh-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--dh-white);
	border: 1px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	width: fit-content;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	animation: heroEyebrowPulse 3s ease-in-out infinite;
}

@keyframes heroEyebrowPulse {
	0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
	50% { box-shadow: 0 4px 20px rgba(74, 124, 89, 0.15); }
}

.dh-hero__eyebrow-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-green-subtle);
	border-radius: 50%;
	color: var(--dh-green);
}

.dh-hero__eyebrow-text {
	font-size: 0.75rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-green);
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

/* Main Title */
.dh-hero__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	line-height: 1.15;
	letter-spacing: -1px;
	margin: 0;
}

.dh-hero__title-line {
	display: block;
}

.dh-hero__title-accent {
	position: relative;
	color: var(--dh-orange);
	font-family: var(--dh-font-script, 'Dancing Script', cursive);
	font-weight: 700;
	font-size: 1.1em;
}

.dh-hero__title-accent::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, rgba(242, 101, 34, 0.3) 0%, transparent 100%);
	border-radius: 4px;
	z-index: -1;
}

.dh-hero__title-highlight {
	position: relative;
	display: inline-block;
}

.dh-hero__title-highlight::before {
	content: '';
	position: absolute;
	bottom: 4px;
	left: -4px;
	right: -4px;
	height: 12px;
	background: var(--dh-green-subtle);
	border-radius: 4px;
	z-index: -1;
}

/* Description */
.dh-hero__desc {
	font-size: 1.15rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-light);
	line-height: 1.75;
	max-width: 520px;
	margin: 0;
}

/* Stats Row */
.dh-hero__stats {
	display: flex;
	gap: 32px;
	padding: 20px 0;
	border-top: 1px solid rgba(74, 124, 89, 0.1);
	border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}

.dh-hero__stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dh-hero__stat-num {
	font-size: 1.5rem;
	font-weight: 800;
	font-family: var(--dh-font-heading);
	color: var(--dh-green);
	line-height: 1;
}

.dh-hero__stat-label {
	font-size: 0.8rem;
	color: var(--dh-text-muted);
	font-weight: 500;
}

/* Buttons */
.dh-hero__btns {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.dh-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: var(--dh-radius-pill);
	font-size: 0.95rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.dh-hero__btn--primary {
	background: linear-gradient(135deg, var(--dh-green) 0%, var(--dh-green-dark) 100%);
	color: var(--dh-white);
	box-shadow:
		0 4px 16px rgba(74, 124, 89, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dh-hero__btn--primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dh-hero__btn--primary:hover {
	transform: translateY(-3px);
	box-shadow:
		0 8px 28px rgba(74, 124, 89, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dh-hero__btn--primary:hover::before {
	opacity: 1;
}

.dh-hero__btn:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

.dh-hero__btn--secondary {
	background: var(--dh-white);
	color: var(--dh-orange);
	border: 2px solid rgba(242, 101, 34, 0.25);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dh-hero__btn--secondary:hover {
	background: rgba(242, 101, 34, 0.05);
	border-color: var(--dh-orange);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(242, 101, 34, 0.15);
	color: var(--dh-orange);
}

.dh-hero__btn-icon {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.dh-hero__btn:hover .dh-hero__btn-icon {
	transform: translateX(4px);
}

/* Tagline */
.dh-hero__tagline {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--dh-text-muted);
	font-style: italic;
	margin: 0;
}

.dh-hero__tagline-line {
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--dh-green), transparent);
	border-radius: 2px;
}

/* Visual Side */
.dh-hero__visual {
	position: relative;
	animation: heroVisualFade 0.8s ease 0.2s forwards;
	opacity: 0;
}

@keyframes heroVisualFade {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Main Image Container */
.dh-hero__img-main {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.15),
		0 10px 20px rgba(0, 0, 0, 0.1);
	aspect-ratio: 4 / 5;
	max-height: 520px;
}

.dh-hero__img-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.dh-hero__img-main:hover img {
	transform: scale(1.05);
}

/* Decorative frame */
.dh-hero__img-frame {
	position: absolute;
	inset: -12px;
	border: 3px solid rgba(74, 124, 89, 0.15);
	border-radius: 32px;
	pointer-events: none;
}

.dh-hero__img-frame::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	border: 2px dashed rgba(242, 101, 34, 0.15);
	border-radius: 20px;
}

/* Floating cards */
.dh-hero__float-card {
	position: absolute;
	background: var(--dh-white);
	border-radius: var(--dh-radius-md);
	padding: 14px 18px;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.12),
		0 4px 8px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	gap: 12px;
	animation: heroFloatCard 4s ease-in-out infinite;
	z-index: 10;
}

.dh-hero__float-card--1 {
	top: 40px;
	left: -40px;
	animation-delay: 0s;
}

.dh-hero__float-card--2 {
	bottom: 80px;
	right: -30px;
	animation-delay: -2s;
}

.dh-hero__float-card--3 {
	bottom: -20px;
	left: 40px;
	animation-delay: -1s;
}

@keyframes heroFloatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.dh-hero__float-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	flex-shrink: 0;
}

.dh-hero__float-icon--green {
	background: var(--dh-green-subtle);
	color: var(--dh-green);
}

.dh-hero__float-icon--orange {
	background: rgba(242, 101, 34, 0.1);
	color: var(--dh-orange);
}

.dh-hero__float-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dh-hero__float-num {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dh-text-heading);
	line-height: 1.2;
}

.dh-hero__float-label {
	font-size: 0.7rem;
	color: var(--dh-text-muted);
	white-space: nowrap;
}

/* Small image thumbnails */
.dh-hero__thumb {
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: var(--dh-radius-md);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border: 3px solid var(--dh-white);
}

.dh-hero__thumb--1 {
	top: -20px;
	right: 60px;
	transform: rotate(6deg);
}

.dh-hero__thumb--2 {
	bottom: 120px;
	left: -30px;
	transform: rotate(-8deg);
}

.dh-hero__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   SEARCH SECTION - Professional Redesign
   ========================================================================== */

.dh-search-section {
	position: relative;
	padding: 80px 24px;
	background:
		linear-gradient(135deg, rgba(244, 250, 246, 0.95) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(255, 250, 247, 0.95) 100%);
	overflow: hidden;
}

/* Decorative background pattern */
.dh-search-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234a7c59' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5L25 18l-5 2.5z'/%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

/* Floating decorative blurs */
.dh-search-section__decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0.15;
}

.dh-search-section__decor--1 {
	width: 200px;
	height: 200px;
	background: var(--dh-green);
	top: -60px;
	left: -60px;
	filter: blur(60px);
}

.dh-search-section__decor--2 {
	width: 150px;
	height: 150px;
	background: var(--dh-orange);
	bottom: -40px;
	right: -40px;
	filter: blur(50px);
}

/* Floating food icons */
.dh-search-section__icon-float {
	position: absolute;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-white);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	color: var(--dh-green);
	opacity: 0.7;
	animation: searchIconFloat 6s ease-in-out infinite;
}

.dh-search-section__icon-float--1 {
	top: 20%;
	left: 8%;
	animation-delay: 0s;
}

.dh-search-section__icon-float--2 {
	top: 60%;
	left: 5%;
	animation-delay: -2s;
	color: var(--dh-orange);
}

.dh-search-section__icon-float--3 {
	top: 25%;
	right: 8%;
	animation-delay: -1s;
}

.dh-search-section__icon-float--4 {
	top: 65%;
	right: 6%;
	animation-delay: -3s;
	color: var(--dh-orange);
}

@keyframes searchIconFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-15px) rotate(5deg); }
}

.dh-search-section__inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* Header */
.dh-search-section__header {
	margin-bottom: 32px;
	animation: searchFadeIn 0.6s ease forwards;
}

@keyframes searchFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Badge */
.dh-search-section__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--dh-white);
	border: 1px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	margin-bottom: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.dh-search-section__badge-icon {
	width: 18px;
	height: 18px;
	color: var(--dh-orange);
	animation: searchBadgePulse 2s ease-in-out infinite;
}

@keyframes searchBadgePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.dh-search-section__badge-text {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--dh-green);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.dh-search-section__badge-count {
	padding: 2px 8px;
	background: var(--dh-orange);
	color: var(--dh-white);
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: var(--dh-radius-pill);
}

/* Title */
.dh-search-section__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	line-height: 1.2;
	margin: 0 0 12px;
}

.dh-search-section__title-emoji {
	display: inline-block;
	animation: searchEmojiWave 2s ease-in-out infinite;
}

@keyframes searchEmojiWave {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(20deg); }
	75% { transform: rotate(-10deg); }
}

/* Subtitle */
.dh-search-section__sub {
	font-size: 1.1rem;
	color: var(--dh-text-light);
	line-height: 1.6;
	margin: 0;
}

/* Search Form */
.dh-search-form {
	margin-bottom: 28px;
	animation: searchFadeIn 0.6s ease 0.1s forwards;
	opacity: 0;
}

.dh-search-form__container {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--dh-white);
	border: 2px solid rgba(74, 124, 89, 0.15);
	border-radius: 60px;
	padding: 8px;
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.06),
		0 1px 3px rgba(0, 0, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dh-search-form__container:focus-within {
	border-color: var(--dh-green);
	box-shadow:
		0 8px 30px rgba(74, 124, 89, 0.15),
		0 0 0 4px rgba(74, 124, 89, 0.08);
	transform: translateY(-2px);
}

.dh-search-form__icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-green-subtle);
	border-radius: 50%;
	color: var(--dh-green);
	flex-shrink: 0;
	margin-left: 4px;
}

.dh-search-form__input {
	flex: 1;
	border: none;
	outline: none;
	padding: 16px 20px;
	font-size: 1.05rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-heading);
	background: transparent;
}

.dh-search-form__input::placeholder {
	color: var(--dh-text-muted);
}

.dh-search-form__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	background: linear-gradient(135deg, var(--dh-orange) 0%, var(--dh-orange-dark) 100%);
	color: var(--dh-white);
	font-size: 0.95rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(242, 101, 34, 0.35);
	white-space: nowrap;
}

.dh-search-form__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(242, 101, 34, 0.45);
}

.dh-search-form__btn:focus-visible {
	outline: 2px solid var(--dh-orange);
	outline-offset: 3px;
}

.dh-search-form__btn-icon {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.dh-search-form__btn:hover .dh-search-form__btn-icon {
	transform: translateX(3px);
}

/* Quick Filters */
.dh-search-section__filters {
	animation: searchFadeIn 0.6s ease 0.2s forwards;
	opacity: 0;
}

.dh-search-section__filters-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--dh-text-muted);
}

.dh-search-section__filters-icon {
	width: 16px;
	height: 16px;
	color: var(--dh-orange);
}

.dh-search-form__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.dh-search-form__chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--dh-white);
	border: 1.5px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dh-text-heading);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dh-search-form__chip:hover {
	background: var(--dh-green);
	border-color: var(--dh-green);
	color: var(--dh-white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(74, 124, 89, 0.25);
}

.dh-search-form__chip:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

.dh-search-form__chip-icon {
	width: 18px;
	height: 18px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.dh-search-form__chip:hover .dh-search-form__chip-icon {
	opacity: 1;
}

/* Chip color variants */
.dh-search-form__chip--quick:hover {
	background: #f26522;
	border-color: #f26522;
}

.dh-search-form__chip--healthy:hover {
	background: #4a7c59;
	border-color: #4a7c59;
}

.dh-search-form__chip--comfort:hover {
	background: #c2410c;
	border-color: #c2410c;
}

.dh-search-form__chip--family:hover {
	background: #7c3aed;
	border-color: #7c3aed;
}

.dh-search-form__chip--pasta:hover {
	background: #dc2626;
	border-color: #dc2626;
}

/* Bottom Stats */
.dh-search-section__stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px dashed rgba(74, 124, 89, 0.15);
	animation: searchFadeIn 0.6s ease 0.3s forwards;
	opacity: 0;
}

.dh-search-section__stat {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dh-search-section__stat-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-green-subtle);
	border-radius: 10px;
	color: var(--dh-green);
}

.dh-search-section__stat-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.dh-search-section__stat-num {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--dh-text-heading);
	line-height: 1.2;
}

.dh-search-section__stat-label {
	font-size: 0.75rem;
	color: var(--dh-text-muted);
}

/* ==========================================================================
   CATEGORIES SECTION - Professional Redesign
   ========================================================================== */

.dh-home-cats {
	position: relative;
	padding: 80px 24px;
	background:
		linear-gradient(180deg, rgba(249, 253, 251, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(249, 253, 251, 1) 100%);
	overflow: hidden;
}

/* Background pattern */
.dh-home-cats::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a7c59' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

/* Background decorations */
.dh-home-cats__decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
	opacity: 0.15;
}

.dh-home-cats__decor--1 {
	width: 350px;
	height: 350px;
	background: var(--dh-green);
	top: -100px;
	left: -80px;
}

.dh-home-cats__decor--2 {
	width: 250px;
	height: 250px;
	background: var(--dh-orange);
	bottom: -60px;
	right: -60px;
}

/* Floating icons */
.dh-home-cats__float {
	position: absolute;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-white);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	color: var(--dh-green);
	opacity: 0.6;
	animation: catsIconFloat 6s ease-in-out infinite;
}

.dh-home-cats__float--1 {
	top: 15%;
	left: 5%;
	animation-delay: 0s;
}

.dh-home-cats__float--2 {
	top: 70%;
	right: 6%;
	animation-delay: -2s;
	color: var(--dh-orange);
}

@keyframes catsIconFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-12px) rotate(5deg); }
}

.dh-home-cats__inner {
	position: relative;
	z-index: 1;
	max-width: var(--dh-max-width);
	margin: 0 auto;
}

/* Header */
.dh-home-cats__heading {
	text-align: center;
	margin-bottom: 48px;
	animation: catsFadeIn 0.6s ease forwards;
}

@keyframes catsFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Badge */
.dh-home-cats__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--dh-white);
	border: 1px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	margin-bottom: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.dh-home-cats__badge-icon {
	width: 18px;
	height: 18px;
	color: var(--dh-orange);
}

.dh-home-cats__badge-text {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--dh-green);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.dh-home-cats__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	line-height: 1.2;
	margin: 0 0 12px;
}

.dh-home-cats__title-accent {
	color: var(--dh-orange);
	position: relative;
}

.dh-home-cats__title-accent::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(242, 101, 34, 0.15);
	border-radius: 4px;
	z-index: -1;
}

.dh-home-cats__subtitle {
	font-size: 1.1rem;
	color: var(--dh-text-light);
	line-height: 1.6;
	max-width: 500px;
	margin: 0 auto;
}

/* Grid - optimized for 3 cards */
.dh-home-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-bottom: 48px;
}

/* Card */
.dh-home-cats__card {
	position: relative;
	background: var(--dh-white);
	border-radius: var(--dh-radius-lg);
	overflow: hidden;
	text-decoration: none;
	box-shadow:
		0 4px 16px rgba(0, 0, 0, 0.06),
		0 1px 4px rgba(0, 0, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: catsCardFadeIn 0.6s ease forwards;
	animation-delay: var(--card-delay, 0s);
	opacity: 0;
}

@keyframes catsCardFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dh-home-cats__card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 20px 40px rgba(74, 124, 89, 0.15),
		0 8px 16px rgba(0, 0, 0, 0.08);
}

.dh-home-cats__card:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

/* Card Visual - smaller image */
.dh-home-cats__card-visual {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.dh-home-cats__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.dh-home-cats__card:hover .dh-home-cats__card-img {
	transform: scale(1.08);
}

.dh-home-cats__card-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8f5ee 0%, #fff4ec 100%);
}

/* Overlay gradient */
.dh-home-cats__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 40%,
		rgba(0, 0, 0, 0.35) 100%
	);
	transition: background 0.3s ease;
}

.dh-home-cats__card:hover .dh-home-cats__card-overlay {
	background: linear-gradient(
		180deg,
		rgba(74, 124, 89, 0.1) 0%,
		rgba(74, 124, 89, 0.45) 100%
	);
}

/* Card Icon */
.dh-home-cats__card-icon {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	color: var(--dh-green);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.dh-home-cats__card:hover .dh-home-cats__card-icon {
	background: var(--dh-green);
	color: var(--dh-white);
	transform: scale(1.05);
}

/* Card Count Badge */
.dh-home-cats__card-count {
	position: absolute;
	bottom: 14px;
	left: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: var(--dh-radius-pill);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--dh-text-heading);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.dh-home-cats__card-count svg {
	color: var(--dh-orange);
	transition: color 0.3s ease;
}

.dh-home-cats__card:hover .dh-home-cats__card-count {
	background: var(--dh-orange);
	color: var(--dh-white);
}

.dh-home-cats__card:hover .dh-home-cats__card-count svg {
	color: var(--dh-white);
}

/* Card Content */
.dh-home-cats__card-body {
	padding: 20px 24px 24px;
}

.dh-home-cats__card-name {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 1.15rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	margin: 0 0 10px;
}

.dh-home-cats__card-arrow {
	color: var(--dh-orange);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.dh-home-cats__card:hover .dh-home-cats__card-arrow {
	transform: translateX(4px);
}

.dh-home-cats__card-desc {
	font-size: 0.9rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* CTA */
.dh-home-cats__cta {
	text-align: center;
	animation: catsFadeIn 0.6s ease 0.3s forwards;
	opacity: 0;
}

.dh-home-cats__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 36px;
	background: linear-gradient(135deg, var(--dh-green) 0%, var(--dh-green-dark) 100%);
	color: var(--dh-white);
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	border-radius: var(--dh-radius-pill);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow:
		0 6px 20px rgba(74, 124, 89, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dh-home-cats__cta-btn:hover {
	transform: translateY(-3px);
	box-shadow:
		0 10px 30px rgba(74, 124, 89, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.dh-home-cats__cta-btn:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

.dh-home-cats__cta-icon {
	transition: transform 0.3s ease;
}

.dh-home-cats__cta-btn:hover .dh-home-cats__cta-icon {
	transform: translateX(4px);
}

.dh-home-cats__cta-hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 0.85rem;
	color: var(--dh-text-muted);
}

.dh-home-cats__cta-hint svg {
	color: var(--dh-orange);
}

/* ==========================================================================
   READER FAVORITES SECTION
   ========================================================================== */

.dh-favorites {
	position: relative;
	padding: 80px 24px;
	background: linear-gradient(180deg, #fff9f5 0%, var(--dh-white) 50%, var(--dh-green-subtle) 100%);
	overflow: hidden;
}

.dh-favorites__decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.dh-favorites__decor--1 {
	width: 350px;
	height: 350px;
	background: var(--dh-orange);
	opacity: 0.08;
	top: -80px;
	right: -80px;
}

.dh-favorites__decor--2 {
	width: 300px;
	height: 300px;
	background: var(--dh-green);
	opacity: 0.06;
	bottom: -100px;
	left: -80px;
}

.dh-favorites__float {
	position: absolute;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-white);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	opacity: 0.6;
	animation: favFloat 5s ease-in-out infinite;
}

.dh-favorites__float--1 {
	top: 12%;
	left: 6%;
	color: var(--dh-orange);
}

.dh-favorites__float--2 {
	bottom: 15%;
	right: 5%;
	color: var(--dh-green);
	animation-delay: -2.5s;
}

@keyframes favFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-12px) rotate(5deg); }
}

.dh-favorites__inner {
	position: relative;
	z-index: 1;
	max-width: var(--dh-max-width);
	margin: 0 auto;
}

.dh-favorites__header {
	text-align: center;
	margin-bottom: 48px;
	animation: favFadeIn 0.6s ease forwards;
}

@keyframes favFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dh-favorites__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--dh-white);
	border: 1px solid rgba(242, 101, 34, 0.15);
	border-radius: var(--dh-radius-pill);
	margin-bottom: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.dh-favorites__badge-icon {
	color: var(--dh-orange);
}

.dh-favorites__badge-text {
	font-size: 0.75rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-orange);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.dh-favorites__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	line-height: 1.2;
	margin-bottom: 12px;
}

.dh-favorites__title-accent {
	color: var(--dh-orange);
	position: relative;
}

.dh-favorites__title-accent::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(242, 101, 34, 0.15);
	border-radius: 4px;
	z-index: -1;
}

.dh-favorites__subtitle {
	font-size: 1.1rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-light);
}

.dh-favorites__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* Favorite Card */
.dh-fav-card {
	position: relative;
	background: var(--dh-white);
	border-radius: var(--dh-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: favCardIn 0.6s ease forwards;
	animation-delay: var(--fav-delay, 0s);
	opacity: 0;
}

@keyframes favCardIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dh-fav-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(242, 101, 34, 0.15);
}

.dh-fav-card__img-wrap {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.dh-fav-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.dh-fav-card:hover .dh-fav-card__img {
	transform: scale(1.1);
}

.dh-fav-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8f5ee 0%, #fff4ec 100%);
}

.dh-fav-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
	transition: background 0.3s ease;
}

.dh-fav-card:hover .dh-fav-card__overlay {
	background: linear-gradient(180deg, rgba(242, 101, 34, 0.1) 0%, rgba(242, 101, 34, 0.4) 100%);
}

.dh-fav-card__favorite-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: var(--dh-radius-pill);
	font-size: 0.7rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-orange);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.dh-fav-card:hover .dh-fav-card__favorite-badge {
	background: var(--dh-orange);
	color: var(--dh-white);
}

.dh-fav-card:hover .dh-fav-card__favorite-badge svg {
	fill: var(--dh-white);
}

.dh-fav-card__body {
	padding: 18px 20px;
}

.dh-fav-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 0.8rem;
}

.dh-fav-card__cat {
	color: var(--dh-green);
	font-weight: 600;
	font-family: var(--dh-font-heading);
	text-decoration: none;
	transition: color 0.3s ease;
}

.dh-fav-card__cat:hover {
	color: var(--dh-green-dark);
}

.dh-fav-card__meta-dot {
	width: 4px;
	height: 4px;
	background: var(--dh-text-muted);
	border-radius: 50%;
}

.dh-fav-card__time {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--dh-text-muted);
	font-family: var(--dh-font-body);
}

.dh-fav-card__time svg {
	color: var(--dh-orange);
}

.dh-fav-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	line-height: 1.3;
	margin: 0 0 12px;
}

.dh-fav-card__title a {
	color: var(--dh-text-heading);
	text-decoration: none;
	transition: color 0.3s ease;
}

.dh-fav-card__title a:hover {
	color: var(--dh-orange);
}

.dh-fav-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-green);
	text-decoration: none;
	transition: all 0.3s ease;
}

.dh-fav-card__cta:hover {
	color: var(--dh-orange);
}

.dh-fav-card__cta svg {
	transition: transform 0.3s ease;
}

.dh-fav-card__cta:hover svg {
	transform: translateX(4px);
}

.dh-fav-card__cta:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ==========================================================================
   SEO BLOCK SECTION
   ========================================================================== */

.dh-seo-block {
	position: relative;
	padding: 80px 24px;
	background: linear-gradient(135deg, var(--dh-green) 0%, var(--dh-green-dark) 100%);
	overflow: hidden;
}

.dh-seo-block__bg {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.dh-seo-block__inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.dh-seo-block__content {
	margin-bottom: 40px;
}

.dh-seo-block__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--dh-radius-pill);
	margin-bottom: 20px;
	color: var(--dh-white);
	font-size: 0.75rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.dh-seo-block__badge svg {
	opacity: 0.9;
}

.dh-seo-block__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-white);
	line-height: 1.2;
	margin-bottom: 20px;
}

.dh-seo-block__title-accent {
	color: var(--dh-orange);
	position: relative;
}

.dh-seo-block__text {
	font-size: 1.1rem;
	font-family: var(--dh-font-body);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

.dh-seo-block__topics {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.dh-seo-block__topics-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	font-family: var(--dh-font-heading);
	color: rgba(255, 255, 255, 0.7);
}

.dh-seo-block__topics-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.dh-seo-block__topic {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--dh-radius-pill);
	font-size: 0.85rem;
	font-weight: 600;
	font-family: var(--dh-font-body);
	color: var(--dh-white);
	text-decoration: none;
	transition: all 0.3s ease;
}

.dh-seo-block__topic:hover {
	background: var(--dh-white);
	color: var(--dh-green);
	transform: translateY(-2px);
}

.dh-seo-block__topic svg {
	opacity: 0.8;
}

.dh-seo-block__topic:hover svg {
	opacity: 1;
	stroke: var(--dh-orange);
}

.dh-seo-block__topic:focus-visible {
	outline: 2px solid var(--dh-white);
	outline-offset: 3px;
}

/* ==========================================================================
   LATEST RECIPES SECTION (with sidebar)
   ========================================================================== */

.dh-latest {
	position: relative;
	padding: 80px 24px;
	background: linear-gradient(180deg, var(--dh-green-subtle) 0%, var(--dh-white) 50%, #fff9f5 100%);
	overflow: hidden;
}

.dh-latest__decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.dh-latest__decor--1 {
	width: 400px;
	height: 400px;
	background: var(--dh-green);
	opacity: 0.06;
	top: -100px;
	left: -100px;
}

.dh-latest__decor--2 {
	width: 350px;
	height: 350px;
	background: var(--dh-orange);
	opacity: 0.05;
	bottom: -80px;
	right: -80px;
}

.dh-latest__inner {
	position: relative;
	z-index: 1;
	max-width: var(--dh-max-width);
	margin: 0 auto;
}

.dh-latest__header {
	text-align: center;
	margin-bottom: 48px;
	animation: latestFadeIn 0.6s ease forwards;
}

@keyframes latestFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dh-latest__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--dh-white);
	border: 1px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	margin-bottom: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.dh-latest__badge-icon {
	color: var(--dh-green);
}

.dh-latest__badge-text {
	font-size: 0.75rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-green);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.dh-latest__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	line-height: 1.2;
	margin-bottom: 12px;
}

.dh-latest__title-accent {
	color: var(--dh-orange);
	position: relative;
}

.dh-latest__title-accent::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(242, 101, 34, 0.15);
	border-radius: 4px;
	z-index: -1;
}

.dh-latest__subtitle {
	font-size: 1.1rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-light);
}

.dh-latest__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 48px;
	align-items: start;
}

.dh-latest__main {
	min-width: 0;
}

.dh-latest__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

/* Latest Recipe Card */
.dh-latest-card {
	position: relative;
	background: var(--dh-white);
	border-radius: var(--dh-radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: latestCardIn 0.6s ease forwards;
	animation-delay: var(--card-delay, 0s);
	opacity: 0;
}

@keyframes latestCardIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dh-latest-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(74, 124, 89, 0.15);
}

.dh-latest-card__img-wrap {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.dh-latest-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.dh-latest-card:hover .dh-latest-card__img {
	transform: scale(1.1);
}

.dh-latest-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8f5ee 0%, #fff4ec 100%);
}

.dh-latest-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
	transition: background 0.3s ease;
}

.dh-latest-card:hover .dh-latest-card__overlay {
	background: linear-gradient(180deg, rgba(74, 124, 89, 0.1) 0%, rgba(74, 124, 89, 0.4) 100%);
}

.dh-latest-card__cat-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	border-radius: var(--dh-radius-pill);
	font-size: 0.7rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-green);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.dh-latest-card:hover .dh-latest-card__cat-badge {
	background: var(--dh-green);
	color: var(--dh-white);
}

.dh-latest-card__new-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 12px;
	background: var(--dh-orange);
	border-radius: var(--dh-radius-pill);
	font-size: 0.65rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-white);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(242, 101, 34, 0.3);
}

.dh-latest-card__body {
	padding: 20px 22px;
}

.dh-latest-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-size: 0.8rem;
}

.dh-latest-card__meta-item {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--dh-text-muted);
	font-family: var(--dh-font-body);
}

.dh-latest-card__meta-item svg {
	color: var(--dh-green);
	opacity: 0.7;
}

.dh-latest-card__meta-dot {
	width: 4px;
	height: 4px;
	background: var(--dh-text-muted);
	border-radius: 50%;
}

.dh-latest-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	line-height: 1.3;
	margin: 0 0 10px;
}

.dh-latest-card__title a {
	color: var(--dh-text-heading);
	text-decoration: none;
	transition: color 0.3s ease;
}

.dh-latest-card__title a:hover {
	color: var(--dh-green);
}

.dh-latest-card__excerpt {
	font-size: 0.9rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-muted);
	line-height: 1.5;
	margin: 0 0 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dh-latest-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-orange);
	text-decoration: none;
	transition: all 0.3s ease;
}

.dh-latest-card__cta:hover {
	color: var(--dh-green);
}

.dh-latest-card__cta svg {
	transition: transform 0.3s ease;
}

.dh-latest-card__cta:hover svg {
	transform: translateX(4px);
}

.dh-latest-card__cta:focus-visible {
	outline: 2px solid var(--dh-orange);
	outline-offset: 3px;
	border-radius: 4px;
}

/* Latest CTA */
.dh-latest__cta {
	text-align: center;
}

.dh-latest__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: linear-gradient(135deg, var(--dh-green) 0%, var(--dh-green-dark) 100%);
	color: var(--dh-white);
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	border-radius: var(--dh-radius-pill);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
}

.dh-latest__cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(74, 124, 89, 0.45);
}

.dh-latest__cta-btn:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

.dh-latest__cta-icon {
	transition: transform 0.3s ease;
}

.dh-latest__cta-btn:hover .dh-latest__cta-icon {
	transform: translateX(4px);
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */

.dh-newsletter {
	position: relative;
	padding: 80px 24px;
	background: linear-gradient(135deg, #fff9f5 0%, var(--dh-white) 50%, var(--dh-green-subtle) 100%);
	overflow: hidden;
}

.dh-newsletter__decor {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}

.dh-newsletter__decor--1 {
	width: 350px;
	height: 350px;
	background: var(--dh-orange);
	opacity: 0.08;
	top: -80px;
	left: -80px;
}

.dh-newsletter__decor--2 {
	width: 300px;
	height: 300px;
	background: var(--dh-green);
	opacity: 0.06;
	bottom: -100px;
	right: -80px;
}

.dh-newsletter__float {
	position: absolute;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--dh-white);
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	opacity: 0.6;
	animation: nlFloat 5s ease-in-out infinite;
}

.dh-newsletter__float--1 {
	top: 15%;
	left: 8%;
	color: var(--dh-green);
}

.dh-newsletter__float--2 {
	bottom: 20%;
	right: 6%;
	color: var(--dh-orange);
	animation-delay: -2.5s;
}

@keyframes nlFloat {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-12px) rotate(5deg); }
}

.dh-newsletter__inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.dh-newsletter__content {
	text-align: center;
	animation: nlFadeIn 0.6s ease forwards;
}

@keyframes nlFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dh-newsletter__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--dh-white);
	border: 1px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	margin-bottom: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	font-size: 0.75rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-green);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.dh-newsletter__badge svg {
	color: var(--dh-orange);
}

.dh-newsletter__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	font-family: var(--dh-font-heading);
	color: var(--dh-text-heading);
	line-height: 1.2;
	margin-bottom: 16px;
}

.dh-newsletter__title-accent {
	color: var(--dh-orange);
	position: relative;
}

.dh-newsletter__title-accent::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(242, 101, 34, 0.15);
	border-radius: 4px;
	z-index: -1;
}

.dh-newsletter__text {
	font-size: 1.1rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-light);
	line-height: 1.6;
	margin-bottom: 28px;
}

.dh-newsletter__form {
	margin-bottom: 20px;
}

.dh-newsletter__form-group {
	display: flex;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto;
}

.dh-newsletter__input {
	flex: 1;
	padding: 16px 24px;
	border: 2px solid rgba(74, 124, 89, 0.15);
	border-radius: var(--dh-radius-pill);
	font-size: 1rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-heading);
	background: var(--dh-white);
	transition: border-color 0.3s ease;
}

.dh-newsletter__input:focus {
	outline: none;
	border-color: var(--dh-green);
}

.dh-newsletter__input::placeholder {
	color: var(--dh-text-muted);
}

.dh-newsletter__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 28px;
	background: linear-gradient(135deg, var(--dh-green) 0%, var(--dh-green-dark) 100%);
	color: var(--dh-white);
	font-size: 1rem;
	font-weight: 700;
	font-family: var(--dh-font-heading);
	border: none;
	border-radius: var(--dh-radius-pill);
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(74, 124, 89, 0.35);
}

.dh-newsletter__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(74, 124, 89, 0.45);
}

.dh-newsletter__btn:focus-visible {
	outline: 2px solid var(--dh-green);
	outline-offset: 3px;
}

.dh-newsletter__btn svg {
	transition: transform 0.3s ease;
}

.dh-newsletter__btn:hover svg {
	transform: translateX(3px);
}

.dh-newsletter__hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 0.85rem;
	font-family: var(--dh-font-body);
	color: var(--dh-text-muted);
	margin: 0;
}

.dh-newsletter__hint svg {
	color: var(--dh-orange);
}

/* ==========================================================================
   ACCESSIBILITY - Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.dh-fav-card {
		animation: none;
		opacity: 1;
	}

	.dh-skeleton {
		animation: none;
	}

	.dh-img-lazy {
		filter: none;
		opacity: 1;
	}
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
	.dh-hero {
		min-height: auto;
	}

	.dh-hero__inner {
		grid-template-columns: 1fr;
		gap: var(--dh-space-4);
		text-align: center;
		padding: 40px 24px 60px;
	}

	.dh-hero__content {
		align-items: center;
	}

	.dh-hero__eyebrow {
		margin: 0 auto;
	}

	.dh-hero__desc {
		max-width: 100%;
	}

	.dh-hero__stats {
		justify-content: center;
	}

	.dh-hero__btns {
		justify-content: center;
	}

	.dh-hero__tagline {
		justify-content: center;
	}

	/* Hide visual section on tablet and mobile */
	.dh-hero__visual {
		display: none;
	}

	/* Categories section tablet */
	.dh-home-cats {
		padding: 60px 16px;
	}

	.dh-home-cats__float {
		display: none;
	}

	.dh-home-cats__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.dh-home-cats__heading {
		margin-bottom: 32px;
	}

	/* Favorites responsive */
	.dh-favorites__float {
		display: none;
	}

	.dh-favorites__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Latest responsive */
	.dh-latest__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dh-latest__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Newsletter responsive */
	.dh-newsletter__float {
		display: none;
	}

	/* Search section responsive */
	.dh-search-section {
		padding: 60px 16px;
	}

	.dh-search-section__icon-float {
		display: none;
	}

	.dh-search-section__stats {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}

	.dh-search-section__stat {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.dh-hero__inner {
		padding: 32px 16px 48px;
	}

	.dh-hero__title {
		font-size: 2rem;
	}

	.dh-hero__desc {
		font-size: 1rem;
	}

	.dh-hero__stats {
		flex-wrap: wrap;
		gap: 20px;
	}

	.dh-hero__stat {
		min-width: 80px;
		align-items: center;
	}

	.dh-hero__btns {
		flex-direction: column;
		width: 100%;
	}

	.dh-hero__btn {
		width: 100%;
		justify-content: center;
	}

	/* Search section mobile */
	.dh-search-form__container {
		flex-direction: column;
		border-radius: var(--dh-radius-lg);
		padding: 16px;
		gap: 12px;
	}

	.dh-search-form__icon {
		display: none;
	}

	.dh-search-form__input {
		width: 100%;
		text-align: center;
		padding: 12px 16px;
	}

	.dh-search-form__btn {
		width: 100%;
		justify-content: center;
	}

	.dh-search-section__title {
		font-size: 1.5rem;
	}

	.dh-search-section__sub {
		font-size: 1rem;
	}

	.dh-search-form__chips {
		gap: 8px;
	}

	.dh-search-form__chip {
		padding: 8px 14px;
		font-size: 0.85rem;
	}

	.dh-search-form__chip-icon {
		display: none;
	}

	/* Categories section mobile */
	.dh-home-cats__title {
		font-size: 1.5rem;
	}

	.dh-home-cats__subtitle {
		font-size: 1rem;
	}

	.dh-home-cats__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 32px;
	}

	.dh-home-cats__card-visual {
		aspect-ratio: 16 / 9;
	}

	.dh-home-cats__card-body {
		padding: 16px 20px 20px;
	}

	.dh-home-cats__cta-btn {
		width: 100%;
		justify-content: center;
		padding: 16px 32px;
	}

	/* Favorites mobile */
	.dh-favorites {
		padding: 60px 16px;
	}

	.dh-favorites__header {
		margin-bottom: 32px;
	}

	.dh-favorites__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* SEO Block mobile */
	.dh-seo-block {
		padding: 60px 16px;
	}

	.dh-seo-block__topics-list {
		gap: 8px;
	}

	.dh-seo-block__topic {
		padding: 8px 14px;
		font-size: 0.8rem;
	}

	/* Latest mobile */
	.dh-latest {
		padding: 60px 16px;
	}

	.dh-latest__header {
		margin-bottom: 32px;
	}

	.dh-latest__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 32px;
	}

	.dh-latest__cta-btn {
		width: 100%;
		justify-content: center;
	}

	/* Newsletter mobile */
	.dh-newsletter {
		padding: 60px 16px;
	}

	.dh-newsletter__form-group {
		flex-direction: column;
	}

	.dh-newsletter__input {
		text-align: center;
	}

	.dh-newsletter__btn {
		width: 100%;
		justify-content: center;
	}
}
