/* ==========================================================================
   Food Shop — Static Pages Shared Styles
   ========================================================================== */

/* Override theme.css max-width on .site-main for food pages */
.site-main.food-page {
	max-width: 100% !important;
	padding-inline: 0 !important;
}

/* Page Hero */
.food-page-hero {
	background: linear-gradient(135deg, #2D8C3C 0%, #1a5e28 100%);
	color: #fff;
	padding: 48px 0;
	text-align: center;
}

.food-page-hero__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.food-page-hero__title {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #fff;
}

.food-page-hero__subtitle {
	font-size: 16px;
	margin: 0;
	opacity: 0.9;
}

.food-page-hero__breadcrumb {
	margin-top: 16px;
	font-size: 13px;
	opacity: 0.75;
}

.food-page-hero__breadcrumb a {
	color: #fff;
	text-decoration: none;
}

.food-page-hero__breadcrumb a:hover {
	text-decoration: underline;
}

/* Page Content Container */
.food-page__content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 48px 24px;
}

.food-page__content--narrow {
	max-width: 860px;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.food-page__section {
	max-width: 1400px;
	margin: 0 auto;
	padding: 56px 24px;
}

.food-page__section--narrow {
	max-width: 860px;
}

.food-page__section-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #222;
}

.food-page__section-text {
	font-size: 15px;
	line-height: 1.75;
	color: #555;
}

.food-page__section-text p {
	margin: 0 0 12px;
}

/* Updated date */
.food-page__updated {
	font-size: 13px;
	color: #888;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}

/* ==========================================================================
   Cards Grid
   ========================================================================== */

.food-page__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.food-page__card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: box-shadow 0.2s, transform 0.2s;
}

.food-page__card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.food-page__card-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	color: #2D8C3C;
}

.food-page__card-icon svg {
	width: 100%;
	height: 100%;
}

.food-page__card-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 8px;
	color: #222;
}

.food-page__card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.food-page__card-time {
	display: inline-block;
	margin-top: 12px;
	padding: 4px 12px;
	background: #e8f5e9;
	color: #2D8C3C;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
}

/* ==========================================================================
   Statistics Row
   ========================================================================== */

.food-page__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 32px;
	padding: 40px 0;
	border-top: 1px solid #eee;
}

.food-page__stat {
	text-align: center;
}

.food-page__stat-number {
	font-size: 36px;
	font-weight: 800;
	color: #2D8C3C;
	display: block;
}

.food-page__stat-label {
	font-size: 14px;
	color: #666;
	margin-top: 4px;
}

/* ==========================================================================
   Steps (Return Policy)
   ========================================================================== */

.food-page__steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 32px;
	counter-reset: step;
}

.food-page__step {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	position: relative;
	counter-increment: step;
}

.food-page__step::before {
	content: counter(step);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #2D8C3C;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	margin: 0 auto 16px;
}

.food-page__step-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 8px;
	color: #222;
}

.food-page__step-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.food-page__map {
	margin-top: 32px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #eee;
}

.food-page__map iframe {
	width: 100%;
	height: 400px;
	border: 0;
	display: block;
}

/* ==========================================================================
   Policy Content Sections
   ========================================================================== */

.food-page__policy-section {
	margin-bottom: 32px;
}

.food-page__policy-section:last-child {
	margin-bottom: 0;
}

.food-page__policy-title {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 12px;
	color: #222;
}

.food-page__policy-body {
	font-size: 15px;
	line-height: 1.75;
	color: #555;
}

.food-page__policy-body p {
	margin: 0 0 12px;
}

/* ==========================================================================
   About Page — Story Section (text + side image)
   ========================================================================== */
.food-about-story {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 20px;
}

.food-about-story__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.food-about-story__title {
	font-size: 32px;
	font-weight: 800;
	color: #222;
	margin: 0 0 20px;
	position: relative;
}

.food-about-story__title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #2D8C3C;
	border-radius: 2px;
	margin-top: 12px;
}

.food-about-story__body {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.food-about-story__body p {
	margin: 0 0 14px;
}

.food-about-story__image {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.food-about-story__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* ==========================================================================
   About Page — Values Section
   ========================================================================== */
.food-about-values {
	background: #f8f6f2;
	padding: 64px 0;
}

.food-about-values__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.food-about-values__header {
	text-align: center;
	margin-bottom: 40px;
}

.food-about-values__title {
	font-size: 32px;
	font-weight: 800;
	color: #222;
	margin: 0 0 12px;
}

.food-about-values__subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
	max-width: 600px;
	margin-inline: auto;
}

.food-about-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.food-about-values__card {
	background: #fff;
	border-radius: 12px;
	padding: 32px 24px;
	text-align: center;
	transition: box-shadow 0.3s, transform 0.3s;
	border: 1px solid #eee;
}

.food-about-values__card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.food-about-values__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	background: #e8f5e9;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2D8C3C;
}

.food-about-values__icon svg {
	width: 28px;
	height: 28px;
}

