/* ===== Страница Доставка и оплата (dlv-*) ===== */
.delivery-page {
	padding: 40px 0 0;
}
.delivery-page h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 36px;
	letter-spacing: 1px;
}

/* Акцентный баннер */
.dlv-banner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 28px 32px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 16px;
	margin-bottom: 50px;
}
.dlv-banner__icon {
	flex-shrink: 0;
}
.dlv-banner__title {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 4px;
}
.dlv-banner__sub {
	display: block;
	font-size: 15px;
	opacity: 0.7;
}

/* Секции */
.dlv-section {
	margin-bottom: 50px;
}
.dlv-section__title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

/* Карточки способов доставки */
.dlv-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.dlv-card {
	padding: 28px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
}
.dlv-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 50%;
	margin-bottom: 16px;
}
.dlv-card__title {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}
.dlv-card__subtitle {
	font-size: 14px;
	opacity: 0.6;
	margin-bottom: 16px;
}
.dlv-card__list {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
}
.dlv-card__list li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid rgba(13,13,13,0.1);
	font-size: 14px;
}
.dlv-card__list li:last-child {
	border-bottom: none;
}
.dlv-card__list li strong {
	font-weight: 600;
}
.dlv-card__note {
	font-size: 13px;
	opacity: 0.6;
	margin: 0;
}
.dlv-card__note a {
	color: inherit;
	text-decoration: underline;
}
.dlv-disclaimer {
	font-size: 13px;
	opacity: 0.5;
	margin: 8px 0 0;
}
.dlv-cdek-logo {
	margin-top: 20px;
	opacity: 0.4;
}

/* Таблица стоимости */
.dlv-price-table {
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 12px;
}
.dlv-price-row {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(13,13,13,0.1);
}
.dlv-price-row:last-child {
	border-bottom: none;
}
.dlv-price-row--free {
	background: #0D0D0D;
	color: #F4EDDB;
}
.dlv-price-row__label {
	font-size: 16px;
	font-weight: 600;
	min-width: 140px;
}
.dlv-price-row__value {
	font-size: 15px;
}
.dlv-price-row__value span {
	font-size: 13px;
	opacity: 0.6;
}

/* Способы оплаты */
.dlv-pay-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.dlv-pay-card {
	padding: 28px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
}
.dlv-pay-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 50%;
	margin-bottom: 16px;
}
.dlv-pay-card h3 {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}
.dlv-pay-card p {
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 12px;
}
.dlv-pay-card__badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.dlv-badge {
	display: inline-block;
	padding: 6px 14px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 60px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.dlv-pay-card__secure {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px !important;
	opacity: 0.6;
}
.dlv-pay-card__secure svg {
	flex-shrink: 0;
	margin-top: 1px;
}

/* Шаги оформления */
.dlv-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.dlv-step {
	text-align: center;
	padding: 24px 16px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
}
.dlv-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: #0D0D0D;
	color: #F4EDDB;
	border-radius: 50%;
	font-size: 20px;
	font-weight: 600;
	margin: 0 auto 12px;
}
.dlv-step h3 {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
}
.dlv-step p {
	font-size: 13px;
	line-height: 1.5;
	opacity: 0.7;
	margin: 0;
}

/* Упаковка */
.dlv-packing__text p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 16px;
}
.dlv-packing__gift {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 16px 20px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 12px;
	font-size: 14px !important;
}
.dlv-packing__gift svg {
	flex-shrink: 0;
	margin-top: 2px;
}
.dlv-packing__gift a {
	color: inherit;
	text-decoration: underline;
}

/* FAQ аккордеон */
.dlv-accordion__item {
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
}
.dlv-accordion__item summary {
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}
.dlv-accordion__item summary::-webkit-details-marker {
	display: none;
}
.dlv-accordion__item summary::after {
	content: '+';
	font-size: 22px;
	font-weight: 300;
	transition: transform 0.2s;
}
.dlv-accordion__item[open] summary::after {
	transform: rotate(45deg);
}
.dlv-accordion__item[open] summary {
	background: #0D0D0D;
	color: #F4EDDB;
}
.dlv-accordion__body {
	padding: 16px 24px 20px;
}
.dlv-accordion__body p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}
.dlv-accordion__body a {
	color: inherit;
	text-decoration: underline;
}

/* Контактный блок */
.dlv-contact {
	text-align: center;
}
.dlv-contact__sub {
	font-size: 16px;
	opacity: 0.6;
	margin-bottom: 24px;
}
.dlv-contact__grid {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.dlv-contact__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 60px;
	text-decoration: none;
	color: #0D0D0D;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}
.dlv-contact__item:hover {
	background: #0D0D0D;
	color: #F4EDDB;
	transform: translateY(-2px);
}
.dlv-contact__hours {
	font-size: 14px;
	opacity: 0.5;
}

/* Юридическая информация */
.dlv-legal {
	text-align: center;
	padding: 30px 0 40px;
	border-top: 1px solid rgba(13,13,13,0.15);
}
.dlv-legal p {
	font-size: 13px;
	opacity: 0.5;
	margin: 4px 0;
}
.dlv-legal a {
	color: inherit;
	text-decoration: underline;
}

/* Адаптив планшет */
@media (max-width: 900px) {
	.dlv-cards {
		grid-template-columns: 1fr;
	}
	.dlv-pay-grid {
		grid-template-columns: 1fr;
	}
	.dlv-steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Адаптив мобильный */
@media (max-width: 600px) {
	.delivery-page {
		padding: 24px 0 0;
	}
	.delivery-page h1 {
		font-size: 26px;
		margin-bottom: 24px;
	}
	.dlv-section__title {
		font-size: 20px;
	}
	.dlv-banner {
		flex-direction: column;
		text-align: center;
		padding: 24px 20px;
	}
	.dlv-banner__title {
		font-size: 16px;
	}
	.dlv-steps {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.dlv-step {
		padding: 18px 12px;
	}
	.dlv-price-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 16px 20px;
	}
	.dlv-contact__item {
		width: 100%;
		justify-content: center;
	}
	.dlv-accordion__item summary {
		padding: 14px 18px;
		font-size: 15px;
	}
	.dlv-accordion__body {
		padding: 12px 18px 16px;
	}
}
