/* AVELOR — Повернення та обмін
 * Extension styles for the Returns page. Loaded AFTER avelor-shipping.css.
 * The page reuses every .sh-* class from shipping; this file only adds the
 * conditions checklist (.rt-checklist), the partner note (.rt-note), and
 * the law-pill (.rt-pill).
 */

.rt-checklist {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	border-top: 1px solid var(--avelor-line);
}

.rt-checklist li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 18px;
	align-items: baseline;
	padding: 16px 0;
	border-bottom: 1px solid var(--avelor-line);
}

.rt-checklist li .ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--avelor-deep-green);
	transform: translateY(2px);
}

.rt-checklist li .ic svg {
	width: 16px;
	height: 16px;
}

.rt-checklist li .t {
	font-size: 15px;
	line-height: 1.55;
	color: var(--fg-primary);
	letter-spacing: -0.005em;
}

/* Partner-of-service key/value note inside the «Перед оформленням» callout */
.rt-note {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	margin-top: 12px;
	font-size: 12px;
	color: var(--fg-muted);
	letter-spacing: 0.04em;
}

.rt-note .k {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--avelor-deep-green);
}

/* «Як подати заявку» sub-block in section 01 */
.rt-apply {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 12px;
}

.rt-apply-title {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--avelor-deep-green);
	margin: 0;
}

.rt-apply-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 2px 0 4px;
}

/* Plain dotted list (apply checklist in 01, exclusions in 05) */
.rt-plainlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rt-plainlist li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--fg-primary);
	letter-spacing: -0.005em;
}

.rt-plainlist li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 0.62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--avelor-deep-green);
}

/* «Згідно із законодавством України» pill in section 05 */
.rt-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border: 1px solid var(--avelor-line);
	border-radius: var(--radius-pill);
	background: var(--avelor-white);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--fg-secondary);
	margin-top: 4px;
	align-self: flex-start;
}

.rt-pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--avelor-deep-green);
}

@media (max-width: 1024px) {
	.rt-checklist li {
		grid-template-columns: 20px 1fr;
		gap: 12px;
	}

	.rt-checklist li .t {
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.rt-apply-btns {
		flex-direction: column;
		align-items: stretch;
	}
}

/* Returns page keeps two phone items — stretch them across the full row
   (the shared shipping grid is built for three). Mobile stacking ≤1024px
   from avelor-shipping.css stays as is. */
@media (min-width: 1025px) {
	.sh-help-grid { grid-template-columns: repeat(2, 1fr); }
}