.food-about-values__card-title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	margin: 0 0 8px;
}

.food-about-values__card-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* ==========================================================================
   About Page — Stats Section
   ========================================================================== */
.food-about-stats {
	background: linear-gradient(135deg, #2D8C3C 0%, #1a5e28 100%);
	padding: 56px 0;
}

.food-about-stats__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.food-about-stats__item {
	text-align: center;
	color: #fff;
}

.food-about-stats__number {
	display: block;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 6px;
}

.food-about-stats__label {
	font-size: 15px;
	opacity: 0.85;
}

/* ==========================================================================
   About Page — Team Section
   ========================================================================== */
.food-about-team {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 20px;
}

.food-about-team__header {
	text-align: center;
	margin-bottom: 40px;
}

.food-about-team__title {
	font-size: 32px;
	font-weight: 800;
	color: #222;
	margin: 0 0 12px;
}

.food-about-team__subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.food-about-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.food-about-team__card {
	text-align: center;
	padding: 32px 20px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	transition: box-shadow 0.3s, transform 0.3s;
}

.food-about-team__card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.food-about-team__avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 16px;
	background: #f0ebe3;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #e8f5e9;
}

.food-about-team__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.food-about-team__name {
	font-size: 17px;
	font-weight: 700;
	color: #222;
	margin: 0 0 4px;
}

.food-about-team__role {
	font-size: 13px;
	color: #2D8C3C;
	font-weight: 600;
}

/* ==========================================================================
   About Page — Timeline Section
   ========================================================================== */
.food-about-timeline {
	background: #f8f6f2;
	padding: 64px 0;
}

.food-about-timeline__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.food-about-timeline__title {
	font-size: 32px;
	font-weight: 800;
	color: #222;
	text-align: center;
	margin: 0 0 48px;
}

.food-about-timeline__track {
	position: relative;
	padding-left: 40px;
}

.food-about-timeline__track::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #2D8C3C;
	border-radius: 2px;
}

.food-about-timeline__item {
	position: relative;
	margin-bottom: 32px;
}

.food-about-timeline__item:last-child {
	margin-bottom: 0;
}

.food-about-timeline__dot {
	position: absolute;
	left: -33px;
	top: 4px;
	width: 14px;
	height: 14px;
	background: #2D8C3C;
	border: 3px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 3px #2D8C3C;
}

.food-about-timeline__content {
	background: #fff;
	border-radius: 10px;
	padding: 20px 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.food-about-timeline__year {
	display: inline-block;
	padding: 3px 12px;
	background: #e8f5e9;
	color: #2D8C3C;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 8px;
}

.food-about-timeline__text {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

/* ==========================================================================
   About Page — CTA Banner
   ========================================================================== */
.food-about-cta {
	background: linear-gradient(135deg, #2D8C3C 0%, #1a5e28 100%);
	padding: 64px 0;
	text-align: center;
}

.food-about-cta__inner {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 20px;
}

.food-about-cta__title {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
}

.food-about-cta__text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 28px;
}

.food-about-cta__btn {
	display: inline-block;
	padding: 14px 36px;
	background: #fff;
	color: #2D8C3C;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.food-about-cta__btn:hover {
	background: #f0faf2;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	color: #2D8C3C;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
	.food-page__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.food-about-values__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.food-about-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.food-about-stats__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.food-page-hero {
		padding: 32px 0;
	}

	.food-page-hero__title {
		font-size: 26px;
	}

	.food-page-hero__subtitle {
		font-size: 14px;
	}

	.food-page__section {
		padding: 36px 16px;
	}

	.food-page__section-title {
		font-size: 22px;
	}

	.food-page__cards {
		grid-template-columns: 1fr;
	}

	.food-page__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.food-page__stat-number {
		font-size: 28px;
	}

	.food-page__steps {
		grid-template-columns: 1fr;
	}

	.food-page__map iframe {
		height: 280px;
	}

	.food-about-story__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.food-about-story__title {
		font-size: 26px;
	}

	.food-about-values__grid {
		grid-template-columns: 1fr;
	}

	.food-about-values__title,
	.food-about-team__title,
	.food-about-timeline__title,
	.food-about-cta__title {
		font-size: 24px;
	}

	.food-about-stats__number {
		font-size: 32px;
	}

	.food-about-team__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.food-about-story,
	.food-about-team {
		padding: 40px 16px;
	}

	.food-about-values,
	.food-about-stats,
	.food-about-timeline,
	.food-about-cta {
		padding: 40px 0;
	}
}

@media (max-width: 480px) {
	.food-page-hero__title {
		font-size: 22px;
	}

	.food-page__stats {
		grid-template-columns: 1fr 1fr;
	}

	.food-about-stats__inner {
		grid-template-columns: 1fr 1fr;
	}

	.food-about-team__grid {
		grid-template-columns: 1fr;
	}

	.food-about-team__avatar {
		width: 80px;
		height: 80px;
	}
}
