/**
 * Store features — bordered cards, icon, ornamental separator, text
 */

.noureldeing-store-features {
	background: var(--nd-white);
	padding: 0;
}

.noureldeing-store-features .wrap {
	max-width: var(--nd-container);
	margin-inline: auto;
	padding: 0;
}

.noureldeing-store-features__grid {
	display: grid;
	grid-template-columns: repeat(var(--nd-features-cols, 4), minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
}

.noureldeing-store-features__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	margin: 0;
	padding: 10px 15px 10px;
	text-align: center;
	background-color: var(--nd-cream);
	background-image:
		radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.55), transparent 62%),
		linear-gradient(180deg, #f9f3e8 0%, var(--nd-cream) 100%);
	border: 1px solid var(--nd-dark-green);
	border-radius: 10px;
	box-shadow: 0 10px 26px rgba(8, 64, 51, 0.08);
}

.noureldeing-store-features__icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 70px;
	margin: 0 0 6px;
}

.noureldeing-store-features__icon-wrap::before {
	content: "";
	position: absolute;
	top: 42%;
	left: 50%;
	width: 118px;
	height: 118px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 248, 228, 0.95) 0%, rgba(255, 248, 228, 0.35) 45%, transparent 72%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.noureldeing-store-features__icon-img {
	position: relative;
	z-index: 1;
	display: block;
	width: auto;
	max-width: 70px;
	max-height: 70px;
	height: auto;
	object-fit: contain;
	border: none;
	background: none;
	box-shadow: none;
}

.noureldeing-store-features__card-sep {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 0 6px;
}

.noureldeing-store-features__card-sep-line {
	flex: 1 1 0;
	height: 1px;
	min-width: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(8, 64, 51, 0.22) 22%,
		rgba(8, 64, 51, 0.22) 78%,
		transparent 100%
	);
}

.noureldeing-store-features__card-sep-icon {
	display: block;
	width: 16px;
	height: 16px;
	object-fit: contain;
	flex-shrink: 0;
}

.noureldeing-store-features__text {
	margin: 0;
	padding: 0 4px;
	font-family: var(--nd-font-heading);
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.55;
	color: var(--nd-dark-green);
}

@media (max-width: 900px) {
	.noureldeing-store-features__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.noureldeing-store-features__card {
		padding: 10px 10px 10px;
	}

	.noureldeing-store-features__icon-wrap {
		min-height: 60px;
	}

	.noureldeing-store-features__icon-img {
		max-width: 50px;
		max-height: 50px;
	}

	.noureldeing-store-features__text {
		font-size: 12px;
	}
}
