/* Performance optimizations */
* {
	box-sizing: border-box;
}

/* Use GPU acceleration for transforms and animations */
.cat-card,
.icon-card,
.btn,
.team-card,
.product-card {
	will-change: transform;
}

/* Remove focus outlines globally */
*:focus,
*:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none !important;
	box-shadow: none !important;
}

:root {
	--jbfarm-green: rgb(6, 117, 46);
	--jbfarm-dark: #0f1a12;
	--jbfarm-bg: #ffffff;
	--jbfarm-green-dark: rgb(4, 86, 34);
	--jbfarm-green-light: rgb(26, 154, 70);
}

/* Fine animations for elements */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Animation classes - elements start hidden */
.animate-element {
	opacity: 0;
	animation: fadeIn 0.4s ease-out forwards;
}

.animate-element--fade {
	opacity: 0;
	animation: fadeIn 0.4s ease-out forwards;
}

.animate-element--scale {
	opacity: 0;
	animation: fadeIn 0.4s ease-out forwards;
}

/* Stagger delays for grid items */
.animate-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.15s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.25s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(7) { animation-delay: 0.35s; }
.animate-stagger > *:nth-child(8) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(9) { animation-delay: 0.45s; }
.animate-stagger > *:nth-child(10) { animation-delay: 0.5s; }

/* Smooth transitions for interactive elements */
.btn,
.btn-primary,
.btn-secondary {
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
	transform: scale(1.02);
}

body {
	margin: 0;
	color: var(--jbfarm-dark);
	background: var(--jbfarm-bg);
	font-family: "Manrope", "Segoe UI", Arial, sans-serif;
	font-weight: 400;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 6px 18px rgba(6, 117, 46, 0.08);
}

.site-header__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	position: relative;
}

.site-header__brand .custom-logo {
	max-height: 44px;
	width: auto;
}

.site-header__nav {
	margin-left: auto;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	margin-left: auto;
	z-index: 101;
	position: relative;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}

.mobile-menu-toggle__hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: absolute;
	transition: opacity 0.2s ease, transform 0.2s ease;
	opacity: 1;
	transform: scale(1);
}

.mobile-menu-toggle__close {
	position: absolute;
	font-size: 40px;
	font-weight: 300;
	color: var(--jbfarm-dark);
	line-height: 1;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.5) rotate(90deg);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	font-family: Arial, sans-serif;
}

.mobile-menu-toggle__icon {
	width: 24px;
	height: 2px;
	background: var(--jbfarm-dark);
	border-radius: 2px;
	transition: all 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__hamburger {
	opacity: 0;
	visibility: hidden;
	transform: scale(0.5) rotate(-90deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__close {
	opacity: 1;
	visibility: visible;
	transform: scale(1) rotate(0deg);
}

.primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 24px;
	align-items: center;
	position: relative;
}

.primary-menu > li {
	position: relative;
}

.primary-menu > li > a,
.primary-menu > li .menu-item-with-children .menu-link {
	text-decoration: none;
	color: var(--jbfarm-dark);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.02em;
	padding: 8px 0;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s ease;
	position: relative;
}

.primary-menu > li > a::after,
.primary-menu > li .menu-item-with-children .menu-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--jbfarm-green);
	transition: width 0.3s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li .menu-item-with-children .menu-link:hover {
	color: var(--jbfarm-green);
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li .menu-item-with-children .menu-link:hover::after {
	width: 100%;
}

.menu-item-with-children {
	display: flex;
	align-items: center;
	gap: 8px;
}

.primary-menu .menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 4px 8px;
	cursor: pointer;
	color: var(--jbfarm-dark);
	font-size: 12px;
	transition: transform 0.2s ease, color 0.2s ease;
	flex-shrink: 0;
}

.primary-menu .menu-toggle:hover {
	color: var(--jbfarm-green);
}

.primary-menu .menu-toggle[aria-expanded="true"] {
	transform: rotate(180deg);
}

.primary-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 12px 0;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 240px;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
	border-radius: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 1000;
	margin-top: 8px;
	border: 1px solid rgba(6, 117, 46, 0.1);
}

.primary-menu .menu-item-has-children:hover .sub-menu,
.primary-menu .menu-item-has-children:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu .sub-menu li {
	margin: 0;
}

.primary-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	color: var(--jbfarm-dark);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background 0.2s ease, color 0.2s ease;
	border-radius: 0;
}

.primary-menu .sub-menu a::after {
	display: none;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu .current-menu-item > a {
	background: rgba(6, 117, 46, 0.06);
	color: var(--jbfarm-green);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.site-header__search-toggle {
	background: none;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: var(--jbfarm-dark);
	font-size: 18px;
	transition: color 0.2s ease, transform 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-header__search-toggle:hover {
	color: var(--jbfarm-green);
	transform: scale(1.1);
}

/* Search Overlay */
.search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.active {
	opacity: 1;
	visibility: visible;
}

.search-overlay__inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 80px 18px 40px;
}

.search-overlay__close {
	position: absolute;
	top: 30px;
	right: 30px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 10000;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	line-height: 1;
}

@media (max-width: 600px) {
	.search-overlay__inner {
		padding-top: 120px; /* Povećan odmak da se ne sudara sa X dugmetom */
	}
	.search-overlay__close {
		top: 25px;
		right: 25px;
		width: 44px;
		height: 44px;
	}
}

.search-overlay__close:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.5);
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.search-overlay__close:active {
	transform: rotate(90deg) scale(0.95);
}

.search-overlay__close span {
	display: block;
	font-size: 32px;
	line-height: 1;
	font-weight: 300;
	font-family: Arial, sans-serif;
}

.search-overlay__content {
	width: 100%;
	max-width: 700px;
	position: relative;
}

.search-overlay__form {
	position: relative;
	margin-bottom: 24px;
}

.search-overlay__input {
	width: 100%;
	padding: 20px 60px 20px 24px;
	font-size: 18px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--jbfarm-dark);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-overlay__input:focus {
	border-color: var(--jbfarm-green);
	box-shadow: 0 0 0 4px rgba(6, 117, 46, 0.1);
}

.search-overlay__input::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.search-overlay__submit {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border: none;
	border-radius: 10px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.search-overlay__submit:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-50%) scale(1.05);
}

.search-overlay__results {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 20px;
	max-height: 60vh;
	overflow-y: auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.search-overlay__results:empty {
	display: none;
}

.search-results__loading {
	text-align: center;
	padding: 20px;
	color: var(--jbfarm-dark);
	font-size: 16px;
}

.search-results__item {
	padding: 16px;
	border-bottom: 1px solid rgba(6, 117, 46, 0.1);
	transition: background 0.2s ease;
	display: block;
	text-decoration: none;
	color: var(--jbfarm-dark);
}

.search-results__item:last-child {
	border-bottom: none;
}

.search-results__item:hover {
	background: rgba(6, 117, 46, 0.05);
}

.search-results__item-title {
	font-weight: 600;
	font-size: 16px;
	margin: 0 0 6px;
	color: var(--jbfarm-green-dark);
}

.search-results__item-excerpt {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.5;
	margin: 0;
}

.search-results__empty {
	text-align: center;
	padding: 40px 20px;
	color: var(--jbfarm-dark);
	font-size: 16px;
}

.search-results__empty i {
	font-size: 48px;
	color: rgba(6, 117, 46, 0.3);
	margin-bottom: 16px;
	display: block;
}

.home-hero {
	min-height: 90vh;
	background-size: cover;
	background-position: center;
	position: relative;
	border-radius: 0 0 48px 48px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 30% 40%, rgba(6, 117, 46, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 70% 60%, rgba(6, 117, 46, 0.1) 0%, transparent 50%);
	z-index: 1;
	pointer-events: none;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.55) 25%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.15) 90%, transparent 100%);
	z-index: 1;
}

.home-hero__content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px 120px;
	color: #fff;
	width: 100%;
	z-index: 2;
}

.home-hero__kicker {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	color: #fff;
}

.home-hero__kicker:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.home-hero__title {
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.1;
	margin: 0 0 24px;
	max-width: 900px;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 8px 40px rgba(0, 0, 0, 0.3);
	font-weight: 800;
	color: #fff;
}

.home-hero__title--green {
	color: var(--jbfarm-green-light);
	position: relative;
	text-shadow: none;
}

.home-hero__subtitle {
	max-width: 750px;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.6;
	margin: 0 0 36px;
	opacity: 0.95;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
	font-weight: 400;
	color: #fff;
}

.home-hero__text--green {
	color: #fff;
	font-weight: 600;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 0;
}

.home-hero__actions .btn {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 50px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-hero__actions .btn--primary {
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border: none;
}

.home-hero__actions .btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.4);
}

.home-hero__actions .btn--ghost {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.home-hero__actions .btn--ghost:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.home-hero {
		min-height: 70vh;
		border-radius: 0 0 32px 32px;
		align-items: center;
	}
	
	.home-hero__content {
		padding: 80px 18px;
		text-align: center;
	}
	
	.home-hero__kicker {
		padding: 8px 16px;
		font-size: 11px;
		margin-bottom: 20px;
	}
	
	.home-hero__title {
		margin-bottom: 20px;
	}
	
	.home-hero__subtitle {
		margin-bottom: 28px;
	}
	
	.home-hero__actions {
		flex-direction: column;
	}
	
	.home-hero__actions .btn {
		width: 100%;
		justify-content: center;
	}
}

/* Stats Section */
.home-stats {
	padding: 100px 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(6, 117, 46, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(6, 117, 46, 0.06) 0%, transparent 50%),
		linear-gradient(180deg, rgba(6, 117, 46, 0.04), rgba(255, 255, 255, 0));
	margin-top: -40px;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.home-stats::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 40%;
	height: 200%;
	background: radial-gradient(circle, rgba(6, 117, 46, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.home-stats::after {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 35%;
	height: 160%;
	background: radial-gradient(circle, rgba(6, 117, 46, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.stat-card {
	background: #fff;
	border-radius: 24px;
	padding: 48px 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 24px;
	box-shadow: 
		0 8px 32px rgba(6, 117, 46, 0.1),
		0 2px 8px rgba(0, 0, 0, 0.04);
	border: 1px solid rgba(6, 117, 46, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: visible;
}

.stat-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 24px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.stat-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(6, 117, 46, 0.06) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
	pointer-events: none;
}

.stat-card:hover {
	transform: translateY(-12px);
	box-shadow: 
		0 20px 60px rgba(6, 117, 46, 0.2),
		0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: transparent;
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-card:hover::after {
	opacity: 1;
}

.stat-card__icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 40px;
	flex-shrink: 0;
	box-shadow: 
		0 12px 32px rgba(6, 117, 46, 0.3),
		0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	z-index: 1;
}

.stat-card__icon::before {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(6, 117, 46, 0.2) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.stat-card:hover .stat-card__icon {
	transform: scale(1.15);
	box-shadow: 
		0 16px 48px rgba(6, 117, 46, 0.4),
		0 6px 16px rgba(0, 0, 0, 0.15);
}

.stat-card:hover .stat-card__icon::before {
	opacity: 1;
}

.stat-card__content {
	flex: 1;
	position: relative;
	z-index: 1;
	width: 100%;
}

.stat-card__number {
	font-size: clamp(42px, 5vw, 56px);
	font-weight: 800;
	color: var(--jbfarm-green-dark);
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: -0.03em;
	text-shadow: 0 2px 8px rgba(6, 117, 46, 0.15);
}

.stat-card__label {
	font-size: 17px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.75);
	line-height: 1.5;
}

@media (max-width: 968px) {
	.home-stats {
		padding: 80px 0;
		margin-top: -20px;
	}
	
	.stats-grid {
		gap: 28px;
	}
	
	.stat-card {
		padding: 40px 32px;
	}
	
	.stat-card__icon {
		width: 90px;
		height: 90px;
		font-size: 36px;
	}
	
	.stat-card__number {
		font-size: 44px;
	}
}

@media (max-width: 768px) {
	.home-stats {
		padding: 60px 0;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.stat-card {
		padding: 36px 28px;
	}
	
	.stat-card__icon {
		width: 80px;
		height: 80px;
		font-size: 32px;
	}
	
	.stat-card__number {
		font-size: 40px;
	}
	
	.stat-card__label {
		font-size: 16px;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px;
}

.container--narrow {
	max-width: 900px;
}

/* Legacy slider styles removed; hero is used instead. */

.home-section {
	padding: 64px 0;
}

.home-section--about {
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.06), rgba(6, 117, 46, 0.02));
}

.home-section--about .home-section__title {
	color: var(--jbfarm-dark);
}

.home-about-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.55));
	border: 1px solid rgba(6, 117, 46, 0.18);
	border-radius: 22px;
	padding: 26px;
	box-shadow: 0 24px 50px rgba(6, 117, 46, 0.18);
	backdrop-filter: blur(12px);
	position: relative;
	overflow: hidden;
}


.home-about-card .prose p {
	font-size: 17px;
}

.home-section--icons {
	padding: 36px 0 72px;
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.08), rgba(6, 117, 46, 0));
	overflow: visible;
}

.home-section--categories {
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.03), rgba(255, 255, 255, 0));
	padding: 100px 0;
}

