body.wz-body {
    background-color: #ffffff;
    background-image: none;
    min-height: 100vh;
}

.wz-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wz-shell {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 18px 20px 24px;
    flex: 1 0 auto;
}

.wz-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.wz-back {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ececec;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}

.wz-back:hover {
    background: #f6f6f6;
}

.wz-step-label {
    font-size: 14px;
    color: #9a9a9a;
    font-weight: 500;
}

.wz-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 28px;
    width: 100%;
}

.wz-progress span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.wz-progress span.is-on {
    background: #111;
}

.wz-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: none;
    color: #111;
}

.wz-lead {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.5;
    color: #9a9a9a;
}

.wz-form {
    display: block;
}

.wz-panel[hidden] {
    display: none !important;
}

.wz-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 28px;
    cursor: pointer;
    position: relative;
}

.wz-logo input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.wz-logo-circle {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #ececec;
    background-size: cover;
    background-position: center;
    display: block;
}

.wz-logo-plus {
    position: absolute;
    top: 78px;
    left: calc(50% + 28px);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    font-weight: 500;
}

.wz-logo-caption {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

.wz-field {
    margin: 0 0 18px;
}

.wz-field label,
.wz-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 8px;
}

.wz-field input,
.wz-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f4f4f4;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    color: #111;
    outline: none;
}

.wz-field textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.45;
}

.wz-field input::placeholder,
.wz-field textarea::placeholder {
    color: #b0b0b0;
}

.wz-field input:focus,
.wz-field textarea:focus {
    background: #e9e9e9;
}

.wz-field input.is-invalid,
.wz-field textarea.is-invalid {
    box-shadow: inset 0 0 0 1px #c00;
}

.wz-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #a3a3a3;
}

.wz-err,
.wz-flash {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #c00;
}

.wz-flash {
    background: #fff1f1;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.wz-seg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #f0f0f0;
    border-radius: 12px;
    padding: 4px;
    gap: 2px;
}

.wz-seg label {
    margin: 0;
}

.wz-seg input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wz-seg span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #8a8a8a;
    cursor: pointer;
    padding: 0 6px;
    text-align: center;
}

.wz-seg input:checked + span {
    background: #111;
    color: #fff;
}

.wz-section {
    margin: 22px 0 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b0b0b0;
}

.wz-pick {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wz-pick:hover {
    background: #000;
}

.wz-picked {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f4f4f4;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cdek-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
}

.wz-pick .cdek-mark {
    background: #fff;
    color: #111;
}

.wz-picked strong {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

.wz-picked[hidden] {
    display: none !important;
}

.wz-review {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 8px 18px 14px;
    margin: 0 0 22px;
}

.wz-rev-sec {
    padding: 12px 0 6px;
}

.wz-rev-sec + .wz-rev-sec {
    border-top: 1px solid #e4e4e4;
}

.wz-rev-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b0b0b0;
    margin: 0 0 8px;
}

.wz-rev-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    font-size: 14px;
}

.wz-rev-row span {
    color: #9a9a9a;
    flex-shrink: 0;
}

.wz-rev-row strong {
    color: #111;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.wz-note {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #9a9a9a;
}

.wz-note a {
    color: #111;
    text-decoration: underline;
}

.wz-action {
    padding: 12px 0 8px;
    background: none;
    max-width: none;
    width: 100%;
    margin: 0;
}

.wz-next,
.wz-success-actions .wz-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}

.wz-next.is-ready {
    background: #111;
    cursor: pointer;
}

.wz-next.is-ready:hover,
.wz-next:hover {
    background: #000;
}

.wz-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    color: #888;
    font-weight: 700;
}

.wz-success-actions {
    margin-top: 12px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.wz-page .footer {
    max-width: 560px;
    margin: 8px auto 0;
    padding-left: 8px;
    padding-right: 8px;
    background: transparent;
}

.cdek-list-toggle,
.cdek-sidebar-close-mob {
    display: none;
}

.cdek-pvz-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
}

.cdek-pvz-card:hover,
.cdek-pvz-card.is-active {
    border-color: #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cdek-pvz-card-title {
    font-weight: 700;
    font-size: 12px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.cdek-pvz-card-addr {
    font-size: 11px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.35;
}

.cdek-pvz-card-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.wz-body .cdek-modal-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}

.wz-body .cdek-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wz-body .cdek-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #111;
}

.wz-body .cdek-head p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #888;
}

.wz-body .cdek-close {
    border: none;
    background: #f4f4f4;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #111;
}

.wz-body .cdek-close:hover {
    background: #ececec;
}

@media (max-width: 768px) {
    .wz-title {
        font-size: 28px;
    }

    .wz-shell {
        padding: 14px 16px 16px;
    }

    .cdek-modal {
        height: 100% !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 0 !important;
    }

    .cdek-modal-body {
        flex-direction: column !important;
    }

    .cdek-map-container {
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
        flex: 0 0 auto !important;
        height: auto !important;
    }

    .cdek-map-container #cdekMap {
        height: 36vh !important;
        min-height: 200px;
    }

    .cdek-search-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        padding: 10px 12px 8px;
        box-sizing: border-box;
    }

    .cdek-list-toggle,
    .cdek-sidebar-close-mob {
        display: none !important;
    }

    .cdek-sidebar {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: auto !important;
        flex: 1 1 auto !important;
        min-height: 0;
        border-left: none !important;
        border-top: 1px solid #eaeaea;
        transform: none !important;
        z-index: auto;
    }

    .cdek-sidebar.open {
        transform: none !important;
    }
}

.wz-promo-ask {
    margin-top: 22px;
    padding: 16px;
    background: #f6f6f6;
    border: 1px solid #ececec;
    border-radius: 8px;
}

.wz-promo-ask-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.wz-promo-ask-text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.wz-promo-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wz-promo-opt {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    cursor: pointer;
}

.wz-promo-opt:has(input:checked) {
    border-color: #111;
}

.wz-promo-opt input {
    margin-top: 3px;
    flex-shrink: 0;
}

.wz-promo-opt strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.wz-promo-opt small {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: #666;
}
