.aaf-product {
	align-items: center;
	background: #fff;
	border: 1px solid #dfe5e1;
	border-radius: 14px;
	box-shadow: 0 5px 18px rgba(25, 52, 40, 0.08);
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(150px, 220px) 1fr;
	margin: 28px 0;
	overflow: hidden;
	padding: 22px;
}

.aaf-product__image-link {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 180px;
}

.aaf-product__image {
	height: auto;
	max-height: 220px;
	max-width: 100%;
	object-fit: contain;
}

.aaf-product__content {
	min-width: 0;
}

.aaf-product__label {
	color: #24754a;
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.aaf-product__name {
	color: #17251e;
	display: block;
	font-size: 1.15rem;
	line-height: 1.35;
}

.aaf-product__hint {
	color: #435249;
	line-height: 1.55;
	margin: 10px 0;
}

.aaf-product__price {
	color: #17251e;
	font-size: 1.35rem;
	font-weight: 800;
	margin-top: 12px;
}

.aaf-product__delivery,
.aaf-product__merchant {
	color: #68756e;
	font-size: 0.82rem;
	margin-top: 2px;
}

.aaf-product__button {
	background: #24754a;
	border-radius: 8px;
	color: #fff !important;
	display: inline-block;
	font-weight: 700;
	margin-top: 16px;
	padding: 11px 18px;
	text-decoration: none !important;
	transition: background-color 0.15s ease-in-out;
}

.aaf-product__button:hover,
.aaf-product__button:focus {
	background: #185c38;
}

.aaf-product__disclaimer {
	color: #78837d;
	display: block;
	font-size: 0.72rem;
	line-height: 1.4;
	margin-top: 10px;
}

@media (max-width: 640px) {
	.aaf-product {
		grid-template-columns: 1fr;
		padding: 18px;
	}

	.aaf-product__image-link {
		min-height: 140px;
	}
}