.home-section--icons .container {
	max-width: 1400px;
}

.section-head {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 22px;
}

.section-head--center {
	text-align: center;
	align-items: center;
}

.section-head--center .home-section__subtitle {
	max-width: 600px;
	margin: 0 auto;
}

.home-section__subtitle {
	margin: 0;
	font-size: 16px;
	opacity: 0.75;
	max-width: 720px;
}

/* Features Section */
.home-section--features {
	padding: 100px 0;
	background: #fff;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 50px;
}

/* Centriraj poslednju kartu kada je sama u redu (7. kartica) */
.features-grid .feature-card:nth-child(7) {
	grid-column: 2 / 3;
}

@media (max-width: 968px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.features-grid .feature-card:nth-child(7) {
		grid-column: 1 / -1;
		justify-self: stretch; /* Promijenjeno sa center na stretch */
		max-width: 100%; /* Promijenjeno sa 280px na 100% */
	}
}

@media (max-width: 640px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.features-grid .feature-card:nth-child(7) {
		grid-column: 1;
		max-width: 100%;
		justify-self: stretch;
	}
}

.feature-card {
	background: #fff;
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 24px;
	padding: 32px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(6, 117, 46, 0.06);
}

.feature-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.03), rgba(6, 117, 46, 0.08));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: var(--jbfarm-green);
	box-shadow: 0 16px 40px rgba(6, 117, 46, 0.2);
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card__icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 32px;
	margin-bottom: 24px;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.25);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.feature-card:hover .feature-card__icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.35);
}

.feature-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 12px;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}

.feature-card__desc {
	font-size: 15px;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.6;
	margin: 0 0 20px;
	flex: 1;
	position: relative;
	z-index: 1;
}

.feature-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--jbfarm-green);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.feature-card__link i {
	transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__link {
	color: var(--jbfarm-green-dark);
}

.feature-card:hover .feature-card__link i {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 40px;
	}
	
	.feature-card {
		padding: 28px 24px;
	}
}

/* About Split Section */
.about-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-split__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.about-split__kicker {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(6, 117, 46, 0.1);
	color: var(--jbfarm-green-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	width: fit-content;
}

.about-split__title {
	font-size: clamp(28px, 3.5vw, 40px);
	line-height: 1.2;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0;
}

.about-split__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-split__text p {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.8);
	margin: 0;
}

.about-split__image {
	position: relative;
}

.about-split__image-wrapper {
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(6, 117, 46, 0.2);
	position: relative;
	background: linear-gradient(135deg, var(--jbfarm-green-light), var(--jbfarm-green));
	padding: 8px;
	transition: all 0.4s ease;
}

.about-split__image-wrapper:hover {
	border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
	transform: rotate(2deg);
}

.about-split__image-wrapper::before {
	content: '';
	position: absolute;
	inset: 8px;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.1), transparent);
	z-index: 1;
	pointer-events: none;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	transition: all 0.4s ease;
}

.about-split__image-wrapper:hover::before {
	border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}

.about-split__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	transition: all 0.4s ease;
	position: relative;
	z-index: 0;
}

.about-split__image-wrapper:hover img {
	border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}

.about-split .btn {
	width: fit-content;
	margin-top: 8px;
}

@media (max-width: 968px) {
	.about-split {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.about-split__image {
		order: -1;
	}
}

/* Categories Grid */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 50px;
}

/* Centriraj poslednju kartu kada je sama u redu (7. kartica) */
.categories-grid .category-card:nth-child(7) {
	grid-column: 2 / 3;
}

.category-card {
	background: #fff;
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 24px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 4px 20px rgba(6, 117, 46, 0.06);
}

.category-card:hover {
	transform: translateY(-8px);
	border-color: var(--jbfarm-green);
	box-shadow: 0 16px 40px rgba(6, 117, 46, 0.2);
}

.category-card__image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background: linear-gradient(135deg, #e8f2ec, #f0f7f3);
	position: relative;
}

.category-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover .category-card__image img {
	transform: scale(1.1);
}

.category-card__icon {
	width: 100%;
	height: 300px;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.15), rgba(6, 117, 46, 0.05));
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-card__icon i {
	font-size: 64px;
	color: var(--jbfarm-green);
	transition: all 0.3s ease;
}

.category-card:hover .category-card__icon i {
	transform: scale(1.15) rotate(5deg);
	color: var(--jbfarm-green-dark);
}

.category-card__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.category-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0;
	line-height: 1.3;
}

.category-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--jbfarm-green);
	transition: all 0.3s ease;
}

.category-card__link i {
	transition: transform 0.3s ease;
}

.category-card:hover .category-card__link {
	color: var(--jbfarm-green-dark);
}

.category-card:hover .category-card__link i {
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.categories-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 40px;
	}
	
	.categories-grid .category-card:nth-child(7) {
		grid-column: 1 / -1;
		justify-self: stretch; /* Promijenjeno sa center na stretch */
		max-width: 100%; /* Promijenjeno sa 280px na 100% */
	}
}

@media (max-width: 640px) {
	.categories-grid {
		grid-template-columns: 1fr;
	}
	
	.categories-grid .category-card:nth-child(7) {
		grid-column: 1;
		max-width: 100%;
		justify-self: stretch;
	}
}

/* Featured Category Section */
.home-section--featured-category {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.12), rgba(6, 117, 46, 0.05));
	position: relative;
	overflow: hidden;
}

.home-section--featured-category::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle at center, rgba(6, 117, 46, 0.08), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.featured-category {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
	background: #fff;
	border-radius: 32px;
	padding: 60px;
	box-shadow: 0 20px 60px rgba(6, 117, 46, 0.15);
	border: 2px solid rgba(6, 117, 46, 0.1);
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
}

.featured-category__image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(6, 117, 46, 0.2);
	position: relative;
}

.featured-category__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.1), transparent);
	pointer-events: none;
}

.featured-category__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 24px;
}

.featured-category__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.featured-category__badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
	box-shadow: 0 4px 12px rgba(6, 117, 46, 0.3);
}

.featured-category__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.featured-category__description {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(0, 0, 0, 0.8);
	margin: 0;
}

.featured-category .btn {
	width: fit-content;
	margin-top: 8px;
}

@media (max-width: 980px) {
	.home-section--featured-category {
		padding: 60px 0;
	}

	.featured-category {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 40px;
	}

	.featured-category__image {
		order: -1;
	}

	.featured-category__title {
		font-size: 32px;
	}

	.featured-category__description {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.home-section--featured-category {
		padding: 40px 0;
	}

	.featured-category {
		padding: 30px 24px;
		gap: 30px;
		border-radius: 24px;
	}

	.featured-category__title {
		font-size: 28px;
	}

	.featured-category__description {
		font-size: 15px;
		line-height: 1.7;
	}

	.featured-category .btn {
		width: 100%;
		justify-content: center;
	}
}

/* CTA Box */
.home-section--cta {
	padding: 100px 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.08), rgba(6, 117, 46, 0.02));
}

.cta-box {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border-radius: 32px;
	padding: 60px 50px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(6, 117, 46, 0.15);
	border: 2px solid rgba(6, 117, 46, 0.1);
}

.cta-box__title {
	font-size: clamp(32px, 4vw, 42px);
	line-height: 1.2;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 20px;
}

.cta-box__text {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(0, 0, 0, 0.8);
	margin: 0 0 32px;
}

.cta-box .btn--large {
	padding: 16px 32px;
	font-size: 17px;
}

@media (max-width: 768px) {
	.home-section--cta {
		padding: 60px 0;
	}
	
	.cta-box {
		padding: 40px 28px;
	}
	
	.cta-box__text {
		font-size: 16px;
	}
}

.icon-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.icon-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 18px;
	padding: 14px 10px;
	text-align: center;
	box-shadow: 0 12px 26px rgba(6, 117, 46, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	position: relative;
	overflow: hidden;
}

.icon-card__icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	display: grid;
	place-items: center;
	margin: 0 auto 12px;
	color: #fff;
	font-size: 22px;
	box-shadow: 0 12px 22px rgba(6, 117, 46, 0.25);
}

.icon-card__title {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	line-height: 1.35;
	min-height: 38px;
}

.icon-card:hover {
	transform: translateY(-4px);
	border-color: rgba(6, 117, 46, 0.3);
	box-shadow: 0 18px 30px rgba(6, 117, 46, 0.2);
}


@media (max-width: 980px) {
	.icon-grid {
		grid-template-columns: repeat(4, minmax(160px, 1fr));
	}
}

@media (max-width: 720px) {
	.icon-grid {
		grid-template-columns: repeat(3, minmax(160px, 1fr));
	}
}

@media (max-width: 640px) {
	.icon-grid {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
	}
}

.home-section__title {
	margin: 0 0 18px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
}

.home-section__title-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
}

.home-section__title-link:hover {
	color: var(--jbfarm-green);
	text-decoration: none;
}

.prose p {
	margin: 0 0 14px;
	font-size: 16px;
	line-height: 1.7;
}

.grid {
	display: grid;
	gap: 14px;
}

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

.card {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	background: #fff;
	padding: 16px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
	transform: translateY(-4px);
	border-color: rgba(6, 117, 46, 0.3);
	box-shadow: 0 16px 30px rgba(6, 117, 46, 0.15);
}

.card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.card__title {
	font-weight: 700;
	color: var(--jbfarm-dark);
}

.grid--cats {
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
	justify-items: center;
}

.cat-card {
	text-decoration: none;
	color: inherit;
	border-radius: 24px;
	overflow: hidden;
	border: 2px solid rgba(6, 117, 46, 0.08);
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	box-shadow: 0 4px 20px rgba(6, 117, 46, 0.06);
	width: 100%;
	max-width: 100%;
}

.cat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0), rgba(6, 117, 46, 0.05));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 1;
	pointer-events: none;
}

.cat-card:hover::before {
	opacity: 1;
}

.cat-card__media {
	height: 260px;
	background: linear-gradient(135deg, #e8f2ec, #f0f7f3);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.cat-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(6, 117, 46, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.cat-card:hover .cat-card__media::after {
	opacity: 1;
}

.cat-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-card:hover .cat-card__img {
	transform: scale(1.08);
}

.cat-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.15), rgba(6, 117, 46, 0.05));
	display: flex;
	align-items: center;
	justify-content: center;
}

.cat-card__icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.25);
	transition: all 0.4s ease;
}

.cat-card__icon i {
	font-size: 42px;
	color: #fff;
}

.cat-card:hover .cat-card__icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.35);
}

.cat-card__title {
	padding: 24px 28px;
	font-size: 18px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	text-align: center;
	line-height: 1.4;
	background: #fff;
	position: relative;
	z-index: 2;
	transition: color 0.3s ease;
}

.cat-card:hover {
	transform: translateY(-8px);
	border-color: rgba(6, 117, 46, 0.25);
	box-shadow: 0 20px 50px rgba(6, 117, 46, 0.2);
}

.cat-card:hover .cat-card__title {
	color: var(--jbfarm-green-dark);
}

/* Center last item (7th card) */
.cat-card--centered {
	grid-column: 2;
}

