.payment-status-page {
	max-width: 820px;
	margin: 28px auto 50px;
}

.payment-status-hero {
	height: 230px;
	margin-bottom: 20px;
	border-radius: 22px;
	overflow: hidden;
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .07);
}

.payment-status-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(18, 28, 38, .78), rgba(18, 28, 38, .40) 55%, rgba(18, 28, 38, .08));
}

.payment-status-hero-panel {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	max-width: 620px;
	padding: 20px 24px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .14);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .22);
	color: #fff;
}

.payment-status-eyebrow {
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
}

.payment-status-hero h1 {
	margin: 0 0 7px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
}

.payment-status-hero-info {
	font-size: 15px;
	color: rgba(255, 255, 255, .9);
}

.payment-status-card {
	padding: 24px;
	background: #fff;
	border: 1px solid #e6e9ee;
	border-radius: 18px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.payment-status-message {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px;
	border-radius: 14px;
	border: 1px solid;
}

.payment-status-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.payment-status-title {
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2;
}

.payment-status-description {
	margin-top: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.payment-status-pending {
	background: #fffaf0;
	border-color: #f1dfb7;
	color: #8a6116;
}

.payment-status-pending .payment-status-icon {
	background: #fff3cd;
}

.payment-status-success {
	background: #f2fbf5;
	border-color: #cfe9d7;
	color: #087443;
}

.payment-status-success .payment-status-icon {
	background: #dcfce7;
}

.payment-status-error {
	background: #fff4f3;
	border-color: #f0d0cc;
	color: #b42318;
}

.payment-status-error .payment-status-icon {
	background: #fee4e2;
}

.payment-status-neutral {
	background: #f7f8fa;
	border-color: #e1e4e8;
	color: #475467;
}

.payment-status-neutral .payment-status-icon {
	background: #eaecf0;
}

.payment-status-date {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 18px;
	padding: 13px 15px;
	border-radius: 12px;
	background: #f8fafc;
	color: #344054;
	font-size: 14px;
}

.payment-status-date-label {
	color: #667085;
	font-weight: 600;
}

.payment-status-actions {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	padding: 24px;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.payment-status-actions .btn {
	width: 50%;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 10px;
}

@media (max-width: 640px) {
	.payment-status-page {
		margin: 18px auto 35px;
	}

	.payment-status-hero {
		height: 210px;
		border-radius: 18px;
	}

	.payment-status-hero-panel {
		left: 16px;
		right: 16px;
		bottom: 16px;
		padding: 18px;
	}

	.payment-status-hero h1 {
		font-size: 27px;
	}

	.payment-status-card {
		padding: 18px;
		border-radius: 16px;
	}

	.payment-status-message {
		align-items: flex-start;
		padding: 16px;
	}

	.payment-status-icon {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
	}

	.payment-status-title {
		font-size: 17px;
	}

	.payment-status-date {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.payment-status-actions {
		padding: 18px;
	}

	.payment-status-actions .btn {
		width: 100%;
	}
}
