

/* Start:/payment-and-delivery/style.css?177832218012653*/
/* ===== Цветовые переменные (из rosveb.css) ===== */
.pd-page {
    --pd-brown:        #8C7265;
    --pd-brown-dark:   #694F44;
    --pd-brown-deeper: #5F4E3F;
    --pd-brown-black:  #3D3734;
    --pd-beige-1:      #F9F6F3;
    --pd-beige-2:      #FAF3ED;
    --pd-beige-3:      #F4EEE8;
    --pd-beige-soft:   #E3D8CC;
    --pd-beige-mid:    #E3CCC0;
    --pd-brown-mid:    #A88E80;
    --pd-green:        #82A828;
    --pd-red:          #DA2E0E;
    --pd-text:         #424242;
    --pd-text-brown:   #867769;
    --pd-white:        #ffffff;
    --pd-shadow:       0 2px 14px rgba(61,55,52,0.09);
    --pd-radius-lg:    20px;
    --pd-radius:       10px;

    font-family: 'Roboto', Arial, sans-serif;
    color: var(--pd-text);
    line-height: 1.6;
}

/* ===== Hero ===== */
.pd-hero {
    background: url(/upload/img/bg-black.webp) repeat center center;
    color: var(--pd-white);
    border-radius: var(--pd-radius-lg);
    padding: 36px 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
/* .pd-hero::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.pd-hero::after {
    content: '';
    position: absolute;
    bottom: -70px; left: 25%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
} */
.pd-hero__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 22px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}
.pd-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    position: relative;
    z-index: 1;
	justify-content: space-between;
}
.pd-hero__fact {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pd-hero__fact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-hero__fact-icon svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255,255,255,0.9);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pd-hero__fact-text strong {
    display: block;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.15;
}
.pd-hero__fact-text span {
    font-size: 16px;
    opacity: 0.7;
    font-weight: 400;
}
.pd-hero__note {
    margin-top: 20px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
    line-height: 1.6;
	color: #c9a48d;
}

