.amf-choose,
.amf-choose * {
	box-sizing: border-box;
}

.amf-choose {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #faf8f3 0%, #f8f6f1 100%);
	padding: 50px 0;
	font-family: "Inter", Arial, sans-serif;
	color: #17392f;
}

.amf-choose__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

.amf-choose__heading-wrap {
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
}

.amf-choose__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	padding: 12px 34px;
	border: 2px solid #d3a54b;
	border-radius: 999px;
	background: #0b4c36;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: .02em;
	text-transform: uppercase;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.amf-choose__badge::before,
.amf-choose__badge::after {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid #d3a54b;
	border-radius: 50%;
	flex: 0 0 auto;
}

.amf-choose__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #dcb162;
	font-size: 17px;
	line-height: 1;
}

.amf-choose__badge-icon svg,
.amf-choose__divider-icon svg,
.amf-choose__feature-icon svg {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
}

.amf-choose__heading {
	margin: 28px 0 20px;
	color: #0b4b35;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(42px, 5vw, 76px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -.03em;
}

.amf-choose__divider {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0 0 24px;
}

.amf-choose__divider-line {
	display: inline-block;
	width: 96px;
	height: 2px;
	background: #d5a342;
}

.amf-choose__divider-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #d5a342;
	font-size: 20px;
	line-height: 1;
}

.amf-choose__description {
	max-width: 780px;
	margin: 0 auto;
	color: #333936;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
}

.amf-choose__description p {
	margin: 0;
}

.amf-choose__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	margin-top: 48px;
}

.amf-choose__feature-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 472px;
	padding: 26px 28px 30px;
	border: 1.8px solid #d8b56e;
	border-radius: 22px;
	background: rgba(255,255,255,.18);
	text-align: center;
	transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-color .28s ease;
}

.amf-choose__feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 36px rgba(22, 40, 31, .08);
	border-color: #c99a3f;
	background: rgba(255,255,255,.5);
}

.amf-choose__feature-icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 114px;
	height: 114px;
	margin: 0 auto 34px;
	border: 2px solid #d9b56d;
	border-radius: 50%;
	background: rgba(255,255,255,.24);
}

.amf-choose__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #114836;
	font-size: 40px;
	line-height: 1;
}

.amf-choose__feature-title {
	margin: 0;
	color: #133f30;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.18;
}

.amf-choose__feature-divider {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin: 18px 0 18px;
}

.amf-choose__feature-divider-line {
	display: inline-block;
	width: 28px;
	height: 2px;
	background: #d5a342;
}

.amf-choose__feature-divider-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #d5a342;
	transform: rotate(45deg);
}

.amf-choose__feature-desc {
	color: #4b4f4c;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.55;
}

.amf-choose__feature-leaf {
	position: absolute;
	left: 50%;
	bottom: 18px;
	width: 106px;
	height: 70px;
	transform: translateX(-50%);
	background: url('../images/am-food-why-card-leaf.svg') no-repeat center center / contain;
	pointer-events: none;
}

.amf-choose__decor {
	position: absolute;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
}

.amf-choose__decor--top-left {
	left: 0;
	top: 0;
	width: 240px;
	height: 290px;
	background-image: url('../images/am-food-why-top-left.svg');
}

.amf-choose__decor--top-right {
	right: 0;
	top: 0;
	width: 225px;
	height: 180px;
	background-image: url('../images/am-food-why-top-right.svg');
}

.amf-choose__decor--bottom-left {
	left: 0;
	bottom: 0;
	width: 280px;
	height: 180px;
	background-image: url('../images/am-food-why-bottom-left.svg');
}

.amf-choose__decor--bottom-right {
	right: 0;
	bottom: 0;
	width: 290px;
	height: 180px;
	background-image: url('../images/am-food-why-bottom-right.svg');
}

@media (max-width: 1200px) {
	.amf-choose__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.amf-choose__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.amf-choose {
		padding: 42px 0;
	}

	.amf-choose__container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.amf-choose__badge {
		min-height: 44px;
		padding: 10px 18px;
		font-size: 14px;
	}

	.amf-choose__badge::before,
	.amf-choose__badge::after {
		width: 12px;
		height: 12px;
	}

	.amf-choose__heading {
		margin-top: 20px;
		font-size: 38px;
	}

	.amf-choose__divider {
		gap: 12px;
	}

	.amf-choose__divider-line {
		width: 54px;
	}

	.amf-choose__description {
		font-size: 16px;
	}

	.amf-choose__features {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	.amf-choose__feature-card {
		min-height: 360px;
		padding-left: 22px;
		padding-right: 22px;
	}

	.amf-choose__feature-icon-circle {
		width: 96px;
		height: 96px;
		margin-bottom: 24px;
	}

	.amf-choose__feature-title {
		font-size: 22px;
	}

	.amf-choose__decor--top-left {
		width: 140px;
		height: 180px;
	}

	.amf-choose__decor--top-right,
	.amf-choose__decor--bottom-right,
	.amf-choose__decor--bottom-left {
		width: 140px;
		height: 110px;
	}
}


@media (max-width: 1024px) {
	.amf-choose__container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 767px) {
	.amf-choose__container {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Mobile-only correction: keep 4 feature cards as a 2x2 grid and slightly reduce icon circle only. */
@media (max-width: 767px) {
	.amf-choose__features {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.amf-choose__feature-card {
		min-width: 0;
	}

	.amf-choose__feature-icon-circle {
		width: 84px;
		height: 84px;
	}
}