@media (max-width: 980px) {
	.cat-card--centered {
		grid-column: auto;
	}
}

@media (max-width: 980px) {
	.home-section--categories {
		padding: 80px 0;
	}

	.grid--cats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-top: 40px;
	}

	.cat-card__media {
		height: 220px;
	}

	.cat-card__title {
		padding: 20px 24px;
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.home-section--categories {
		padding: 60px 0;
	}

	.grid--cats {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.cat-card__media {
		height: 200px;
	}

	.cat-card__title {
		padding: 18px 20px;
		font-size: 15px;
	}
}

.home-section--cta {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	color: #fff;
	position: relative;
	overflow: hidden;
}

.home-section--cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
	pointer-events: none;
}

.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.2;
	color: #fff;
}

.cta-text {
	font-size: clamp(16px, 1.8vw, 20px);
	line-height: 1.75;
	margin: 0 auto 32px;
	max-width: 680px;
	opacity: 0.95;
	color: rgba(255, 255, 255, 0.95);
}

.btn {
	display: inline-block;
	padding: 12px 16px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
}

.btn--primary {
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn--primary i {
	transition: transform 0.3s ease;
}

.btn--primary:hover i {
	transform: translateX(4px);
}

.btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.btn--large {
	padding: 16px 32px;
	font-size: 17px;
}

.btn--cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	font-size: 18px;
	background: #fff;
	color: var(--jbfarm-green-dark);
	border-radius: 12px;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	color: var(--jbfarm-green-dark);
}

.btn--cta i {
	font-size: 16px;
	transition: transform 0.2s ease;
}

.btn--cta:hover i {
	transform: translateX(4px);
}

/* Footer */
.site-footer {
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.02), rgba(6, 117, 46, 0.05));
	border-top: 1px solid rgba(6, 117, 46, 0.12);
	padding: 64px 0 32px;
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	right: -10%;
	width: 40%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(6, 117, 46, 0.03), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px;
	position: relative;
	z-index: 1;
}

.site-footer__content {
	display: grid;
	grid-template-columns: 1.8fr 1.2fr 1.2fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.site-footer__col--logo {
	display: flex;
	align-items: flex-start;
}

.site-footer__brand .custom-logo {
	max-height: 50px;
	width: auto;
}

.site-footer__logo-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--jbfarm-dark);
	font-size: 26px;
	font-weight: 700;
	transition: opacity 0.2s ease;
}

.site-footer__logo-link:hover {
	opacity: 0.8;
}

.site-footer__logo-text--bold {
	font-weight: 700;
	color: var(--jbfarm-dark);
}

.site-footer__logo-icon {
	font-size: 20px;
	color: var(--jbfarm-green);
	filter: drop-shadow(0 2px 4px rgba(6, 117, 46, 0.2));
}

.site-footer__logo-text {
	font-weight: 400;
	color: var(--jbfarm-dark);
	opacity: 0.85;
}

.site-footer__tagline {
	margin: 12px 0 0;
	font-size: 14px;
	color: var(--jbfarm-dark);
	opacity: 0.7;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.site-footer__title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 20px;
	color: var(--jbfarm-green-dark);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	position: relative;
	padding-bottom: 8px;
}

.site-footer__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--jbfarm-green), transparent);
	border-radius: 2px;
}

.site-footer__title--sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.site-footer__list-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--jbfarm-green);
	font-size: 14px;
	flex-shrink: 0;
	opacity: 0.8;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__list-item:hover .site-footer__icon {
	opacity: 1;
	transform: scale(1.1);
}

.site-footer__link {
	text-decoration: none;
	color: var(--jbfarm-dark);
	font-size: 15px;
	transition: color 0.2s ease;
	display: inline-block;
	position: relative;
	flex: 1;
}

.site-footer__link::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	transition: width 0.3s ease;
	border-radius: 2px;
}

.site-footer__link:hover {
	color: var(--jbfarm-green);
}

.site-footer__link:hover::after {
	width: 100%;
}

.site-footer__text {
	font-size: 15px;
	color: var(--jbfarm-dark);
	line-height: 1.6;
	flex: 1;
}

.site-footer__social {
	display: flex;
	gap: 10px;
	align-items: center;
}

.site-footer__social {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.site-footer__social-link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 17px;
	box-shadow: 0 4px 12px rgba(6, 117, 46, 0.2);
	position: relative;
	overflow: hidden;
}

.site-footer__social-link::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.site-footer__social-link:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-4px) rotate(5deg);
	box-shadow: 0 8px 20px rgba(6, 117, 46, 0.35);
}

.site-footer__social-link:hover::before {
	opacity: 1;
}

.site-footer__divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(6, 117, 46, 0.15), transparent);
	margin: 32px 0 24px;
}

.site-footer__bottom {
	text-align: center;
}

.site-footer__copyright {
	margin: 0;
	font-size: 14px;
	color: var(--jbfarm-dark);
	opacity: 0.75;
	font-weight: 500;
	letter-spacing: 0.02em;
}

@media (max-width: 980px) {
	.site-footer__content {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
	}

	.site-footer__col--logo {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.site-footer__content {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.site-footer__col--logo {
		grid-column: 1;
	}
}

/* About Page */
.about-hero {
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(6, 117, 46, 0.55) 0%, rgba(6, 117, 46, 0.5) 30%, rgba(6, 117, 46, 0.45) 60%, rgba(6, 117, 46, 0.25) 85%, transparent 100%);
}

.about-hero__content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px 80px;
	width: 100%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: 70vh;
}

.about-hero__title {
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

.about-section {
	padding: 80px 0;
}

.about-section--who {
	background: #fff;
}

.about-who {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 60px;
	align-items: start;
}

.about-who__header {
	position: sticky;
	top: 100px;
}

.about-section__title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 24px;
	position: relative;
	padding-bottom: 16px;
}

.about-section__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 2px;
}

.about-who__content .prose {
	font-size: 18px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
}

.about-who__content .prose p {
	margin: 0 0 20px;
}

.about-section--team {
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.02), rgba(6, 117, 46, 0.05));
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	margin-top: 48px;
}

.team-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(6, 117, 46, 0.15);
}

.team-card__image {
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.1), rgba(6, 117, 46, 0.05));
	position: relative;
}

.team-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--jbfarm-green);
	font-size: 64px;
	opacity: 0.3;
}

.team-card__content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.team-card__name {
	font-size: 20px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 8px;
}

.team-card__title {
	font-size: 13px;
	color: var(--jbfarm-green-dark);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 16px;
	line-height: 1.4;
}

.team-card__social {
	display: flex;
	gap: 8px;
	margin-top: auto;
}

.team-card__social-link {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 14px;
}

.team-card__social-link:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-2px);
}

.about-section--mission {
	padding: 0;
}

.mission-vision {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	margin-top: 20px;
}

.mission-vision__card {
	background: #fff;
	border-radius: 24px;
	padding: 48px 40px;
	box-shadow: 0 12px 40px rgba(6, 117, 46, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.mission-vision__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 24px 24px 0 0;
}

.mission-vision__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(6, 117, 46, 0.2);
}

.mission-vision__card--mission {
	border: 2px solid rgba(6, 117, 46, 0.1);
}

.mission-vision__card--vision {
	border: 2px solid rgba(6, 117, 46, 0.1);
}

.mission-vision__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 32px;
	position: relative;
	z-index: 1;
}

.mission-vision__card--mission .mission-vision__icon {
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.3);
}

.mission-vision__card--vision .mission-vision__icon {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	color: #fff;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.3);
}

.mission-vision__content {
	width: 100%;
}

.mission-vision__title {
	font-size: clamp(28px, 3.5vw, 36px);
	font-weight: 700;
	margin: 0 0 20px;
	color: var(--jbfarm-green-dark);
	position: relative;
	padding-bottom: 16px;
}

.mission-vision__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 2px;
}

.mission-vision__text {
	font-size: 17px;
	line-height: 1.8;
	margin: 0;
	color: var(--jbfarm-dark);
	opacity: 0.9;
}

.about-section--values {
	background: #fff;
	padding: 80px 0;
}

.value-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.value-item:last-child {
	margin-bottom: 0;
}

.value-item--left .value-item__image {
	order: 1;
}

.value-item--left .value-item__content {
	order: 2;
}

.value-item--right .value-item__image {
	order: 2;
}

.value-item--right .value-item__content {
	order: 1;
}

.value-item__image {
	width: 100%;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.12);
	position: relative;
}

.value-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.value-item__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.1), rgba(6, 117, 46, 0.05));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--jbfarm-green);
	font-size: 64px;
	opacity: 0.3;
}

.value-item__content {
	padding: 0 20px;
}

.value-item__title {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 20px;
	line-height: 1.3;
}

.value-item__text {
	font-size: 17px;
	line-height: 1.75;
	color: var(--jbfarm-dark);
	margin: 0;
}

@media (max-width: 980px) {
	.about-who {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-who__header {
		position: static;
	}

	.mission-vision {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.value-item {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 60px;
	}

	.value-item--left .value-item__image,
	.value-item--right .value-item__image {
		order: 1;
	}

	.value-item--left .value-item__content,
	.value-item--right .value-item__content {
		order: 2;
	}

	.value-item__image {
		height: 300px;
	}
}

@media (max-width: 980px) {
	.primary-menu {
		gap: 16px;
	}

	.primary-menu > li > a {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.site-header__inner {
		flex-wrap: wrap;
	}

	.mobile-menu-toggle {
		display: flex;
		z-index: 102;
		margin-left: auto;
		order: 2;
	}

	.site-header__nav {
		position: relative;
		width: 100%;
		order: 3;
		flex-basis: 100%;
	}

	.site-header__actions {
		order: 1;
		margin-left: auto;
	}

	.primary-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
		border-radius: 12px;
		padding: 12px 0;
		margin: 0;
		display: none;
		z-index: 1000;
		max-height: calc(100vh - 100px);
		overflow-y: auto;
	}

	.primary-menu.active {
		display: flex;
	}

	.primary-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(6, 117, 46, 0.08);
	}

	.primary-menu > li:last-child {
		border-bottom: none;
	}

	.primary-menu > li > a,
	.primary-menu > li .menu-item-with-children {
		padding: 12px 20px;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.primary-menu > li .menu-item-with-children .menu-link {
		flex: 1;
		padding: 0;
	}

	.primary-menu .menu-toggle {
		display: block;
		padding: 8px;
		margin-left: 8px;
	}

	.primary-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		border-radius: 0;
		margin: 0;
		padding: 0;
		background: rgba(6, 117, 46, 0.04);
		display: none;
	}

	.primary-menu .sub-menu.active {
		display: block;
	}

	.primary-menu .sub-menu a {
		padding: 10px 20px 10px 40px;
	}
}

@media (max-width: 640px) {
	.about-hero {
		min-height: 50vh;
		border-radius: 0 0 24px 24px;
	}

	.about-hero__content {
		min-height: 50vh;
		padding: 0 18px 50px;
	}

	.about-section {
		padding: 60px 0;
	}

	.team-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* Contact Page */
.contact-hero {
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
}

.contact-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(6, 117, 46, 0.52) 0%, rgba(6, 117, 46, 0.47) 30%, rgba(6, 117, 46, 0.42) 60%, rgba(6, 117, 46, 0.22) 85%, transparent 100%);
}

.contact-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 18px 80px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 70vh;
}

.contact-hero__title {
	font-size: clamp(48px, 7vw, 80px);
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

.contact-section {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.02), #fff);
}

.contact-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.contact-intro__text {
	font-size: 18px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.85;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 12px 40px rgba(6, 117, 46, 0.1);
	backdrop-filter: blur(10px);
}

.contact-info__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 32px;
	position: relative;
	padding-bottom: 16px;
}

.contact-info__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 2px;
}

.contact-info__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.contact-info__item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 20px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid rgba(6, 117, 46, 0.08);
}

.contact-info__item:hover {
	transform: translateX(8px);
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
}

.contact-info__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	box-shadow: 0 6px 20px rgba(6, 117, 46, 0.25);
}

