/* stylelint-disable no-empty-source */
.footer-main__text {
    text-align: center;
}

/* KF: h1 counters + reviews listing */
.kf-h1-count { font-weight: 400; opacity: .55; white-space: nowrap; }

.kf-reviews { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.kf-review {
    display: flex; gap: 20px; padding: 20px;
    border: 1px solid rgba(0,0,0,.08); border-radius: 12px;
}
.kf-review__product {
    flex: 0 0 120px; display: flex; flex-direction: column; gap: 8px;
    text-decoration: none; color: inherit; font-size: 13px; line-height: 1.35;
}
.kf-review__product img { max-width: 100%; height: auto; border-radius: 8px; }
.kf-review__product-name { display: block; }
.kf-review__body { flex: 1 1 auto; min-width: 0; }
.kf-review__head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 8px; }
.kf-review__author { font-weight: 600; }
.kf-review__date { opacity: .55; font-size: 13px; }
.kf-review__title { font-weight: 600; margin-bottom: 6px; }
.kf-review__text { line-height: 1.5; overflow-wrap: anywhere; }

@media (max-width: 640px) {
    .kf-review { flex-direction: column; gap: 12px; }
    .kf-review__product { flex-direction: row; align-items: center; }
    .kf-review__product img { width: 72px; }
}


/* KF: способы оплаты на /oplata/ */
.vd-pay {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 24px 0 28px;
}
.vd-pay__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 12px;
    background: #fff;
}
.vd-pay__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(49, 118, 209, .1);
    color: #3176D1;
}
.vd-pay__icon svg { width: 26px; height: 26px; display: block; }
.vd-pay__body { min-width: 0; }
.vd-pay__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
.vd-pay__item p { margin: 0; line-height: 1.5; }
.vd-pay__note { margin-top: 4px; }

@media (max-width: 760px) {
    .vd-pay { grid-template-columns: minmax(0, 1fr); gap: 14px; }
    .vd-pay__item { padding: 16px; gap: 13px; }
    .vd-pay__icon { flex-basis: 40px; width: 40px; height: 40px; border-radius: 10px; }
    .vd-pay__icon svg { width: 22px; height: 22px; }
}
