.delivery-v2 {
	font-family: "Montserrat", sans-serif;
	color: #1a1a1a;
	margin-bottom: 24px;
}

.delivery-v2__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.9fr) minmax(300px, 1fr);
	gap: 14px;
}

.delivery-v2__main,
.delivery-v2__tariffs {
	border: 1px solid #ececec;
	border-radius: 12px;
	background: #fff;
	padding: 16px;
}

.delivery-v2__subtitle {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	color: #171717;
}

.delivery-v2__main .delivery-v2__subtitle + .delivery-v2__text,
.delivery-v2__docs .delivery-v2__text {
	margin-top: 10px;
}

.delivery-v2__text {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.6;
	color: #4d4d4d;
}

.delivery-v2__text--small {
	font-size: 13px;
	line-height: 1.5;
	color: #5b5b5b;
}

.delivery-v2__notes {
	margin: 12px 0 0;
	padding-left: 18px;
}

.delivery-v2__note {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.5;
	color: #2f2f2f;
}

.delivery-v2__docs {
	margin-top: 18px;
}

.delivery-v2__doc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.delivery-v2__doc-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 38px;
	padding: 8px 16px;
	box-sizing: border-box;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	font-family: "Montserrat", sans-serif;
	color: #1f2937;
	text-align: center;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	background: #f9fafb;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	white-space: normal;
	word-break: break-word;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease,
		opacity 0.25s ease,
		transform 0.2s ease;
}

.delivery-v2__doc-link:hover {
	background: #ffffff;
	transform: translateY(-1px);
	border-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.delivery-v2__tariff-content {
	display: grid;
	gap: 6px;
	margin-top: 12px;
}

.delivery-v2__tariff-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 0;
	border-bottom: 1px solid #f2f2f2;
}

.delivery-v2__tariff-row:last-child {
	border-bottom: none;
}

.delivery-v2__tariff-label,
.delivery-v2__tariff-value {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

.delivery-v2__tariff-label {
	color: #444;
}

.delivery-v2__tariff-value {
	color: #1a1a1a;
	font-weight: 700;
	text-align: right;
}

.delivery-v2__tariff-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.delivery-v2__tariff-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 36px;
	padding: 7px 8px;
	border: 1px solid #e6e6e6;
	border-radius: 9px;
	background: #fff;
	color: #2d2d2d;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.delivery-v2__tariff-btn:hover {
	border-color: #ffcc33;
}

.delivery-v2__tariff-btn.is-active {
	background: #fff8e1;
	border-color: #ffcc33;
	color: #1a1a1a;
}

.delivery-v2__tariff-icon {
	width: 16px;
	height: 16px;
	display: inline-flex;
}

.delivery-v2__facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 14px;
}

.delivery-v2__fact {
	border: 1px solid #ececec;
	border-radius: 12px;
	background: #fff;
	padding: 12px;
	text-align: center;
}

.delivery-v2__fact-icon {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
	margin: 0 auto 8px;
}

.delivery-v2__fact-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: #3b3b3b;
}

@media (max-width: 1024px) {
	.delivery-v2__layout {
		grid-template-columns: 1fr;
	}

	.delivery-v2__tariff-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.delivery-v2__subtitle {
		font-size: 22px;
	}

	.delivery-v2__doc-grid,
	.delivery-v2__facts {
		grid-template-columns: 1fr;
	}

	.delivery-v2__tariff-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.delivery-v2__main,
	.delivery-v2__tariffs {
		padding: 13px;
	}

	.delivery-v2__tariff-list {
		grid-template-columns: 1fr;
	}
}