.contact-info__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-info__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--jbfarm-green-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-info__value {
	font-size: 16px;
	font-weight: 600;
	color: var(--jbfarm-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-info__value:hover {
	color: var(--jbfarm-green);
}

.contact-form-wrapper {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 12px 40px rgba(6, 117, 46, 0.1);
	backdrop-filter: blur(10px);
}

.contact-form__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 32px;
	position: relative;
	padding-bottom: 16px;
}

.contact-form__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 2px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--jbfarm-dark);
	margin-bottom: 4px;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid rgba(6, 117, 46, 0.15);
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	color: var(--jbfarm-dark);
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.2s ease;
	outline: none;
}

.form-input:focus,
.form-textarea:focus {
	border-color: var(--jbfarm-green);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(6, 117, 46, 0.1);
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.btn--contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.25);
	margin-top: 8px;
}

.btn--contact-submit:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.35);
}

.btn--contact-submit:active {
	transform: translateY(0);
}

.contact-map-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #fff, rgba(6, 117, 46, 0.02));
}

.contact-map {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(6, 117, 46, 0.15);
	border: 2px solid rgba(6, 117, 46, 0.1);
}

.contact-map iframe {
	display: block;
	width: 100%;
}

@media (max-width: 980px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-info,
	.contact-form-wrapper {
		padding: 32px;
	}
}

@media (max-width: 640px) {
	.contact-hero {
		min-height: 50vh;
		border-radius: 0 0 24px 24px;
	}

	.contact-hero__content {
		min-height: 50vh;
		padding: 0 18px 50px;
	}

	.contact-section,
	.contact-map-section {
		padding: 60px 0;
	}

	.contact-info,
	.contact-form-wrapper {
		padding: 24px;
	}

	.contact-info__item {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

	.contact-info__icon {
		margin: 0 auto;
	}
}

/* WPForms Styling */
.contact-form-wrapper .wpforms-container {
	margin: 0;
	padding: 0;
}

.contact-form-wrapper .wpforms-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-form-wrapper .wpforms-field {
	margin-bottom: 0;
}

.contact-form-wrapper .wpforms-field-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--jbfarm-dark);
	margin-bottom: 8px;
}

.contact-form-wrapper .wpforms-field input[type="text"],
.contact-form-wrapper .wpforms-field input[type="email"],
.contact-form-wrapper .wpforms-field input[type="tel"],
.contact-form-wrapper .wpforms-field input[type="url"],
.contact-form-wrapper .wpforms-field textarea,
.contact-form-wrapper .wpforms-field select {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid rgba(6, 117, 46, 0.15);
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	color: var(--jbfarm-dark);
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.2s ease;
	outline: none;
}

.contact-form-wrapper .wpforms-field input:focus,
.contact-form-wrapper .wpforms-field textarea:focus,
.contact-form-wrapper .wpforms-field select:focus {
	border-color: var(--jbfarm-green);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(6, 117, 46, 0.1);
}

.contact-form-wrapper .wpforms-field textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form-wrapper .wpforms-submit-container {
	margin-top: 8px;
}

.contact-form-wrapper .wpforms-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.25);
}

.contact-form-wrapper .wpforms-submit:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.35);
}

.contact-form-wrapper .wpforms-submit:active {
	transform: translateY(0);
}

.contact-form-wrapper .wpforms-field-error {
	border-color: #dc3545 !important;
}

.contact-form-wrapper .wpforms-error {
	color: #dc3545;
	font-size: 13px;
	margin-top: 6px;
}

.contact-form-wrapper .wpforms-success {
	background: rgba(6, 117, 46, 0.1);
	border: 2px solid var(--jbfarm-green);
	border-radius: 12px;
	padding: 16px;
	color: var(--jbfarm-green-dark);
	font-weight: 600;
	margin-bottom: 24px;
}

/* Products Page */
.products-hero {
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
}

.products-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(6, 117, 46, 0.5) 0%, rgba(6, 117, 46, 0.45) 30%, rgba(6, 117, 46, 0.4) 60%, rgba(6, 117, 46, 0.2) 85%, transparent 100%);
}

.products-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 18px 80px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 70vh;
}

.products-hero__title {
	font-size: clamp(48px, 7vw, 80px);
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

.products-section {
	padding: 80px 0;
}

.products-section--intro {
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.02), #fff);
}

.products-intro {
	text-align: center;
}

.products-intro__text {
	font-size: 18px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
	margin: 0 0 24px;
	opacity: 0.9;
}

.products-intro__text:last-child {
	margin-bottom: 0;
}

.products-section--categories {
	background: #fff;
}

.products-section__title {
	font-size: clamp(32px, 4vw, 42px);
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 48px;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
}

.products-section__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--jbfarm-green), var(--jbfarm-green-light));
	border-radius: 2px;
}

.products-categories {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	justify-items: center;
}

.products-categories .product-category-card {
	max-width: 280px;
	width: 100%;
}

/* Center last 3 items (5th, 6th, 7th) by placing them in columns 1, 2, 3 (centered) */
.products-categories .product-category-card:nth-child(5) {
	grid-column: 1;
}

.products-categories .product-category-card:nth-child(6) {
	grid-column: 2;
}

.products-categories .product-category-card:nth-child(7) {
	grid-column: 3;
}

.product-category-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 20px;
	padding: 32px 24px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.08);
	backdrop-filter: blur(10px);
}

.product-category-card:hover {
	transform: translateY(-8px);
	border-color: var(--jbfarm-green);
	box-shadow: 0 16px 40px rgba(6, 117, 46, 0.2);
}

.product-category-card__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.3);
	transition: transform 0.3s ease;
}

.product-category-card:hover .product-category-card__icon {
	transform: scale(1.1) rotate(5deg);
}

.product-category-card__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0;
	line-height: 1.4;
}

.products-section--faq {
	background: linear-gradient(180deg, #fff, rgba(6, 117, 46, 0.02));
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.faq-item:hover {
	border-color: var(--jbfarm-green);
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.12);
}

.faq-item__question {
	width: 100%;
	padding: 24px;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: inherit;
	transition: background 0.2s ease;
}

.faq-item__question:hover {
	background: rgba(6, 117, 46, 0.04);
}

.faq-item__question-text {
	font-size: 18px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	flex: 1;
	text-align: left;
}

.faq-item__icon {
	font-size: 16px;
	color: var(--jbfarm-green);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-item[aria-expanded="true"] .faq-item__icon {
	transform: rotate(180deg);
}

.faq-item__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	padding: 0 24px;
}

.faq-item__answer > * {
	min-height: 0;
}

.faq-item[aria-expanded="true"] .faq-item__answer {
	grid-template-rows: 1fr;
	padding: 0 24px 24px;
}

.faq-item__answer-content {
	padding: 0;
	font-size: 16px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	opacity: 0.85;
}

@media (max-width: 980px) {
	.products-categories {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.products-hero {
		min-height: 50vh;
		border-radius: 0 0 24px 24px;
	}

	.products-hero__content {
		min-height: 50vh;
		padding: 0 18px 50px;
	}

	.products-section {
		padding: 60px 0;
	}

	.products-categories {
		grid-template-columns: 1fr;
	}

	.faq-item__question {
		padding: 20px;
	}

	.faq-item__question-text {
		font-size: 16px;
	}

	.faq-item__answer-content {
		padding: 0 20px 20px;
		font-size: 15px;
	}
}

/* Category Page Styles */
.category-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
}

.category-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(6, 117, 46, 0.55) 0%, rgba(6, 117, 46, 0.5) 30%, rgba(6, 117, 46, 0.45) 60%, rgba(6, 117, 46, 0.25) 85%, transparent 100%);
	z-index: 1;
}

.category-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px 80px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 70vh;
}

.category-hero__title {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	margin: 0;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.category-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #fff, rgba(6, 117, 46, 0.02));
}

.brand-section {
	margin-bottom: 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.08);
	transition: all 0.3s ease;
}

.brand-section:hover {
	border-color: var(--jbfarm-green);
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
}

.brand-section:last-child {
	margin-bottom: 0;
}

.brand-section__header {
	width: 100%;
	padding: 28px 32px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	text-align: left;
	transition: background 0.3s ease;
}

.brand-section__header:hover {
	background: rgba(6, 117, 46, 0.04);
}

.brand-section__header:focus {
	outline: none;
}

.brand-section__title {
	font-size: 32px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0;
	position: relative;
	flex: 1;
}

.brand-section__icon {
	font-size: 20px;
	color: var(--jbfarm-green);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
}

.brand-section[aria-expanded="true"] .brand-section__icon {
	transform: rotate(180deg);
}

.brand-section__content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	padding: 0 32px;
}

.brand-section__content > * {
	min-height: 0;
}

.brand-section[aria-expanded="true"] .brand-section__content {
	grid-template-rows: 1fr;
	padding: 0 32px 32px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.product-card {
	background: #fff;
	border: 1px solid rgba(6, 117, 46, 0.12);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 20px rgba(6, 117, 46, 0.06);
	position: relative;
}

.product-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.02), rgba(6, 117, 46, 0.01));
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
	pointer-events: none;
}

.product-card:hover {
	transform: translateY(-8px);
	border-color: var(--jbfarm-green);
	box-shadow: 0 12px 40px rgba(6, 117, 46, 0.15);
}

.product-card:hover::before {
	opacity: 1;
}

.product-card__image {
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.product-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(6, 117, 46, 0.02) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.product-card:hover .product-card__image::after {
	opacity: 1;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 30px;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 1;
}

.product-card:hover .product-card__image img {
	transform: scale(1.08);
}

.product-card__content {
	padding: 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	background: #fff;
}

.product-card__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 16px;
	line-height: 1.4;
	letter-spacing: -0.01em;
}

.product-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.product-card__title a:hover {
	color: var(--jbfarm-green);
}

.product-card__excerpt,
.product-card__description {
	font-size: 15px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	opacity: 0.85;
	margin: 0 0 20px;
	flex: 1;
}

.product-card__description {
	max-height: none;
	overflow: visible;
}

.product-card__description p {
	margin: 0 0 16px;
}

.product-card__description p:last-child {
	margin-bottom: 0;
}

.product-card__description img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 16px 0;
	box-shadow: 0 4px 12px rgba(6, 117, 46, 0.1);
}

.product-card__description a {
	color: var(--jbfarm-green);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.product-card__description a:hover {
	color: var(--jbfarm-green-dark);
	text-decoration: underline;
}

.product-card__description h1,
.product-card__description h2,
.product-card__description h3,
.product-card__description h4 {
	color: var(--jbfarm-green-dark);
	margin: 20px 0 12px;
	font-weight: 700;
}

.product-card__description h1 {
	font-size: 24px;
}

.product-card__description h2 {
	font-size: 22px;
}

.product-card__description h3 {
	font-size: 20px;
}

.product-card__description h4 {
	font-size: 18px;
}

.product-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--jbfarm-green);
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.product-card__link:hover {
	color: var(--jbfarm-green-dark);
	gap: 12px;
}

.product-card__link i {
	transition: transform 0.3s ease;
}

.product-card__link:hover i {
	transform: translateX(4px);
}

.no-products {
	text-align: center;
	padding: 60px 20px;
	color: var(--jbfarm-dark);
	opacity: 0.6;
}

.category-cta {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	position: relative;
	overflow: hidden;
}

.category-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
	pointer-events: none;
}

.category-cta__content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}

.category-cta__title {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 20px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-cta__text {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin: 0 0 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn--cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: #fff;
	color: var(--jbfarm-green);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

.btn--cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.98);
	border-color: var(--jbfarm-green);
}

.btn--cta i {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.btn--cta:hover i {
	transform: translateX(4px);
}

@media (max-width: 980px) {
	.category-hero__title {
		font-size: 36px;
	}

	.brand-section__header {
		padding: 24px;
	}

	.brand-section__title {
		font-size: 24px;
	}

	.brand-section__content {
		padding: 0 24px;
	}

	.brand-section[aria-expanded="true"] .brand-section__content {
		padding: 0 24px 24px;
	}

	.products-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 28px;
	}

	.product-card__image {
		height: 280px;
	}

	.product-card__content {
		padding: 24px;
	}

	.product-card__title {
		font-size: 20px;
	}

	.category-cta__title {
		font-size: 32px;
	}
}

