.arm-custom-login-form,
.arm-custom-register-form {
    margin: 0;
    max-width: 100%;
    width: 100%;
}
:root {
    --arm-flow-bg: linear-gradient(180deg, #fbf9f4 0%, #f7f4ee 100%);
    --arm-flow-card: rgba(255, 255, 255, 0.94);
    --arm-flow-card-soft: #f5f3ee;
    --arm-flow-sunken: #f0eee9;
    --arm-flow-stroke: rgba(196, 199, 199, 0.15);
    --arm-flow-text: #1b1c19;
    --arm-flow-muted: #62655d;
    --arm-flow-accent: #303131;
    --arm-flow-accent-dark: #474747;
    --arm-flow-shadow: 0 40px 80px rgba(27, 28, 25, 0.06);
}
.arm-field-group {
    margin-bottom: 15px;
}
.arm-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.arm-field-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.arm-field-input:focus {
    outline: none;
}
.arm-submit-group {
    display: flex;
}
.arm-button-align-left .arm-submit-group {
    justify-content: flex-start;
}
.arm-button-align-center .arm-submit-group {
    justify-content: center;
}
.arm-button-align-right .arm-submit-group {
    justify-content: flex-end;
}
.arm-button-align-justify .arm-submit-group {
    justify-content: flex-start;
}
.arm-button-align-justify .arm-submit-button {
    width: 100%;
}
.arm-submit-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.arm-submit-button:hover {
    background-color: #005177;
}
.arm-message-container {
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}
.arm-message-container.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.arm-message-container.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Profile Card Styles */
.arm-profile-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}
.arm-profile-cover {
    position: relative;
    background-color: #eee;
}
.arm-edit-cover-btn, .arm-edit-avatar-btn {
    position: absolute;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.arm-edit-cover-btn { top: 15px; right: 15px; }
.arm-edit-avatar-btn { bottom: 0; right: 0; }
.arm-edit-cover-btn:hover, .arm-edit-avatar-btn:hover { background: #fff; transform: scale(1.1); }

.arm-profile-avatar {
    position: relative;
    display: inline-block;
    z-index: 2;
}
.arm-profile-avatar img {
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.arm-profile-name {
    margin: 10px 0 5px;
    font-weight: 700;
}
.arm-profile-plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}
.arm-bio-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 10px;
}
.arm-profile-bio {
    line-height: 1.6;
    margin-bottom: 25px;
}
.arm-sexy-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}
.arm-sexy-button:hover { opacity: 0.8; }

/* Inline Editing Styles */
.arm-editable-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    min-width: 50px;
}
.arm-inline-edit-btn {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 999;
    transition: all 0.3s;
    flex-shrink: 0;
}
.arm-inline-edit-btn svg {
    display: block;
    width: 14px;
    height: 14px;
    stroke: #000;
}
.arm-editable-container .arm-inline-edit-btn {
    margin-left: 8px;
}
.arm-editable-container:hover .arm-inline-edit-btn, .arm-avatar-edit-trigger:hover {
    background: #000;
    color: #fff;
}
.arm-editable-container:hover .arm-inline-edit-btn svg, .arm-avatar-edit-trigger:hover svg {
    stroke: #fff;
}
.arm-profile-avatar {
    position: relative;
    display: inline-block;
}
.arm-profile-avatar .arm-inline-edit-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.arm-inline-input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    width: 100%;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
textarea.arm-inline-input {
    resize: vertical;
    min-height: 100px;
}

/* Header & Avatar Fixes */
.arm-profile-header {
    min-height: 200px;
    position: relative;
}
.arm-profile-avatar img, .arm-avatar-img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}
.arm-profile-plan-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Modal Styles */
.arm-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow-y: auto;
}
.arm-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}
.arm-modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.arm-cancel-crop {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-weight: 600;
}
#arm-cropper-container {
    width: 100%;
    height: 350px;
    margin: 0 auto;
}