/* ===== Заголовки секций ===== */
.pd-section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--pd-brown-dark);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pd-section-title .pd-icon {
    width: 52px;
    height: 52px;
    background: var(--pd-beige-3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-section-title .pd-icon svg {
    width: 27px;
    height: 27px;
    stroke: var(--pd-brown);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== Белые секции ===== */
.pd-section {
    margin: 100px 0px;
}

/* ===== Карточки-преимущества ===== */
.pd-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.pd-feature-card {
    background: #FAF3ED;
    padding: 22px 20px;
    transition: all 0.25s ease;
	border: 1px solid #F4EEE8;
	border-radius: 20px;
}

.pd-feature-card:hover {
	transform: translateY(-4px);
}

.pd-feature-card__icon {
    width: 42px;
    height: 42px;
	background: #ffffff;
	box-shadow: 0 5px 12px 0px rgb(0 0 0 / 10%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pd-feature-card__icon svg {
    width: 21px;
    height: 21px;
    stroke: var(--pd-brown-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pd-feature-card__title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 7px;
    color: var(--pd-brown-dark);
	line-height: 120%;
}
.pd-feature-card__text {
    font-size: 16px;
    color: var(--pd-text-brown);
    line-height: 1.55;
}
.pd-feature-card__text strong {
    color: var(--pd-brown-dark);
	white-space: nowrap;
}

/* ===== Таблица цен ===== */
.pd-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    margin-top: 4px;
    border-radius: var(--pd-radius);
    overflow: hidden;
}
.pd-price-table th {
    background: var(--pd-brown-dark);
    color: var(--pd-white);
    text-align: left;
    padding: 11px 16px;
    font-weight: 600;
    font-size: 16px;
}
.pd-price-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--pd-beige-3);
    vertical-align: top;
    color: var(--pd-text);
    line-height: 1.5;
}
.pd-price-table tr:nth-child(even) td { background: var(--pd-beige-1); }
.pd-price-table tr:last-child td { border-bottom: none; }
.pd-price-table .pd-free {
    color: var(--pd-green);
    font-weight: 600;
}
.pd-price-table .pd-price-val {
    font-weight: 600;
    color: var(--pd-brown-dark);
    white-space: nowrap;
}

/* ===== Список ===== */
.pd-list {
    list-style: none;
	padding: 0 70px 0 30px;
    margin: 0;
    margin-left: 0 !important;
}
.pd-list li {
    padding: 9px 0 9px 43px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #E8E7E6;
    line-height: 1.55;
    color: var(--pd-text);
}
.pd-list li:last-child { border-bottom: none; }
.pd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: #694f44;
    border-radius: 50%;
}
.pd-list li::after {
    content: '';
	position: absolute;
	left: 6px;
	top: 16px;
	width: 12px;
	height: 6px;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate(-45deg);
}

/* ===== Способы оплаты ===== */
.pd-payment-methods {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.pd-payment-card {
    display: flex;
	align-items: flex-start;
    gap: 20px;
	background: #FAF3ED;
    padding: 16px 20px;
    flex: 1;
    min-width: 210px;
    text-decoration: none;
    color: var(--pd-text);
    transition: all 0.2s;
	border: 1px solid #F4EEE8;
	border-radius: 20px;
}

.pd-payment-card:hover {
	transform: translateY(-4px);
}

.pd-payment-card__icon {
    width: 42px;
	height: 42px;
	background: #ffffff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 5px 12px 0px rgb(0 0 0 / 10%);
}

.pd-payment-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--pd-brown-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pd-payment-card__title {
    font-weight: 600;
    font-size: 19px;
    color: var(--pd-brown-dark);
	line-height: 120%;
}
.pd-payment-card__sub {
    font-size: 16px;
    color: var(--pd-text-brown);
}

/* ===== Блок возврата highlight ===== */
.pd-return-highlight {
    background: var(--pd-beige-2);
    border-left: 4px solid var(--pd-brown);
    border-radius: 0 var(--pd-radius) var(--pd-radius) 0;
    padding: 15px 20px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
    color: var(--pd-brown-dark);
    line-height: 1.5;
}

/* ===== Сетка доп. условий ===== */
.pd-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pd-info-item {
	background: #FAF3ED;
	padding: 26px 36px;
    font-size: 16px;
    color: var(--pd-text-brown);
    line-height: 1.4;
	border: 1px solid #F4EEE8;
	border-radius: 20px;
}
.pd-info-item strong {
    display: block;
    color: var(--pd-brown-dark);
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 600;
}

/* ===== Предупреждение о мошенниках ===== */
.pd-warning {
    background: url(/upload/img/bg-black.webp) repeat center center;
    border-radius: var(--pd-radius-lg);
	padding: 36px 40px;
    margin-bottom: 20px;
    color: var(--pd-white);
    position: relative;
    overflow: hidden;
}

.pd-warning__title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--pd-white);
}
.pd-warning__title-icon {
    width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pd-warning__title-icon svg {
    width: 22px;
	height: 22px;
	stroke: rgba(255, 255, 255, 0.9);
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.pd-warning__text {
    font-size: 16px;
    line-height: 1.65;
	color: #c9a48d;
    position: relative;
    z-index: 1;
    margin: 0;
}
.pd-warning__text + .pd-warning__text {
    margin-top: 10px;
}
.pd-warning__text strong {
    color: #ffffffdb;
}

/* ===== CTA ===== */
.pd-cta {
    background: #FAF3ED;
    padding: 28px 32px;
    text-align: center;
    margin-bottom: 20px;
	border: 1px solid #F4EEE8;
	border-radius: 20px;
}
.pd-cta__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--pd-brown-dark);
    margin-bottom: 18px;
}
.pd-cta__phones {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.pd-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
	background: #694f44;
    border-radius: 40px;
    padding: 11px 26px;
    font-size: 16px;
    font-weight: 700;
    color: var(--pd-white);
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.pd-cta__phone:hover {
    background: #775b4f;
    color: var(--pd-white);
	transform: translateY(-2px);
}
.pd-cta__phone svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.75);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ===== Ссылка ===== */
.pd-link {
    color: var(--pd-brown);
    text-decoration: underline;
}
.pd-link:hover {
    color: var(--pd-brown-dark);
}

/* ===== Адаптив ===== */
@media (max-width: 900px) {
    .pd-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .pd-info-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .pd-hero {
        padding: 24px 20px;
    }
    .pd-hero__title {
        font-size: 21px;
        margin-bottom: 18px;
    }
    .pd-hero__facts {
		row-gap: 20px;
		column-gap: 40px;
		justify-content: flex-start;
    }
    .pd-hero__fact-text strong {
        font-size: 17px;
    }
    .pd-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .pd-feature-card {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
		flex-wrap: wrap;
    }

	.pd-feature-card__title {
		margin: 9px 0 0 5px;
	}

    .pd-feature-card__icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .pd-warning,
    .pd-cta {
		padding: 24px 30px;
    }
    .pd-cta__phones {
        flex-direction: column;
        align-items: center;
    }
    .pd-payment-methods {
        flex-direction: column;
    }
    .pd-payment-card {
        min-width: unset;
    }
    .pd-price-table {
        font-size: 14px;
    }
    .pd-price-table th,
    .pd-price-table td {
        padding: 8px 10px;
    }
}
@media (max-width: 480px) {
    .pd-hero__facts {
        flex-direction: column;
        gap: 14px;
    }

    .pd-hero__title {
        font-size: 19px;
    }

	.pd-section {
		margin: 60px 0px;
	}

	.pd-list {
		padding: 0 0px 0 30px;
	}

	.pd-info-item {
		background: #FAF3ED;
		padding: 18px 26px;
	}
}

/* End */
/* /payment-and-delivery/style.css?177832218012653 */
