.sr-unit {
	--sr-button-color: #138a00;
	--sr-text: var(--improve-text, #161b22);
	--sr-muted: var(--improve-muted, #667085);
	--sr-border: var(--improve-border, #d0d5dd);
	--sr-surface: var(--improve-surface, #ffffff);
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	color: var(--sr-text);
	text-align: center;
}

.sr-unit__media {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	margin-bottom: -34px;
}

.sr-unit__image {
	display: block;
	width: auto;
	max-width: 118px;
	max-height: 112px;
	object-fit: contain;
	filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.2));
}

.sr-unit__box {
	box-sizing: border-box;
	width: 100%;
	padding: 48px 16px 18px;
	border: 1px solid var(--sr-border);
	background: var(--sr-surface);
	text-align: center;
}

.sr-unit__heading,
.sr-unit__store,
.sr-unit__offer,
.sr-unit__note {
	margin: 0;
	line-height: 1.35;
}

.sr-unit__heading {
	font-size: 1.12rem;
	font-weight: 800;
}

.sr-unit__store {
	margin-top: 18px;
	color: var(--sr-muted);
	text-decoration: line-through;
	text-decoration-thickness: 2px;
}

.sr-unit__offer {
	margin-top: 18px;
	font-size: 1.08rem;
	font-weight: 800;
}

.sr-unit__note {
	margin-top: 14px;
	color: var(--sr-muted);
	font-size: 0.86rem;
}

.sr-unit__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	max-width: 100%;
	min-height: 44px;
	margin-top: 18px;
	padding: 10px 28px;
	border-radius: 12px;
	background: var(--sr-button-color);
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.58);
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none;
	transition: transform 0.16s ease, filter 0.16s ease;
}

.sr-unit__button:hover,
.sr-unit__button:focus {
	color: #fff;
	filter: brightness(1.08);
	text-decoration: none;
	transform: translateY(-1px);
}

.sr-unit__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

html[data-theme="dark"] .sr-unit {
	--sr-surface: #10141a;
}

@media (max-width: 420px) {
	.sr-unit__box {
		padding-right: 12px;
		padding-left: 12px;
	}

	.sr-unit__button {
		width: 100%;
		min-width: 0;
	}
}

