* {
	box-sizing: border-box;
}
html,
body {
	max-width: 100vw;
	overflow-x: hidden;
	padding: 0;
	margin: 0;
}
p,
a,
h1,
h2,
h3,
h4,
span,
div,
li {
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

.state-fade-out {
	display: none;
	opacity: 0;
	transform: translateY(20px);
}
.state-fade-in {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
	animation: motion-rise-blend 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes motion-rise-blend {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.deal-card-wrap {
	background: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
	padding: clamp(24px, 5vw, 48px);
	margin: 0 auto 40px auto;
	width: 100%;
	max-width: 900px;
	overflow: hidden;
}
.deal-split-view {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 5vw, 48px);
	align-items: center;
}
.deal-media-aside {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f9fafb;
	border-radius: 16px;
	padding: 32px 20px;
}
.deal-details-aside {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.bullet-rows-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 24px 0 32px 0;
	text-align: left;
}
.bullet-row-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(14px, 4vw, 16px);
	font-weight: 600;
	color: #374151;
}
.bullet-row-marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #fef2f2;
	color: #cc0000;
	border-radius: 50%;
	font-size: 12px;
	flex-shrink: 0;
}
.action-trigger-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: linear-gradient(45deg, #185f48 0%, #1c7c42 50%, #239159 100%);
	color: #ffffff;
	font-size: clamp(16px, 4vw, 18px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 18px 24px;
	border-radius: 12px;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	border: none;
	cursor: pointer;
}
.action-trigger-link:hover {
	background: linear-gradient(45deg, #217a5d 0%, #1faa56 50%, #1bbd6b 100%);
	transform: translateY(-3px);
	box-shadow: 0 12px 24px #1faa56;
}
.warranty-block-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid #f3f4f6;
}

.showcase-layout-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}
@media (min-width: 768px) {
	.showcase-layout-grid {
		flex-direction: row;
		align-items: flex-start;
	}
	.showcase-visual-section {
		width: 45%;
		position: sticky;
		top: 40px;
	}
	.showcase-desc-section {
		width: 55%;
	}
}
@media (min-width: 768px) {
	.deal-split-view {
		flex-direction: row;
		align-items: stretch;
	}
	.deal-media-aside {
		width: 45%;
		padding: 40px 24px;
	}
	.deal-details-aside {
		width: 55%;
		text-align: left;
		justify-content: center;
	}
	.action-trigger-link {
		max-width: 340px;
	}
	.warranty-block-panel {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}
	.warranty-block-desc {
		flex: 1;
		padding-left: 20px;
	}
}

.bottom-nav-shortcuts a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.2s;
}
.bottom-nav-shortcuts a:hover {
	color: #ffffff;
	text-decoration: underline;
}