.arm-setup-widget {
    background: var(--arm-flow-bg);
    border: 1px solid var(--arm-flow-stroke);
    border-radius: 28px;
    box-shadow: var(--arm-flow-shadow);
    color: var(--arm-flow-text);
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.arm-setup-widget::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(170, 92, 50, 0.16), transparent 32%),
        radial-gradient(circle at bottom left, rgba(198, 152, 101, 0.18), transparent 28%);
    pointer-events: none;
}
.arm-setup-widget > * {
    position: relative;
    z-index: 1;
}
.arm-setup-heading {
    font-size: 1.6rem;
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
}
.arm-setup-subheading {
    color: var(--arm-flow-muted);
    margin-bottom: 20px;
}
.arm-setup-empty,
.arm-setup-info-card {
    background: var(--arm-flow-card);
    border: 1px solid var(--arm-flow-stroke);
    border-radius: 20px;
    padding: 18px 20px;
    color: var(--arm-flow-muted);
    backdrop-filter: blur(10px);
}
.arm-setup-plan-grid,
.arm-setup-payment-gateways {
    display: grid;
    gap: 16px;
}
.arm-setup-plan-card,
.arm-setup-gateway-card,
.arm-setup-chip {
    appearance: none;
    border: 0;
    background: var(--arm-flow-card);
    border-radius: 10px;
    color: var(--arm-flow-text);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.arm-setup-plan-card,
.arm-setup-gateway-card {
    box-shadow: 0 14px 30px rgba(70, 35, 10, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    text-align: left;
}
.arm-setup-plan-grid {
    gap: 24px;
}
.arm-setup-plan-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,243,236,0.98) 100%);
    border-radius: 6px;
    box-shadow:
        0 32px 60px rgba(27, 28, 25, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.65);
    min-height: 220px;
    padding: 24px 24px 28px;
    position: relative;
    overflow: hidden;
}
.arm-setup-plan-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -60px auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(48, 49, 49, 0.08), rgba(48, 49, 49, 0));
    pointer-events: none;
}
.arm-setup-plan-card__topline {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}
.arm-setup-plan-card__eyebrow {
    color: rgba(27, 28, 25, 0.62);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.arm-setup-plan-card__check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(48, 49, 49, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease, transform 200ms ease;
}
.arm-setup-plan-card__check-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: transparent;
    transition: background 200ms ease;
}
.arm-setup-plan-card:hover,
.arm-setup-gateway-card:hover,
.arm-setup-chip:hover,
.arm-setup-plan-card.is-active,
.arm-setup-gateway-card.is-active,
.arm-setup-chip.is-active {
    box-shadow: 0 18px 40px rgba(118, 63, 27, 0.16);
    transform: translateY(-2px);
}
.arm-setup-plan-card.is-active,
.arm-setup-gateway-card.is-active,
.arm-setup-chip.is-active {
    background: linear-gradient(135deg, rgba(170, 92, 50, 0.14), rgba(255, 255, 255, 0.96));
}
.arm-setup-plan-card:hover {
    background:
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,246,240,0.98) 100%);
    box-shadow:
        0 40px 70px rgba(27, 28, 25, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.7);
}
.arm-setup-plan-card.is-active {
    background:
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,241,234,1) 100%);
    box-shadow:
        0 40px 80px rgba(27, 28, 25, 0.09),
        inset 0 1px 0 rgba(255,255,255,0.78);
}
.arm-setup-plan-card.is-active .arm-setup-plan-card__check {
    background: rgba(48, 49, 49, 0.16);
    transform: scale(1.05);
}
.arm-setup-plan-card.is-active .arm-setup-plan-card__check-dot {
    background: #303131;
}
.arm-setup-plan-card:focus-visible {
    outline: 0;
    box-shadow:
        0 0 0 4px rgba(48, 49, 49, 0.12),
        0 40px 80px rgba(27, 28, 25, 0.09);
}
.arm-setup-plan-card__name,
.arm-setup-plan-card__price {
    font-weight: 700;
}
.arm-setup-plan-card__price {
    color: #303131;
    font-family: "Noto Serif", serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}