@media (max-width: 640px) {
	.category-hero {
		min-height: 50vh;
		border-radius: 0 0 24px 24px;
	}

	.category-hero__content {
		min-height: 50vh;
		padding: 0 20px 50px;
	}

	.category-hero__title {
		font-size: 28px;
	}

	.category-section {
		padding: 60px 0;
	}

	.brand-section {
		margin-bottom: 20px;
	}

	.brand-section__header {
		padding: 20px;
	}

	.brand-section__title {
		font-size: 20px;
	}

	.brand-section__icon {
		font-size: 16px;
	}

	.brand-section__content {
		padding: 0 20px;
	}

	.brand-section[aria-expanded="true"] .brand-section__content {
		padding: 0 20px 20px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.product-card {
		border-radius: 20px;
	}

	.product-card__image {
		height: 260px;
	}

	.product-card__image img {
		padding: 24px;
	}

	.product-card__content {
		padding: 24px 20px;
	}

	.product-card__title {
		font-size: 19px;
		margin-bottom: 12px;
	}

	.category-cta {
		padding: 60px 0;
	}

	.category-cta__title {
		font-size: 24px;
	}

	.category-cta__text {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.btn--cta {
		padding: 14px 28px;
		font-size: 16px;
	}
}

/* Supplements Page Styles */
.supplements-content {
	max-width: 900px;
	margin: 0 auto;
}

.supplements-intro {
	margin-bottom: 60px;
}

.supplements-intro__text {
	font-size: 18px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
	margin: 0 0 24px;
	opacity: 0.9;
}

.supplements-intro__text:last-child {
	margin-bottom: 0;
}

.supplements-cta {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 24px;
	padding: 50px 40px;
	display: flex;
	align-items: center;
	gap: 50px;
	box-shadow: 0 8px 32px rgba(6, 117, 46, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.supplements-cta:hover {
	border-color: var(--jbfarm-green);
	box-shadow: 0 12px 40px rgba(6, 117, 46, 0.15);
	transform: translateY(-4px);
}

.supplements-cta__logo {
	flex-shrink: 0;
	width: 200px;
	height: auto;
}

.supplements-cta__logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 4px 12px rgba(6, 117, 46, 0.1));
}

.supplements-cta__content {
	flex: 1;
}

.supplements-cta__title {
	font-size: 32px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 16px;
	line-height: 1.3;
}

.supplements-cta__text {
	font-size: 16px;
	line-height: 1.7;
	color: var(--jbfarm-dark);
	opacity: 0.8;
	margin: 0 0 28px;
}

.btn--supplements {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	box-shadow: 0 6px 20px rgba(6, 117, 46, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

.btn--supplements:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(6, 117, 46, 0.4);
	background: linear-gradient(135deg, var(--jbfarm-green-light), var(--jbfarm-green));
	color: #fff;
}

.btn--supplements i {
	font-size: 16px;
	transition: transform 0.3s ease;
}

.btn--supplements:hover i {
	transform: translateX(4px) translateY(-2px);
}

@media (max-width: 980px) {
	.supplements-cta {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px;
		gap: 30px;
	}

	.supplements-cta__logo {
		width: 150px;
	}

	.supplements-cta__title {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.supplements-intro {
		margin-bottom: 40px;
	}

	.supplements-intro__text {
		font-size: 16px;
		line-height: 1.8;
	}

	.supplements-cta {
		padding: 30px 20px;
		gap: 24px;
	}

	.supplements-cta__logo {
		width: 120px;
	}

	.supplements-cta__title {
		font-size: 24px;
		margin-bottom: 12px;
	}

	.supplements-cta__text {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.btn--supplements {
		padding: 14px 28px;
		font-size: 16px;
	}
}

/* Dental Program Page Styles */
.dental-intro {
	margin-bottom: 50px;
}

.dental-intro__text {
	font-size: 18px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.9;
}

.dental-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}

.dental-features__item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.08);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.dental-features__item:hover {
	border-color: var(--jbfarm-green);
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
	transform: translateY(-4px);
}

.dental-features__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 20px;
	position: relative;
	padding-bottom: 12px;
}

.dental-features__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--jbfarm-green), transparent);
	border-radius: 2px;
}

.dental-features__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dental-features__list li {
	margin-bottom: 16px;
	padding-left: 28px;
	position: relative;
}

.dental-features__list li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 0;
	color: var(--jbfarm-green);
	font-size: 16px;
}

.dental-features__list li:last-child {
	margin-bottom: 0;
}

.dental-features__list p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.85;
}

.dental-features__list strong {
	color: var(--jbfarm-green-dark);
	font-weight: 700;
}

.dental-conclusion {
	margin-bottom: 50px;
	text-align: center;
}

.dental-conclusion__text {
	font-size: 18px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.9;
	font-style: italic;
}

.dental-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.dental-gallery__item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.05), rgba(6, 117, 46, 0.02));
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.1);
	transition: all 0.3s ease;
}

.dental-gallery__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.2);
}

.dental-gallery__link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.dental-gallery__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dental-gallery__item:hover .dental-gallery__link img {
	transform: scale(1.1);
}

.dental-gallery__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.85), rgba(6, 117, 46, 0.75));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.dental-gallery__item:hover .dental-gallery__overlay {
	opacity: 1;
}

.dental-gallery__overlay i {
	font-size: 32px;
	color: #fff;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.dental-gallery__item:hover .dental-gallery__overlay i {
	transform: scale(1);
}

/* Dental Gallery Lightbox */
.jbfarm-dental-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	animation: fadeIn 0.2s ease;
}

.jbfarm-dental-lightbox-container {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jbfarm-dental-lightbox-image {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	cursor: default;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.jbfarm-dental-lightbox.loaded .jbfarm-dental-lightbox-image {
	opacity: 1;
}

.jbfarm-dental-lightbox-close {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10000000;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.8);
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	padding: 0;
	margin: 0;
}

.jbfarm-dental-lightbox-close:hover {
	background: rgba(0, 0, 0, 1);
	transform: scale(1.15);
	border-color: var(--jbfarm-green);
}

.jbfarm-dental-lightbox-close:active {
	transform: scale(1);
}

.jbfarm-dental-lightbox-close:focus {
	outline: 3px solid var(--jbfarm-green);
	outline-offset: 3px;
}

@media (max-width: 980px) {
	.dental-features {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.dental-gallery {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.dental-intro {
		margin-bottom: 40px;
	}

	.dental-intro__text {
		font-size: 16px;
		line-height: 1.8;
	}

	.dental-features {
		margin-bottom: 40px;
	}

	.dental-features__item {
		padding: 24px;
	}

	.dental-features__title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.dental-features__list li {
		margin-bottom: 12px;
	}

	.dental-features__list p {
		font-size: 15px;
	}

	.dental-conclusion {
		margin-bottom: 40px;
	}

	.dental-conclusion__text {
		font-size: 16px;
	}

	.dental-gallery {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 30px;
	}
}

/* Veterinary Program Page Styles */
.veterinary-intro {
	margin-bottom: 40px;
}

.veterinary-intro__subtitle {
	font-size: 32px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 20px;
	text-align: center;
}

.veterinary-intro__text {
	font-size: 18px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	margin: 0 0 30px;
	opacity: 0.9;
	text-align: center;
}

.veterinary-animals {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.veterinary-animals__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 24px 32px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.08);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	min-width: 140px;
}

.veterinary-animals__item:hover {
	border-color: var(--jbfarm-green);
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
	transform: translateY(-4px);
}

.veterinary-animals__item i {
	font-size: 36px;
	color: var(--jbfarm-green);
	transition: transform 0.3s ease;
}

.veterinary-animals__item:hover i {
	transform: scale(1.15) rotate(5deg);
}

.veterinary-animals__item span {
	font-size: 16px;
	font-weight: 600;
	color: var(--jbfarm-dark);
	text-transform: capitalize;
}

.veterinary-image {
	margin: 50px 0;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6, 117, 46, 0.15);
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.05), rgba(6, 117, 46, 0.02));
	padding: 20px;
}

.veterinary-image img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.1);
}

.veterinary-note {
	margin: 40px 0;
	padding: 24px 32px;
	background: linear-gradient(135deg, rgba(6, 117, 46, 0.08), rgba(6, 117, 46, 0.04));
	border-left: 4px solid var(--jbfarm-green);
	border-radius: 12px;
}

.veterinary-note__text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.9;
}

.veterinary-tests {
	margin-top: 50px;
}

.veterinary-tests__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.veterinary-tests__list li {
	padding: 16px 24px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
	border: 1px solid rgba(6, 117, 46, 0.1);
	border-radius: 10px;
	font-size: 15px;
	color: var(--jbfarm-dark);
	position: relative;
	padding-left: 44px;
	cursor: default;
	margin-bottom: 0;
}

.veterinary-tests__list li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--jbfarm-green);
	font-size: 14px;
}

@media (max-width: 980px) {
	.veterinary-intro__subtitle {
		font-size: 28px;
	}

	.veterinary-animals {
		gap: 16px;
	}

	.veterinary-animals__item {
		padding: 20px 24px;
		min-width: 120px;
	}

	.veterinary-animals__item i {
		font-size: 32px;
	}

	.veterinary-image {
		margin: 40px 0;
		padding: 16px;
	}

	.veterinary-tests__list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.veterinary-intro {
		margin-bottom: 30px;
	}

	.veterinary-intro__subtitle {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.veterinary-intro__text {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.veterinary-animals {
		gap: 12px;
		margin-top: 24px;
	}

	.veterinary-animals__item {
		padding: 16px 20px;
		min-width: 100px;
	}

	.veterinary-animals__item i {
		font-size: 28px;
	}

	.veterinary-animals__item span {
		font-size: 14px;
	}

	.veterinary-image {
		margin: 30px 0;
		padding: 12px;
	}

	.veterinary-note {
		margin: 30px 0;
		padding: 20px;
	}

	.veterinary-note__text {
		font-size: 15px;
	}

	.veterinary-tests {
		margin-top: 40px;
	}

	.veterinary-tests__list li {
		padding: 12px 16px;
		padding-left: 36px;
		font-size: 14px;
	}
}

/* Cosmetics Page Styles */
.cosmetics-intro {
	margin-bottom: 50px;
	text-align: center;
}

.cosmetics-intro__text {
	font-size: 20px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.9;
}

.cosmetics-intro__text strong {
	color: var(--jbfarm-green-dark);
	font-weight: 700;
}

.cosmetics-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}

.cosmetics-content__item {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	border: 2px solid rgba(6, 117, 46, 0.1);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.08);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.cosmetics-content__item:hover {
	border-color: var(--jbfarm-green);
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
	transform: translateY(-4px);
}

.cosmetics-content__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 20px;
	position: relative;
	padding-bottom: 16px;
}

.cosmetics-content__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--jbfarm-green), transparent);
	border-radius: 2px;
}

.cosmetics-content__text {
	font-size: 16px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.85;
}

.cosmetics-content__text strong {
	color: var(--jbfarm-green-dark);
	font-weight: 700;
}

.cosmetics-logo {
	margin: 60px 0;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(6, 117, 46, 0.15);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
	padding: 40px;
	border: 2px solid rgba(6, 117, 46, 0.1);
}

.cosmetics-logo img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	max-width: 600px;
	margin: 0 auto;
	display: block;
}

@media (max-width: 980px) {
	.cosmetics-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.cosmetics-content__item {
		padding: 32px;
	}

	.cosmetics-logo {
		padding: 30px;
	}
}

@media (max-width: 640px) {
	.cosmetics-intro {
		margin-bottom: 40px;
	}

	.cosmetics-intro__text {
		font-size: 18px;
		line-height: 1.8;
	}

	.cosmetics-content {
		margin-bottom: 40px;
	}

	.cosmetics-content__item {
		padding: 24px;
	}

	.cosmetics-content__title {
		font-size: 24px;
		margin-bottom: 16px;
		padding-bottom: 12px;
	}

	.cosmetics-content__text {
		font-size: 15px;
		line-height: 1.8;
	}

	.cosmetics-logo {
		margin: 40px 0;
		padding: 24px;
	}
}

