/**
 * Mishtam — trust band (highlights + wallet stripe)
 */

.ms-trust-band {
	position: relative;
	overflow: hidden;
	padding: var(--space-5) 0 var(--space-6);
	margin: var(--space-2) 0 var(--space-4);
}

.ms-trust-band__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ms-trust-band__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.55;
}

.ms-trust-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 251, 253, 0.92) 0%, rgba(255, 248, 250, 0.96) 45%, rgba(255, 255, 255, 0.98) 100%);
	pointer-events: none;
}

.ms-trust-band__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.ms-trust-band .ms-highlights {
	padding: 0;
	background: transparent;
}

.ms-trust-band .ms-promo-zone {
	padding: 0;
	background: transparent;
}

.ms-trust-band .ms-promo-zone .ms-container {
	padding-inline: var(--ms-container-x);
}

/* ===== Highlights — glass tiles ===== */
.ms-highlights__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-3);
}

.ms-highlights__tile {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	min-height: 76px;
	padding: var(--space-3) var(--space-4);
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: var(--ms-radius-lg);
	box-shadow:
		0 8px 24px rgba(212, 20, 106, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	transition: transform var(--ms-duration) var(--ms-ease), box-shadow var(--ms-duration) var(--ms-ease);
}

.ms-highlights__tile:hover {
	transform: translateY(-2px);
	box-shadow:
		0 12px 28px rgba(212, 20, 106, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ms-highlights__icon-wrap {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--ms-radius-md);
	color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ms-highlights__tile--schedule .ms-highlights__icon-wrap {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.ms-highlights__tile--delivery .ms-highlights__icon-wrap {
	background: linear-gradient(135deg, #e31c79 0%, #ff6b9d 100%);
}

.ms-highlights__tile--customers .ms-highlights__icon-wrap {
	background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.ms-highlights__tile--location .ms-highlights__icon-wrap {
	background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.ms-highlights__tile--secure .ms-highlights__icon-wrap {
	background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
}

.ms-highlights__tile--fresh .ms-highlights__icon-wrap {
	background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.ms-highlights__icon-wrap svg {
	width: 24px;
	height: 24px;
}

.ms-highlights__icon-img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.ms-highlights__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.ms-highlights__title {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--ms-text);
}

.ms-highlights__text {
	font-size: 12px;
	line-height: 1.4;
	color: var(--ms-text-muted);
}

@media (max-width: 1100px) {
	.ms-highlights__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ms-trust-band {
		padding-block: var(--space-4);
	}

	.ms-highlights__grid {
		grid-template-columns: 1fr;
		gap: var(--space-2);
	}

	.ms-highlights__tile {
		min-height: 68px;
		padding: var(--space-3);
	}
}

@media (min-width: 1101px) {
	.ms-highlights__grid:has(.ms-highlights__tile:nth-child(3)):not(:has(.ms-highlights__tile:nth-child(4))) {
		grid-template-columns: repeat(3, 1fr);
	}
}
