:root {
	--crlp-or-radius: 16px;
	--crlp-or-accent: var(--crlp-accent, #2E63F6);
	--crlp-or-accent-ink: var(--crlp-accent-ink, #FFFFFF);
	--crlp-or-ok: #10b77f;
	--crlp-or-warn: #f0b429;
	--crlp-or-line: #e6e9ee;
	--crlp-or-ink: #14161b;
	--crlp-or-muted: #616b7a;
}

.crlp-order-received {
	font-family: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--crlp-or-ink);
	max-width: 680px;
	margin: 0 auto;
	padding: 32px 16px;
}

.crlp-order-received__card {
	background: #fff;
	border: 1px solid var(--crlp-or-line);
	border-radius: var(--crlp-or-radius);
	overflow: hidden;
	box-shadow: 0 18px 50px -18px rgba(0, 0, 0, .08);
}

/* Cabeçalho */
.crlp-order-received__head {
	text-align: center;
	padding: 38px 24px 32px;
	background: linear-gradient(180deg, rgba(16,183,127,.08) 0%, rgba(16,183,127,.02) 100%);
	border-bottom: 1px solid var(--crlp-or-line);
}
.crlp-order-received__head.is-pending {
	background: linear-gradient(180deg, rgba(240,180,41,.08) 0%, rgba(240,180,41,.02) 100%);
}
.crlp-order-received__check {
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	color: var(--crlp-or-ok);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.crlp-order-received__head.is-pending .crlp-order-received__check {
	color: var(--crlp-or-warn);
}
.crlp-order-received__check svg { width: 100%; height: 100%; }
.crlp-order-received__title {
	font-size: 24px;
	font-weight: 800;
	margin: 0 0 6px;
	letter-spacing: -.02em;
}
.crlp-order-received__sub {
	font-size: 15px;
	color: var(--crlp-or-muted);
	margin: 0 0 14px;
}
.crlp-order-received__status {
	display: inline-block;
	background: var(--crlp-or-ok);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 6px 12px;
	border-radius: 999px;
}
.crlp-order-received__head.is-pending .crlp-order-received__status {
	background: var(--crlp-or-warn);
	color: #3d2e07;
}

/* Detalhes */
.crlp-order-received__details {
	padding: 22px 24px;
	border-bottom: 1px solid var(--crlp-or-line);
}
.crlp-order-received__section {
	padding: 22px 24px;
	border-bottom: 1px solid var(--crlp-or-line);
}
.crlp-order-received__section-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--crlp-or-muted);
	margin: 0 0 14px;
}
.crlp-order-received__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	padding: 7px 0;
	gap: 12px;
}
.crlp-order-received__row span:first-child { color: var(--crlp-or-muted); }
.crlp-order-received__row strong,
.crlp-order-received__row span:last-child { font-weight: 600; color: var(--crlp-or-ink); }
.crlp-order-received__row--total {
	font-size: 16px;
	font-weight: 800;
	padding-top: 12px;
	margin-top: 8px;
	border-top: 1px dashed var(--crlp-or-line);
}
.crlp-order-received__row--total span { color: var(--crlp-or-ink) !important; }

/* Itens */
.crlp-order-received__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f2f5;
}
.crlp-order-received__item:last-child { border-bottom: 0; padding-bottom: 0; }
.crlp-order-received__thumb {
	width: 54px;
	height: 54px;
	border-radius: 10px;
	object-fit: cover;
	background: #f0f2f5;
	flex: 0 0 auto;
}
.crlp-order-received__item-info { flex: 1; min-width: 0; }
.crlp-order-received__item-name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 2px;
}
.crlp-order-received__item-meta {
	font-size: 13px;
	color: var(--crlp-or-muted);
}
.crlp-order-received__item-price {
	font-size: 14px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

/* Totais */
.crlp-order-received__totals {
	padding: 16px 24px;
	background: #fafbfc;
	border-bottom: 1px solid var(--crlp-or-line);
}

/* Endereço */
.crlp-order-received__address {
	font-style: normal;
	font-size: 14px;
	line-height: 1.7;
	color: var(--crlp-or-ink);
}

/* Ações */
.crlp-order-received__actions {
	padding: 24px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.crlp-order-received__btn {
	flex: 1 1 180px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: filter .15s, transform .08s;
	background: var(--crlp-or-accent);
	color: var(--crlp-or-accent-ink);
	border: 0;
}
.crlp-order-received__btn:hover { filter: brightness(1.05); }
.crlp-order-received__btn--outline {
	background: #fff;
	color: var(--crlp-or-ink);
	border: 1px solid var(--crlp-or-line);
}
.crlp-order-received__btn--outline:hover { border-color: var(--crlp-or-accent); color: var(--crlp-or-accent); }

/* Estado inválido */
.crlp-order-received--invalid .crlp-order-received__head {
	background: linear-gradient(180deg, rgba(229,72,77,.08) 0%, rgba(229,72,77,.02) 100%);
}
.crlp-order-received--invalid .crlp-order-received__check { color: #e5484d; }

@media (max-width: 520px) {
	.crlp-order-received { padding: 16px 12px; }
	.crlp-order-received__head { padding: 28px 20px 24px; }
	.crlp-order-received__details,
	.crlp-order-received__section,
	.crlp-order-received__totals,
	.crlp-order-received__actions { padding-left: 20px; padding-right: 20px; }
}