/* Single Post/Product Page Styles */
.single-post-section {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.02), rgba(255, 255, 255, 0));
	min-height: 60vh;
}

.single-post {
	background: #fff;
	border-radius: 24px;
	padding: 60px;
	box-shadow: 0 8px 32px rgba(6, 117, 46, 0.08);
	max-width: 900px;
	margin: 0 auto;
}

.single-post__header {
	margin-bottom: 48px;
}

.single-post__title {
	font-size: 42px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 32px;
	line-height: 1.3;
}

.single-post__thumbnail {
	margin-bottom: 40px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.12);
}

.single-post__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.single-post__content {
	font-size: 18px;
	line-height: 1.9;
	color: var(--jbfarm-dark);
}

.single-post__content p {
	margin: 0 0 24px;
}

.single-post__content p:last-child {
	margin-bottom: 0;
}

.single-post__content h1,
.single-post__content h2,
.single-post__content h3,
.single-post__content h4,
.single-post__content h5,
.single-post__content h6 {
	color: var(--jbfarm-green-dark);
	margin: 40px 0 20px;
	font-weight: 700;
	line-height: 1.4;
}

.single-post__content h1 {
	font-size: 36px;
}

.single-post__content h2 {
	font-size: 32px;
}

.single-post__content h3 {
	font-size: 28px;
}

.single-post__content h4 {
	font-size: 24px;
}

.single-post__content ul,
.single-post__content ol {
	margin: 24px 0;
	padding-left: 32px;
}

.single-post__content li {
	margin-bottom: 12px;
	line-height: 1.8;
}

.single-post__content a {
	color: var(--jbfarm-green);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.single-post__content a:hover {
	color: var(--jbfarm-green-dark);
	text-decoration: underline;
}

.single-post__content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 32px 0;
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.1);
}

.single-post__content blockquote {
	border-left: 4px solid var(--jbfarm-green);
	padding: 20px 32px;
	margin: 32px 0;
	background: rgba(6, 117, 46, 0.05);
	border-radius: 8px;
	font-style: italic;
	color: var(--jbfarm-dark);
}

.single-post__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 32px 0;
	box-shadow: 0 2px 8px rgba(6, 117, 46, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.single-post__content table th,
.single-post__content table td {
	padding: 16px;
	text-align: left;
	border-bottom: 1px solid rgba(6, 117, 46, 0.1);
}

.single-post__content table th {
	background: var(--jbfarm-green);
	color: #fff;
	font-weight: 600;
}

.single-post__content table tr:last-child td {
	border-bottom: none;
}

.single-post__content table tr:nth-child(even) {
	background: rgba(6, 117, 46, 0.02);
}

/* WooCommerce Single Product Styles */
.woocommerce .single-post-section {
	padding: 60px 0;
}

.woocommerce .single-post {
	padding: 40px;
}

.woocommerce .single-post__title {
	font-size: 36px;
	margin-bottom: 24px;
}

@media (max-width: 980px) {
	.single-post-section {
		padding: 60px 0;
	}

	.single-post {
		padding: 40px 32px;
	}

	.single-post__title {
		font-size: 32px;
	}

	.single-post__content {
		font-size: 17px;
	}

	.single-post__content h1 {
		font-size: 28px;
	}

	.single-post__content h2 {
		font-size: 24px;
	}

	.single-post__content h3 {
		font-size: 22px;
	}
}

@media (max-width: 640px) {
	.single-post-section {
		padding: 40px 0;
	}

	.single-post {
		padding: 32px 20px;
		border-radius: 16px;
	}

	.single-post__title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.single-post__thumbnail {
		margin-bottom: 32px;
		border-radius: 12px;
	}

	.single-post__content {
		font-size: 16px;
		line-height: 1.8;
	}

	.single-post__content h1 {
		font-size: 24px;
	}

	.single-post__content h2 {
		font-size: 22px;
	}

	.single-post__content h3 {
		font-size: 20px;
	}

	.single-post__content ul,
	.single-post__content ol {
		padding-left: 24px;
	}

	.single-post__content blockquote {
		padding: 16px 20px;
		margin: 24px 0;
	}
}

/* WooCommerce Single Product - Clean Design */
.single-product-section {
	padding: 40px 0 80px;
	background: #fff;
}

.single-product-section .container {
	max-width: 1400px;
	padding: 0 40px;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
	margin-bottom: 30px;
	font-size: 14px;
	color: #666;
	padding: 0;
}

.woocommerce-breadcrumb a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
	color: var(--jbfarm-green);
}

.woocommerce-breadcrumb .delimiter {
	margin: 0 8px;
	color: #999;
}

.single-product-wrapper {
	width: 100%;
	position: relative;
}

/* Related products - below main product */
.single-product-section .related.products,
.single-product-section .woocommerce .related.products,
.single-product-section .container .related.products,
.single-product-section section.related.products {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
	width: 100%;
	clear: both;
	position: relative;
	display: block;
	height: auto;
	min-height: auto;
}