.arm-setup-plan-card__desc {
    color: #54564f;
    line-height: 1.65;
    max-width: 30ch;
}
.arm-setup-plan-card__name {
    font-family: "Noto Serif", serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin-bottom: 6px;
}
.arm-setup-plan-card__badge {
    align-self: flex-start;
    background: rgba(48, 49, 49, 0.08);
    border-radius: 999px;
    color: #303131;
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    margin-top: auto;
    padding: 8px 12px;
    text-transform: uppercase;
}
.arm-setup-cycle-box,
.arm-setup-payment-mode {
    margin-top: 18px;
}
.arm-setup-cycle-title {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--arm-flow-muted);
}
.arm-setup-cycle-options,
.arm-setup-payment-mode-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.arm-setup-chip {
    background: #f0eee9;
    border-radius: 4px;
    box-shadow: none;
    font-family: "Inter", sans-serif;
    padding: 12px 16px;
}
.arm-setup-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.arm-setup-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--arm-flow-muted);
}
.arm-setup-field span {
    color: var(--arm-flow-text);
    font-size: 0.95rem;
    font-weight: 600;
}
.arm-setup-field input,
.arm-setup-field textarea,
.arm-setup-field select {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(116, 70, 33, 0.16);
    border-radius: 18px;
    box-sizing: border-box;
    color: var(--arm-flow-text);
    padding: 14px 16px;
    width: 100%;
}
.arm-setup-field textarea {
    resize: vertical;
}
.arm-setup-field--full {
    grid-column: 1 / -1;
}
.arm-setup-summary-card {
    background: rgba(37, 23, 13, 0.92);
    border-radius: 24px;
    color: #fff7ef;
    padding: 22px;
}
.arm-setup-summary-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}
.arm-setup-summary-row + .arm-setup-summary-row {
    border-top: 1px solid rgba(255, 247, 239, 0.12);
}
.arm-setup-summary-row span {
    color: rgba(255, 247, 239, 0.74);
}
.arm-setup-summary-row--total strong {
    color: #ffd7b8;
    font-size: 1.2rem;
}
.arm-setup-submit-wrap {
    margin-top: 18px;
}
.arm-setup-submit-button {
    background: linear-gradient(135deg, var(--arm-flow-accent) 0%, #c98354 100%);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(170, 92, 50, 0.22);
}
.arm-setup-submit-button:hover {
    background: linear-gradient(135deg, var(--arm-flow-accent-dark) 0%, #b96b3b 100%);
}
.arm-setup-payment-panel {
    margin-top: 18px;
}
.arm-setup-flow-message {
    margin-top: 16px;
}
@media (max-width: 767px) {
    .arm-setup-widget {
        border-radius: 22px;
        padding: 20px;
    }
    .arm-setup-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Editorial Canvas Overrides */
:root {
    --arm-flow-bg: linear-gradient(180deg, #fbf9f4 0%, #f7f4ee 100%);
    --arm-flow-card: rgba(255, 255, 255, 0.94);
    --arm-flow-card-soft: #f5f3ee;
    --arm-flow-sunken: #f0eee9;
    --arm-flow-stroke: rgba(196, 199, 199, 0.15);
    --arm-flow-text: #1b1c19;
    --arm-flow-muted: #62655d;
    --arm-flow-accent: #303131;
    --arm-flow-accent-dark: #474747;
    --arm-flow-shadow: 0 40px 80px rgba(27, 28, 25, 0.06);
}
.arm-setup-widget {
    background: var(--arm-flow-bg);
    border: 0;
    border-radius: 6px;
    box-shadow: var(--arm-flow-shadow);
    color: var(--arm-flow-text);
    font-family: "Inter", sans-serif;
    padding: 34px;
}
.arm-setup-widget::before {
    background:
        radial-gradient(circle at top right, rgba(48, 49, 49, 0.04), transparent 34%),
        radial-gradient(circle at bottom left, rgba(71, 71, 71, 0.03), transparent 26%);
}
.arm-setup-heading {
    color: var(--arm-flow-text);
    font-family: "Noto Serif", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 0.96;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.arm-setup-subheading {
    color: var(--arm-flow-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 46ch;
}
.arm-setup-empty,
.arm-setup-info-card,
.arm-setup-payment-panel .arm-setup-info-card,
.arm-setup-free-card {
    background: rgba(255, 255, 255, 0.82);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 24px 50px rgba(27, 28, 25, 0.04);
    color: var(--arm-flow-muted);
    line-height: 1.7;
    backdrop-filter: blur(20px);
}
.arm-setup-bank-details {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 24px 50px rgba(27, 28, 25, 0.04);
    padding: 22px;
}
.arm-setup-bank-details .arm-setup-subheading {
    margin-bottom: 20px;
    max-width: none;
}
.arm-setup-plan-grid,
.arm-setup-payment-gateways {
    gap: 24px;
}
.arm-setup-plan-card,
.arm-setup-gateway-card,
.arm-setup-chip {
    border: 0;
    color: var(--arm-flow-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.arm-setup-plan-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,243,236,0.98) 100%);
    border-radius: 6px;
    box-shadow: 0 32px 60px rgba(27, 28, 25, 0.06), inset 0 1px 0 rgba(255,255,255,0.65);
}
.arm-setup-plan-card:hover,
.arm-setup-plan-card.is-active {
    box-shadow: 0 40px 80px rgba(27, 28, 25, 0.09), inset 0 1px 0 rgba(255,255,255,0.78);
}
.arm-setup-plan-card.is-active {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,243,238,1) 100%);
}
.arm-setup-plan-card__name {
    color: var(--arm-flow-text);
    font-family: "Noto Serif", serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.02;
}
.arm-setup-plan-card__price {
    color: var(--arm-flow-accent);
    font-family: "Noto Serif", serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}
.arm-setup-plan-card__desc {
    color: #54564f;
    line-height: 1.7;
}
.arm-setup-plan-card__eyebrow,
.arm-setup-cycle-title,
.arm-setup-field span,
.arm-setup-summary-row span {
    color: rgba(27, 28, 25, 0.62);
    font-family: "Inter", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.arm-setup-chip {
    background: var(--arm-flow-sunken);
    border-radius: 4px;
    box-shadow: none;
    color: var(--arm-flow-text);
    font-size: 0.92rem;
}
.arm-setup-chip.is-active {
    background: linear-gradient(135deg, var(--arm-flow-accent) 0%, var(--arm-flow-accent-dark) 100%);
    color: #fbf9f4;
}
.arm-setup-gateway-card {
    background: rgba(255,255,255,0.82);
    border-radius: 4px;
    box-shadow: 0 24px 48px rgba(27, 28, 25, 0.05);
    font-family: "Noto Serif", serif;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    min-height: 92px;
}
.arm-setup-gateway-card.is-active {
    background: linear-gradient(135deg, var(--arm-flow-accent) 0%, var(--arm-flow-accent-dark) 100%);
    color: #fbf9f4;
}
.arm-setup-payment-panel {
    margin-top: 28px;
}
.arm-setup-field input,
.arm-setup-field textarea,
.arm-setup-field select {
    appearance: none;
    background: var(--arm-flow-sunken);
    border: 0;
    border-bottom: 1px solid rgba(196, 199, 199, 0.2);
    border-radius: 0;
    color: var(--arm-flow-text);
    font-family: "Inter", sans-serif;
    min-height: 54px;
    padding: 16px 4px 14px;
    transition: border-color 200ms ease, background 200ms ease;
}
.arm-setup-field input::placeholder,
.arm-setup-field textarea::placeholder {
    color: rgba(98, 101, 93, 0.7);
}
.arm-setup-field input:focus,
.arm-setup-field textarea:focus,
.arm-setup-field select:focus {
    background: var(--arm-flow-sunken);
    border-bottom-color: var(--arm-flow-accent);
    outline: none;
}
.arm-setup-field textarea {
    min-height: 120px;
}
.arm-setup-summary-card {
    background: linear-gradient(180deg, #303131 0%, #474747 100%);
    border-radius: 4px;
    color: #fbf9f4;
    padding: 26px 26px 18px;
    box-shadow: 0 40px 80px rgba(27, 28, 25, 0.12);
}
.arm-setup-summary-row strong {
    font-family: "Noto Serif", serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.arm-setup-summary-row--total strong {
    color: #ffffff;
    font-size: 1.6rem;
}
.arm-setup-submit-wrap {
    margin-top: 24px;
}
.arm-setup-submit-button {
    background: linear-gradient(135deg, var(--arm-flow-accent) 0%, var(--arm-flow-accent-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 24px 40px rgba(27, 28, 25, 0.12);
    color: #fbf9f4;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    min-height: 54px;
    text-transform: uppercase;
}
.arm-setup-submit-button:hover {
    background: linear-gradient(135deg, #1f2020 0%, #3b3c3c 100%);
}
.arm-copy-helper {
    left: -9999px;
    opacity: 0;
    position: fixed;
    top: 0;
}
.arm-setup-step-label,
.arm-setup-selection-label,
.arm-setup-selected-gateway__label,
.arm-setup-gateway-card__eyebrow {
    color: rgba(27, 28, 25, 0.58);
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.arm-setup-step-label {
    margin-bottom: 14px;
}
.arm-setup-payment-selection {
    margin-top: 10px;
}
.arm-setup-selection-label {
    margin-bottom: 16px;
}
.arm-setup-payment-gateways {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.arm-setup-gateway-card {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.66);
    border-radius: 4px;
    box-shadow: 0 18px 38px rgba(27, 28, 25, 0.035);
    gap: 8px;
    min-height: 74px;
    padding: 18px 20px;
    transform: none;
}
.arm-setup-gateway-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 48px rgba(27, 28, 25, 0.05);
    transform: translateY(-1px);
}
.arm-setup-gateway-card.is-active {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 56px rgba(27, 28, 25, 0.07);
    color: var(--arm-flow-text);
    transform: translateY(-1px);
}
.arm-setup-gateway-card__title {
    color: var(--arm-flow-text);
    display: block;
    font-family: "Noto Serif", serif;
    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.arm-setup-selected-gateway {
    align-items: baseline;
    column-gap: 12px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 18px;
    row-gap: 6px;
}
.arm-setup-selected-gateway__value {
    color: var(--arm-flow-text);
    font-family: "Noto Serif", serif;
    font-size: 1.22rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.arm-setup-bank-details {
    padding: 26px;
}
.arm-setup-copy-field {
    display: block;
    position: relative;
}
.arm-setup-copy-field input {
    padding-right: 52px;
}
.arm-copy-feedback {
    color: rgba(27, 28, 25, 0.62);
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 42px;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 180ms ease, transform 180ms ease;
}
.arm-copy-feedback.is-visible {
    opacity: 1;
    transform: translateY(calc(-50% - 1px));
}
.arm-setup-widget .arm-copy-button,
.arm-setup-widget button.arm-copy-button,
.arm-setup-widget button[type="button"].arm-copy-button {
    appearance: none;
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #1b1c19;
    cursor: pointer;
    display: inline-flex;
    float: none;
    font: inherit;
    font-size: 0;
    font-weight: 400;
    height: 34px;
    justify-content: center;
    line-height: 1;
    margin: 0;
    min-height: 34px;
    min-width: 34px;
    outline: none;
    padding: 0;
    position: absolute;
    right: 8px;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    top: 50%;
    transform: translateY(-50%);
    transition: color 200ms ease, transform 200ms ease, opacity 200ms ease;
    vertical-align: middle;
    white-space: nowrap;
    width: 34px;
    z-index: 2;
}
.arm-setup-widget .arm-copy-button svg {
    display: block;
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 18px;
}
.arm-setup-widget .arm-copy-button:hover,
.arm-setup-widget .arm-copy-button:focus,
.arm-setup-widget .arm-copy-button:active,
.arm-setup-widget .arm-copy-button.is-copied {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #000000;
    opacity: 0.72;
    transform: translateY(calc(-50% - 1px));
}
@media (max-width: 767px) {
    .arm-copy-feedback {
        right: 38px;
    }
    .arm-setup-widget .arm-copy-button {
        right: 6px;
    }
}
@media (max-width: 767px) {
    .arm-setup-widget {
        border-radius: 6px;
        padding: 20px;
    }
}
