.success {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success__text {
    font-size: 14px;
    color: var(--fg-muted);
    text-align: center;
}

/* Копирование сервера */
.copy-row {
    display: flex;
    gap: 8px;
}

.copy-row__value {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-family: var(--mono);
    font-size: 14px;
    color: var(--fg);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    white-space: nowrap;
}

.copy-btn {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--fg-muted);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.copy-btn:hover {
    background: var(--bg);
    color: var(--fg);
    border-color: var(--border-focus);
}

.copy-btn--copied {
    color: var(--success-fg);
    border-color: var(--success-border);
    background: var(--success-bg);
}

/* Кнопки клиентов */
.stores {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stores__row {
    display: flex;
    gap: 8px;
}

.store {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--fg);
    background: var(--btn-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: background 0.15s;
    text-align: center;
}

.store:hover {
    background: var(--btn-bg-hover);
}

.store--wide {
    width: 100%;
}

/* Инструкция */
.instructions {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.instructions__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 12px;
}

.instructions__list {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.instructions__list li {
    counter-increment: step;
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.5;
}

.instructions__list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--fg-muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
}

@media (max-width: 480px) {
    .stores__row {
        flex-direction: column;
    }
}