.woocommerce .single-post {
	max-width: 100%;
	padding: 0;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

.woocommerce div.product {
	display: block;
	margin-bottom: 80px;
	background: #fff;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	max-width: 100%;
}

.woocommerce div.product .woocommerce-product-gallery {
	margin-bottom: 0;
	position: relative;
	width: 100%;
}

/* Lightbox Close Button - Only show when lightbox is open */
.jbfarm-lightbox-close {
	position: fixed !important;
	top: 20px !important;
	right: 20px !important;
	z-index: 10000000 !important;
	width: 50px !important;
	height: 50px !important;
	background: rgba(0, 0, 0, 0.8) !important;
	border: 2px solid #fff !important;
	border-radius: 50% !important;
	color: #fff !important;
	font-size: 32px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	cursor: pointer !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
	padding: 0 !important;
	margin: 0 !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

/* Show close button only when lightbox is open */
body:has(.jbfarm-simple-lightbox) .jbfarm-lightbox-close,
.jbfarm-simple-lightbox .jbfarm-lightbox-close {
	display: flex !important;
}

.jbfarm-lightbox-close:hover {
	background: rgba(0, 0, 0, 1) !important;
	transform: scale(1.15) !important;
	border-color: var(--jbfarm-green) !important;
}

.jbfarm-lightbox-close:active {
	transform: scale(1) !important;
}

.jbfarm-lightbox-close:focus {
	outline: 3px solid var(--jbfarm-green) !important;
	outline-offset: 3px !important;
}

/* Simple Lightbox */
.jbfarm-simple-lightbox {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: rgba(0, 0, 0, 0.95) !important;
	z-index: 999999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	animation: fadeIn 0.2s ease !important;
}

.jbfarm-simple-lightbox.loaded {
	opacity: 1 !important;
}

.jbfarm-lightbox-container {
	position: relative !important;
	max-width: 90% !important;
	max-height: 90% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.jbfarm-lightbox-image {
	max-width: 100% !important;
	max-height: 90vh !important;
	object-fit: contain !important;
	cursor: default !important;
	opacity: 0 !important;
	transition: opacity 0.3s ease !important;
}

.jbfarm-simple-lightbox.loaded .jbfarm-lightbox-image {
	opacity: 1 !important;
}

/* Disable zoom on gallery images - make non-clickable */
.woocommerce-product-gallery__image a {
	cursor: default !important;
	pointer-events: auto !important;
	text-decoration: none !important;
}

.woocommerce-product-gallery__image img {
	cursor: default !important;
	pointer-events: none !important;
}

/* Disable WooCommerce zoom completely */
.woocommerce-product-gallery__image {
	pointer-events: auto !important;
}

.woocommerce-product-gallery__image .zoomImg,
.woocommerce-product-gallery__image .zoomContainer,
.woocommerce-product-gallery__image .zoomWindow {
	display: none !important;
	pointer-events: none !important;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Disable zoom on gallery images */
.woocommerce-product-gallery__image a {
	cursor: default !important;
	pointer-events: auto !important;
}

.woocommerce-product-gallery__image img {
	cursor: default !important;
	pointer-events: none !important;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
	display: block;
	width: 100%;
}

/* Hide thumbnails by default - show only if there are multiple images */
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
	display: none;
}

/* Main Image Container */
.woocommerce div.product .woocommerce-product-gallery__image {
	border-radius: 0;
	overflow: visible;
	background: #fff;
	box-shadow: none;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	position: relative;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
	border-radius: 0;
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	background: #fff;
	padding: 20px;
	max-width: 100%;
}

/* Sale Badge */
.woocommerce span.onsale {
	background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 8px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Stock Status */
.woocommerce div.product .stock {
	font-size: 16px;
	font-weight: 600;
	padding: 0;
	margin: 16px 0 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.woocommerce div.product .stock.in-stock {
	color: var(--jbfarm-green-dark);
}

.woocommerce div.product .stock.in-stock::before {
	content: '✓';
	color: var(--jbfarm-green);
	font-weight: 700;
	font-size: 18px;
}

.woocommerce div.product .stock.out-of-stock {
	color: #ee5a6f;
}

.woocommerce div.product .stock.out-of-stock::before {
	content: '✓';
	color: #ee5a6f;
	font-weight: 700;
	font-size: 18px;
}

.woocommerce div.product .summary {
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	padding-left: 0;
}

.woocommerce .related.products > h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 40px;
	text-align: left;
	position: relative;
	padding-bottom: 15px;
	border-bottom: 3px solid var(--jbfarm-green);
}

.woocommerce .related.products ul.products {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 0;
	list-style: none;
	padding: 0;
}

.woocommerce .related.products ul.products li.product {
	margin: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
	padding: 20px;
	background: #fff;
	border: 1px solid rgba(6, 117, 46, 0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.woocommerce .related.products ul.products li.product:hover {
	box-shadow: 0 4px 20px rgba(6, 117, 46, 0.1);
	border-color: var(--jbfarm-green);
}

.woocommerce .related.products ul.products li.product .woocommerce-loop-product__link {
	display: flex;
	align-items: center;
	gap: 30px;
	width: 100%;
	text-decoration: none;
}

.woocommerce .related.products ul.products li.product img {
	width: 150px;
	height: auto;
	flex-shrink: 0;
	border-radius: 8px;
}

.woocommerce .related.products ul.products li.product .woocommerce-loop-product__title {
	font-size: 20px;
	font-weight: 600;
	color: var(--jbfarm-dark);
	margin: 0 0 10px;
	line-height: 1.4;
}

.woocommerce .related.products ul.products li.product .button {
	margin-top: 15px;
}

.woocommerce div.product .product_title {
	font-size: 42px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 32px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	word-wrap: break-word;
	max-width: 100%;
}

/* Star Rating */
.woocommerce div.product .summary .star-rating {
	margin: 12px 0;
	font-size: 16px;
}

.woocommerce div.product .summary .woocommerce-review-link {
	font-size: 14px;
	color: var(--jbfarm-dark);
	opacity: 0.7;
	margin-left: 8px;
	text-decoration: none;
}

.woocommerce div.product .summary .woocommerce-review-link:hover {
	color: var(--jbfarm-green);
	opacity: 1;
}

.woocommerce div.product .price {
	font-size: 32px;
	font-weight: 700;
	color: var(--jbfarm-green);
	margin: 0 0 28px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.woocommerce div.product .price del {
	color: #999;
	font-size: 26px;
	font-weight: 500;
	opacity: 0.7;
}

.woocommerce div.product .price ins {
	text-decoration: none;
	color: var(--jbfarm-green);
}

.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 18px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	margin: 0 0 32px;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
	font-weight: 400;
}

.woocommerce div.product .woocommerce-product-details__short-description ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.woocommerce div.product .woocommerce-product-details__short-description ul li {
	padding: 10px 0;
	font-size: 18px;
	line-height: 1.7;
	position: relative;
	padding-left: 28px;
}

.woocommerce div.product .woocommerce-product-details__short-description ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--jbfarm-green);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.8;
}

.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

.woocommerce div.product form.cart {
	margin: 32px 0;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.woocommerce div.product form.cart .quantity {
	margin-right: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.woocommerce div.product form.cart .quantity label {
	font-weight: 600;
	color: var(--jbfarm-dark);
	font-size: 16px;
}

.woocommerce div.product form.cart .quantity input {
	width: 100px;
	padding: 12px 16px;
	border: 1px solid rgba(6, 117, 46, 0.2);
	border-radius: 6px;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	background: #fff;
}

.woocommerce div.product form.cart .quantity input:focus {
	outline: none;
	border-color: var(--jbfarm-green);
	box-shadow: 0 0 0 2px rgba(6, 117, 46, 0.1);
}

.woocommerce div.product form.cart .button {
	background: var(--jbfarm-green);
	color: #fff;
	padding: 18px 40px;
	border: none;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(6, 117, 46, 0.2);
	flex: 1;
	min-width: 220px;
	text-transform: none;
	letter-spacing: 0;
}

.woocommerce div.product form.cart .button:hover {
	background: var(--jbfarm-green-dark);
	box-shadow: 0 4px 16px rgba(6, 117, 46, 0.3);
}

.woocommerce div.product form.cart .button:active {
	transform: translateY(1px);
}



.woocommerce div.product .product_meta {
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid rgba(6, 117, 46, 0.1);
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 16px;
}

.woocommerce div.product .product_meta span {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 16px;
	color: var(--jbfarm-dark);
	line-height: 1.7;
}

.woocommerce div.product .product_meta span strong {
	font-weight: 600;
	color: var(--jbfarm-dark);
	min-width: 110px;
}

.woocommerce div.product .product_meta span a {
	color: var(--jbfarm-green);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.woocommerce div.product .product_meta span a:hover {
	color: var(--jbfarm-green-dark);
	text-decoration: underline;
}

.woocommerce div.product .woocommerce-tabs {
	margin-top: 50px;
	background: #fff;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	border-bottom: 2px solid var(--jbfarm-green);
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 0;
	flex-wrap: wrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 12px 24px;
	color: var(--jbfarm-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
	border-radius: 0;
	position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--jbfarm-green);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
	color: var(--jbfarm-green);
	background: rgba(6, 117, 46, 0.03);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover::before {
	transform: scaleX(1);
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--jbfarm-dark);
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-size: 24px;
	color: var(--jbfarm-green-dark);
	margin: 0 0 20px;
	font-weight: 600;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--jbfarm-green);
}

.woocommerce div.product .woocommerce-tabs .panel p {
	margin: 0 0 20px;
}

.woocommerce div.product .woocommerce-tabs .panel ul,
.woocommerce div.product .woocommerce-tabs .panel ol {
	margin: 20px 0;
	padding-left: 32px;
}

.woocommerce div.product .woocommerce-tabs .panel li {
	margin-bottom: 12px;
	line-height: 1.8;
}

@media (max-width: 980px) {
	.single-product-section {
		padding: 30px 0 40px;
	}

	.single-product-section .container {
		padding: 0 20px;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0;
	}

	.single-product-section .woocommerce .related.products {
		margin-top: 60px;
	}

	.woocommerce .related.products > h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.woocommerce .related.products ul.products li.product {
		flex-direction: column;
		text-align: center;
	}

	.woocommerce .related.products ul.products li.product .woocommerce-loop-product__link {
		flex-direction: column;
	}

	.woocommerce .related.products ul.products li.product img {
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}

	.woocommerce div.product .woocommerce-product-gallery__image img {
		padding: 20px;
	}

	.woocommerce div.product .product_title {
		font-size: 32px;
		margin-bottom: 24px;
	}

	.woocommerce div.product .price {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.woocommerce div.product .woocommerce-product-details__short-description {
		font-size: 17px;
		margin-bottom: 28px;
	}

	.woocommerce div.product .woocommerce-product-details__short-description ul li {
		font-size: 17px;
		padding: 8px 0;
	}

	.woocommerce div.product form.cart {
		margin: 20px 0;
	}

	.woocommerce div.product .woocommerce-tabs {
		margin-top: 40px;
	}

	.woocommerce div.product .woocommerce-tabs .panel h2 {
		font-size: 22px;
	}

	.woocommerce .related.products,
	.woocommerce .upsells.products {
		margin-top: 40px;
		padding-top: 30px;
	}

	.woocommerce .related.products > h2,
	.woocommerce .upsells.products > h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}
}

@media (max-width: 640px) {
	.single-product-section {
		padding: 24px 0 32px;
	}

	.single-product-section .container {
		padding: 0 16px;
	}

	.woocommerce-breadcrumb {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.woocommerce div.product {
		gap: 24px;
		padding: 0;
	}

	.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
		gap: 8px;
	}

	.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
		width: 60px;
	}

	.woocommerce div.product .woocommerce-product-gallery__image img {
		min-height: 350px;
		padding: 30px;
	}

	.woocommerce div.product .product_title {
		font-size: 28px;
		margin-bottom: 20px;
		line-height: 1.3;
	}

	.woocommerce div.product .price {
		font-size: 24px;
		margin-bottom: 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.woocommerce div.product .price del {
		font-size: 20px;
	}

	.woocommerce div.product .woocommerce-product-details__short-description {
		font-size: 16px;
		margin-bottom: 24px;
		line-height: 1.7;
	}

	.woocommerce div.product .woocommerce-product-details__short-description ul li {
		font-size: 16px;
		padding: 8px 0;
	}

	.woocommerce div.product form.cart {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin: 28px 0;
	}

	.woocommerce div.product form.cart .quantity {
		width: 100%;
		justify-content: space-between;
	}

	.woocommerce div.product form.cart .quantity label {
		font-size: 15px;
	}

	.woocommerce div.product form.cart .quantity input {
		width: 120px;
		font-size: 16px;
		padding: 12px;
	}

	.woocommerce div.product form.cart .button {
		width: 100%;
		padding: 16px 32px;
		font-size: 16px;
	}

	.woocommerce div.product .product_meta {
		grid-template-columns: 1fr;
		margin-top: 40px;
		padding-top: 28px;
	}

	.single-product-section .related.products,
	.single-product-section .woocommerce .related.products,
	.single-product-section .container .related.products {
		margin-top: 50px;
		display: block;
		height: auto;
	}

	.woocommerce .related.products > h2 {
		font-size: 24px;
		margin-bottom: 24px;
		padding-bottom: 10px;
	}

	.woocommerce .related.products ul.products {
		gap: 24px;
	}

	.woocommerce .related.products ul.products li.product {
		padding: 16px;
	}

	.woocommerce .related.products ul.products li.product img {
		max-width: 150px;
	}

	.woocommerce div.product .woocommerce-tabs {
		margin-top: 48px;
		padding: 24px 20px;
		border-radius: 16px;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs {
		flex-direction: column;
		gap: 4px;
		margin-bottom: 28px;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		width: 100%;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding: 14px 20px;
		border-radius: 8px;
		border-bottom: none;
		border-left: 3px solid transparent;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li a::before {
		display: none;
	}

	.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
	.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
		border-left-color: var(--jbfarm-green);
		background: rgba(6, 117, 46, 0.05);
	}

	.woocommerce div.product .woocommerce-tabs .panel {
		font-size: 16px;
		line-height: 1.8;
	}

	.woocommerce div.product .woocommerce-tabs .panel h2 {
		font-size: 24px;
		margin-bottom: 24px;
		padding-bottom: 12px;
	}
}

/* Product Custom Info (File and YouTube) */
.product-custom-info {
	margin: 48px 0;
	padding: 40px 0;
	border-top: 2px solid rgba(6, 117, 46, 0.1);
}

.product-custom-info__title {
	font-size: 28px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 24px;
}

/* Instruction File Download */
.product-instruction-file {
	margin-bottom: 40px;
}

.product-instruction-file__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(6, 117, 46, 0.2);
}

.product-instruction-file__link:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(6, 117, 46, 0.3);
	color: #fff;
}

.product-instruction-file__link i {
	font-size: 20px;
}

.product-instruction-file__link i.fa-download {
	margin-left: auto;
}

/* YouTube Video */
.product-youtube-video {
	margin-bottom: 40px;
}

.product-youtube-video:last-child {
	margin-bottom: 0;
}

.product-youtube-video__embed {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
	background: #000;
}

.product-youtube-video__embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

.product-youtube-video__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: #ff0000;
	color: #fff;
	text-decoration: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.product-youtube-video__link:hover {
	background: #cc0000;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
	color: #fff;
}

.product-youtube-video__link i {
	font-size: 24px;
}

@media (max-width: 980px) {
	.product-custom-info {
		margin: 40px 0;
		padding: 32px 0;
	}

	.product-custom-info__title {
		font-size: 24px;
	}

	.product-instruction-file__link,
	.product-youtube-video__link {
		font-size: 16px;
		padding: 14px 20px;
	}
}

@media (max-width: 640px) {
	.product-custom-info {
		margin: 32px 0;
		padding: 24px 0;
	}

	.product-custom-info__title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.product-instruction-file,
	.product-youtube-video {
		margin-bottom: 32px;
	}

	.product-instruction-file__link,
	.product-youtube-video__link {
		width: 100%;
		justify-content: center;
		font-size: 15px;
		padding: 12px 18px;
	}

	.product-youtube-video__embed {
		border-radius: 8px;
	}
}

/* WooCommerce Gallery Thumbnails */
.woocommerce div.product .woocommerce-product-gallery .flex-viewport {
	border-radius: 0;
	overflow: visible;
	width: 100%;
}

/* Keep default thumbnails hidden */
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
	display: none !important;
}

/* Upsells Products */
.woocommerce .upsells.products {
	margin-top: 50px;
	padding-top: 40px;
	border-top: 2px solid var(--jbfarm-green);
}

.woocommerce .upsells.products > h2 {
	font-size: 24px;
	font-weight: 600;
	color: var(--jbfarm-green-dark);
	margin: 0 0 24px;
	text-align: left;
	position: relative;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--jbfarm-green);
}

.woocommerce .upsells.products > h2::after {
	display: none;
}

.woocommerce .upsells.products ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin: 0;
	list-style: none;
}

.woocommerce .upsells.products ul.products li.product {
	margin: 0;
}

@media (max-width: 980px) {
	.woocommerce .upsells.products {
		margin-top: 60px;
		padding-top: 48px;
	}

	.woocommerce .upsells.products > h2 {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.woocommerce .upsells.products ul.products {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.woocommerce .upsells.products {
		margin-top: 48px;
		padding-top: 40px;
	}

	.woocommerce .upsells.products > h2 {
		font-size: 28px;
		margin-bottom: 32px;
	}

	.woocommerce .upsells.products ul.products {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* WooCommerce Category Archive Section */
.product-category-section {
	padding: 40px 0 80px;
	background: #fff;
}

.product-category-section .container {
	max-width: 1400px;
	padding: 0 40px;
}

.product-category-section .woocommerce-breadcrumb {
	margin-bottom: 30px;
	font-size: 14px;
	color: #666;
}

.product-category-section .woocommerce-breadcrumb a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-category-section .woocommerce-breadcrumb a:hover {
	color: var(--jbfarm-green);
}

.product-category-section .woocommerce-breadcrumb .delimiter {
	margin: 0 8px;
	color: #999;
}

/* Category Archive Header */
.woocommerce-products-header {
	margin-bottom: 40px;
}

.woocommerce-products-header__title {
	font-size: 42px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 20px;
	line-height: 1.3;
}

.woocommerce-products-header__description {
	font-size: 18px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	margin: 0;
}

/* Result Count and Ordering */
.product-category-section .woocommerce-result-count {
	font-size: 14px;
	color: #666;
	margin: 0;
	padding: 0;
}

.product-category-section .woocommerce-ordering {
	margin: 0;
	float: right;
}

.product-category-section .woocommerce-ordering select.orderby {
	padding: 10px 40px 10px 16px;
	border: 1px solid rgba(6, 117, 46, 0.2);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--jbfarm-dark);
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2306752e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
}

.product-category-section .woocommerce-ordering select.orderby:hover,
.product-category-section .woocommerce-ordering select.orderby:focus {
	border-color: var(--jbfarm-green);
	outline: none;
	box-shadow: 0 0 0 2px rgba(6, 117, 46, 0.1);
}

/* Products Toolbar (result count + ordering) */
.product-category-section .woocommerce-products-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(6, 117, 46, 0.1);
}

/* Flexbox wrapper for toolbar */
.product-category-section .woocommerce-before-shop-loop {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(6, 117, 46, 0.1);
	width: 100%;
	clear: both;
}

.product-category-section .woocommerce-before-shop-loop .woocommerce-result-count {
	margin: 0;
	flex: 0 0 auto;
}

.product-category-section .woocommerce-before-shop-loop .woocommerce-ordering {
	margin: 0;
	float: none;
	flex: 0 0 auto;
	margin-left: auto;
}

.product-category-section .woocommerce-result-count {
	margin: 0;
}

.product-category-section .woocommerce-ordering {
	float: none;
}

/* WooCommerce Shop/Archive Product Listing */
/* Remove ::before and ::after pseudo-elements */
.woocommerce .products ul::before,
.woocommerce .products ul::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.product-category-section .woocommerce ul.products::before,
.product-category-section .woocommerce ul.products::after,
.product-category-section ul.products::before,
.product-category-section ul.products::after {
	content: none !important;
	display: none !important;
}

.product-category-section .woocommerce ul.products,
.product-category-section ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin: 0;
	list-style: none;
	padding: 0;
	width: 100%;
	clear: both;
}

@media (max-width: 1200px) {
	.product-category-section .woocommerce ul.products,
	.product-category-section ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
	margin: 0;
	list-style: none;
	padding: 0;
}

/* Override for category section to ensure grid starts from beginning */
.product-category-section .woocommerce ul.products li.product:first-child {
	margin-left: 0;
	grid-column-start: 1;
}

.woocommerce ul.products li.product {
	margin: 0;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(6, 117, 46, 0.1);
	border-radius: 12px;
	padding: 20px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.woocommerce ul.products li.product:hover {
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.15);
	border-color: var(--jbfarm-green);
	transform: translateY(-4px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: block;
	text-decoration: none;
	color: inherit;
	margin-bottom: 16px;
}

.woocommerce ul.products li.product img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 16px;
	display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--jbfarm-dark);
	margin: 0 0 16px;
	line-height: 1.4;
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
	color: var(--jbfarm-green);
}

.woocommerce ul.products li.product .price {
	font-size: 20px;
	font-weight: 700;
	color: var(--jbfarm-green);
	margin: 16px 0;
}

.woocommerce ul.products li.product .price del {
	color: #999;
	font-size: 16px;
	opacity: 0.7;
	margin-right: 8px;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .button {
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	color: #fff;
	padding: 14px 28px;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(6, 117, 46, 0.2);
	margin-top: auto;
	display: block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
}

.woocommerce ul.products li.product .button:hover {
	background: linear-gradient(135deg, var(--jbfarm-green-dark), var(--jbfarm-green));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(6, 117, 46, 0.3);
	color: #fff;
	text-decoration: none;
}

.woocommerce ul.products li.product .button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(6, 117, 46, 0.2);
}

/* Specific styling for external product type button */
.woocommerce ul.products li.product .button.product_type_external {
	background: linear-gradient(135deg, var(--jbfarm-green), var(--jbfarm-green-light));
	font-weight: 700;
}

/* Pagination */
.product-category-section .woocommerce-pagination,
.woocommerce-pagination {
	margin-top: 60px;
	padding-top: 0;
	border-top: none;
	text-align: center;
	width: 100%;
}

.product-category-section .woocommerce-pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.product-category-section .woocommerce-pagination ul.page-numbers li,
.woocommerce-pagination ul.page-numbers li {
	margin: 0;
	list-style: none;
}

.product-category-section .woocommerce-pagination ul.page-numbers a,
.product-category-section .woocommerce-pagination ul.page-numbers span,
.woocommerce-pagination ul.page-numbers a,
.woocommerce-pagination ul.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	min-width: 44px;
	height: 44px;
	text-align: center;
	border: none;
	border-radius: 10px;
	color: var(--jbfarm-dark);
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	background: #f5f5f5;
	line-height: 1;
}

.product-category-section .woocommerce-pagination ul.page-numbers a:hover,
.woocommerce-pagination ul.page-numbers a:hover {
	background: var(--jbfarm-green);
	color: #fff;
	border: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(6, 117, 46, 0.3);
}

.product-category-section .woocommerce-pagination ul.page-numbers span.current,
.woocommerce-pagination ul.page-numbers span.current {
	background: var(--jbfarm-green);
	color: #fff;
	border: none !important;
	outline: none !important;
	font-weight: 700;
	cursor: default;
}

.product-category-section .woocommerce-pagination ul.page-numbers a.next,
.product-category-section .woocommerce-pagination ul.page-numbers a.prev,
.woocommerce-pagination ul.page-numbers a.next,
.woocommerce-pagination ul.page-numbers a.prev {
	padding: 12px 24px;
	min-width: auto;
	font-weight: 700;
}

.product-category-section .woocommerce-pagination ul.page-numbers a.next::after,
.product-category-section .woocommerce-pagination ul.page-numbers a.prev::before,
.woocommerce-pagination ul.page-numbers a.next::after,
.woocommerce-pagination ul.page-numbers a.prev::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
}

.product-category-section .woocommerce-pagination ul.page-numbers .dots,
.woocommerce-pagination ul.page-numbers .dots {
	border: none !important;
	background: transparent;
	color: #999;
	cursor: default;
	padding: 12px 8px;
}

/* Remove all borders from pagination */
.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul.page-numbers,
.product-category-section .woocommerce-pagination ul,
.product-category-section .woocommerce-pagination ul.page-numbers,
.woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
	border: none !important;
	border-right: none !important;
	border-left: none !important;
	border-top: none !important;
	border-bottom: none !important;
	border-width: 0 !important;
	border-style: none !important;
	border-color: transparent !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination ul.page-numbers li,
.product-category-section .woocommerce-pagination ul li,
.product-category-section .woocommerce-pagination ul.page-numbers li,
.woocommerce-pagination ul li,
.woocommerce-pagination ul.page-numbers li {
	border: none !important;
	border-right: none !important;
	border-left: none !important;
	border-top: none !important;
	border-bottom: none !important;
	border-width: 0 !important;
	border-style: none !important;
	border-color: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
	float: none !important;
	display: inline-block !important;
	overflow: visible !important;
}

.product-category-section .woocommerce-pagination ul.page-numbers a,
.product-category-section .woocommerce-pagination ul.page-numbers span,
.woocommerce-pagination ul.page-numbers a,
.woocommerce-pagination ul.page-numbers span,
.product-category-section .woocommerce-pagination ul.page-numbers li a,
.product-category-section .woocommerce-pagination ul.page-numbers li span,
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	border-width: 0 !important;
	border-style: none !important;
	border-color: transparent !important;
}

.product-category-section .woocommerce-pagination ul.page-numbers .dots:hover,
.woocommerce-pagination ul.page-numbers .dots:hover {
	background: transparent;
	border-color: transparent;
	transform: none;
	box-shadow: none;
}

@media (max-width: 980px) {
	.product-category-section {
		padding: 30px 0 60px;
	}

	.product-category-section .container {
		padding: 0 20px;
	}

	.woocommerce-products-header__title {
		font-size: 32px;
	}

	.woocommerce-products-header__description {
		font-size: 16px;
	}

	.product-category-section .woocommerce ul.products,
	.product-category-section ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 28px;
	}
}

@media (max-width: 640px) {
	.product-category-section {
		padding: 24px 0 40px;
	}

	.product-category-section .container {
		padding: 0 16px;
	}

	.woocommerce-breadcrumb {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.woocommerce-products-header,
	.product-category-section .woocommerce-before-shop-loop {
		margin-bottom: 30px;
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.product-category-section .woocommerce-before-shop-loop .woocommerce-ordering {
		margin-left: 0;
		width: 100%;
	}

	.woocommerce-products-header__title {
		font-size: 28px;
		margin-bottom: 16px;
		width: 100%;
	}

	.woocommerce-products-header__description {
		font-size: 15px;
	}

	.product-category-section .woocommerce-result-count {
		font-size: 13px;
		width: 100%;
		margin-bottom: 12px;
	}

	.product-category-section .woocommerce-ordering {
		width: 100%;
	}

	.product-category-section .woocommerce-ordering select.orderby {
		width: 100%;
		padding: 12px 40px 12px 16px;
	}

	.product-category-section .woocommerce ul.products,
	.product-category-section ul.products {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.woocommerce ul.products li.product {
		padding: 16px;
	}

	.woocommerce ul.products li.product .button {
		padding: 12px 20px;
		font-size: 14px;
		letter-spacing: 0.3px;
	}

	.product-category-section .woocommerce-pagination,
	.woocommerce-pagination {
		margin-top: 40px;
		padding-top: 0;
	}

	.product-category-section .woocommerce-pagination ul.page-numbers,
	.woocommerce-pagination ul.page-numbers {
		gap: 6px;
	}

	.product-category-section .woocommerce-pagination ul.page-numbers a,
	.product-category-section .woocommerce-pagination ul.page-numbers span,
	.woocommerce-pagination ul.page-numbers a,
	.woocommerce-pagination ul.page-numbers span {
		padding: 10px 14px;
		min-width: 40px;
		height: 40px;
		font-size: 13px;
	}

	.product-category-section .woocommerce-pagination ul.page-numbers a.next,
	.product-category-section .woocommerce-pagination ul.page-numbers a.prev,
	.woocommerce-pagination ul.page-numbers a.next,
	.woocommerce-pagination ul.page-numbers a.prev {
		padding: 10px 18px;
	}
}

/* Override WooCommerce columns width */
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
	width: 100% !important;
	float: none !important;
	clear: none !important;
	margin: 0 0 2.992em;
}

/* Pharmacy Locations Page */
.pharmacy-hero {
	min-height: 70vh;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
}

.pharmacy-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(6, 117, 46, 0.55) 0%, rgba(6, 117, 46, 0.5) 30%, rgba(6, 117, 46, 0.45) 60%, rgba(6, 117, 46, 0.25) 85%, transparent 100%);
}

.pharmacy-hero__content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px 80px;
	width: 100%;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: 70vh;
}

.pharmacy-hero__title {
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.02em;
}

.pharmacy-locations-section {
	padding: 80px 0;
	background: linear-gradient(180deg, rgba(6, 117, 46, 0.02), #fff);
}

.pharmacy-locations-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.pharmacy-locations-intro__text {
	font-size: 18px;
	line-height: 1.8;
	color: var(--jbfarm-dark);
	margin: 0;
	opacity: 0.85;
}

.pharmacy-locations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
}

.pharmacy-city-card {
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 8px 24px rgba(6, 117, 46, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pharmacy-city-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(6, 117, 46, 0.12);
}

.pharmacy-city-card__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--jbfarm-green-dark);
	margin: 0 0 24px;
	padding-bottom: 16px;
	border-bottom: 3px solid var(--jbfarm-green);
	position: relative;
}

.pharmacy-city-card__title::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--jbfarm-green-light);
}

.pharmacy-city-card__content {
	margin-top: 16px;
}

.pharmacy-city-card__no-data {
	font-size: 16px;
	color: rgba(15, 26, 18, 0.6);
	font-style: italic;
	margin: 0;
	padding: 12px 0;
}

.pharmacy-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pharmacy-list__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	background: rgba(6, 117, 46, 0.03);
	border-radius: 12px;
	transition: background 0.2s ease;
}

.pharmacy-list__item:hover {
	background: rgba(6, 117, 46, 0.08);
}

.pharmacy-list__icon {
	color: var(--jbfarm-green);
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.pharmacy-list__text {
	font-size: 15px;
	line-height: 1.6;
	color: var(--jbfarm-dark);
	flex: 1;
}

@media (max-width: 768px) {
	.pharmacy-hero {
		min-height: 50vh;
		border-radius: 0 0 24px 24px;
	}

	.pharmacy-hero__content {
		min-height: 50vh;
		padding: 0 18px 50px;
	}

	.pharmacy-locations-section {
		padding: 60px 0;
	}

	.pharmacy-locations-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.pharmacy-city-card {
		padding: 24px;
	}

	.pharmacy-city-card__title {
		font-size: 20px;
	}

	.pharmacy-locations-intro__text {
		font-size: 16px;
	}
}
