/* ============================================================
   user-onboard-flow.css
   All onboarding styles: shell layout, stepper, step content.
   Covers UserOnboardFlow.razor and OnboardSteps.razor.
   ============================================================ */

/* ── Animations ───────────────────────────────────────────── */
@keyframes ob-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ob-slide-in-right {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Shell layout ─────────────────────────────────────────── */
.ob-shell-container {
    max-width: 100vw !important;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

.ob-shell-grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 0 !important;
    width: 100%;
    height: 100vh !important;
}

.ob-shell-image-col {
    padding: 0 !important;
    grid-column: 1 / 8;
    height: 100vh !important;
    overflow: hidden;
}

.ob-shell-image {
    width: 100%;
    height: 100%;
}

@keyframes parallaxZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.15); }
}

.ob-shell-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    animation: parallaxZoom 20s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform;
}

.ob-shell-content-col {
    padding: 0 !important;
    grid-column: 8 / 13;
    height: 100vh !important;
    background-color: var(--antologa-white) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden;
}

.ob-shell-content {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    overflow: hidden;
    margin: 0 auto;
}

/* ── Brand mark ───────────────────────────────────────────── */
.ob-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.ob-logo {
    height: 100%;
    width: 12rem;
    padding-bottom: 2rem;
}

.ob-brand-name {
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--antologa-primary);
    letter-spacing: -0.02em;
}

/* ── Step progress indicator ──────────────────────────────── */
.ob-progress-wrap {
    flex-shrink: 0;
    margin-bottom: 1.75rem;
}

.ob-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ob-progress-phase {
    font-family: Nunito, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ob-progress-count {
    font-family: Inter, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--antologa-primary);
}

.ob-progress-track {
    width: 100%;
    height: 3px;
    background-color: #eef2f6;
    border-radius: 9999px;
    overflow: hidden;
}

.ob-progress-fill {
    height: 100%;
    background-color: var(--antologa-primary);
    border-radius: 9999px;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Stepper overrides ────────────────────────────────────── */
/* Hide the default step-tab navigation */
.register-flow .mud-stepper-nav {
    display: none !important;
}

/* Strip default card-like chrome */
.register-flow.mud-stepper,
.register-flow .mud-paper {
    box-shadow: none !important;
    background: transparent !important;
}

/* Bound the scrollable step area */
.register-flow .mud-stepper-content {
    padding: 0 !important;
    max-height: 58vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #eef2f6 transparent;
}

.register-flow .mud-stepper-content::-webkit-scrollbar {
    width: 4px;
}

.register-flow .mud-stepper-content::-webkit-scrollbar-thumb {
    background: #eef2f6;
    border-radius: 9999px;
}

/* ── Step content ─────────────────────────────────────────── */
.ob-step-content {
    width: 100%;
    padding: 0.25rem 0;
    animation: ob-fade-in 0.28s ease both;
}

.ob-step-header {
    padding-bottom: 1.5rem;
    text-align: center;
}

.ob-step-title {
    font-family: Inter, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--antologa-primary);
    margin-bottom: 0.35rem;
}

.ob-step-subtitle {
    font-family: Nunito, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.6;
}

/* ── Navigation row ───────────────────────────────────────── */
.ob-nav-row {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 1.25rem;
    gap: 1rem;
}

.ob-nav-btn {
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    height: auto;
    min-width: 8rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ob-nav-btn:hover:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(7, 130, 130, 0.22);
}

.ob-nav-btn--next {
    min-width: 10rem;
}

.ob-nav-spinner {
    margin-right: 0.5rem;
}

/* ── Verification code inputs ─────────────────────────────── */
.ob-verify-code-row {
    display: flex;
    flex-direction: row;
    gap: 0.625rem;
    justify-content: center;
    width: 100%;
}

.ob-code-input {
    flex: 1;
    max-width: 3.5rem;
    text-align: center;
}

.ob-code-input input {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    height: 3.75rem;
}

.ob-resend-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ob-resend-text {
    font-family: Nunito, sans-serif;
    font-size: 0.875rem;
    color: #94a3b8;
}

.ob-resend-countdown {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--antologa-primary);
}

.ob-resend-btn {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: none;
}

/* ── Password hint ────────────────────────────────────────── */
.ob-password-hint {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--antologa-light-gray);
    border-radius: 0.75rem;
}

.ob-hint-icon {
    color: var(--antologa-primary) !important;
    font-size: 1rem !important;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.ob-hint-text {
    font-family: Nunito, sans-serif;
    color: #94a3b8;
    line-height: 1.5;
}

/* ── Terms and Conditions ─────────────────────────────────── */
.ob-tac-scroll-box {
    max-height: 14rem;
    overflow-y: auto;
    padding: 1.5rem;
    border: 1px solid var(--antologa-light-gray);
    border-radius: 1rem;
    background-color: var(--antologa-white);
}

.ob-tac-section-title {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--antologa-dark);
}

.ob-tac-body {
    font-family: Nunito, sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.7;
}

.ob-tac-alert {
    border-color: var(--antologa-primary) !important;
}

.ob-tac-checkbox {
    align-items: flex-start;
}

.ob-tac-checkbox-label {
    font-family: Nunito, sans-serif;
    font-size: 0.875rem;
    color: var(--antologa-dark);
}

/* ── Subscription plans ───────────────────────────────────── */
.ob-plan-list {
    width: 100%;
}

.ob-plan-card {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ob-plan-card:hover:not(.ob-plan-card--selected) {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.ob-plan-card--selected {
    border: 2px solid var(--antologa-primary);
    background-color: rgba(7, 130, 130, 0.02);
}

.ob-plan-card-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ob-plan-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.ob-plan-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    height: 1.5rem;
    margin-bottom: 0.25rem;
}

.ob-plan-name {
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--antologa-dark);
}

.ob-plan-description {
    font-family: Nunito, sans-serif;
    font-size: 0.8rem;
    color: #94a3b8;
}

.ob-plan-price-col {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.25rem;
    flex-shrink: 0;
}

.ob-plan-price {
    font-family: Inter, sans-serif;
    font-weight: 700;
    color: var(--antologa-primary);
}

.ob-plan-period {
    font-family: Nunito, sans-serif;
    color: #94a3b8;
}

.ob-plan-divider {
    margin: 0.75rem 0;
}

.ob-plan-features {
    width: 100%;
}

.ob-plan-feature-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.ob-plan-feature-icon {
    color: var(--antologa-primary) !important;
    font-size: 0.875rem !important;
    width: 0.875rem !important;
    flex-shrink: 0;
}

.ob-plan-feature-text {
    font-family: Nunito, sans-serif;
    font-size: 0.825rem;
    color: var(--antologa-dark);
}

.ob-plan-selected-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--antologa-primary) !important;
    font-size: 1.25rem !important;
}

.ob-plan-disclaimer {
    font-family: Nunito, sans-serif;
    color: #94a3b8;
    text-align: center;
    width: 100%;
}

/* ── Media upload ─────────────────────────────────────────── */
.ob-media-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
}

.ob-media-actions {
    flex: 1;
}

.ob-cover-preview {
    width: 100%;
    height: 8rem;
    border-radius: 12px;
    border: 1.5px dashed #eef2f6;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.ob-cover-preview:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.ob-cover-preview--filled {
    border-style: solid;
    border-color: var(--antologa-primary);
}

.ob-cover-preview-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.ob-cover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ob-cover-preview--filled:hover .ob-cover-overlay {
    opacity: 1;
}

.ob-cover-edit-icon {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.ob-cover-placeholder-icon {
    color: #94a3b8 !important;
    font-size: 2rem !important;
}

.ob-cover-placeholder-text {
    font-family: Nunito, sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* ── Address cascade ──────────────────────────────────────── */
.ob-address-cascade {
    width: 100%;
}

/* ── Account type selection cards ─────────────────────────── */
.account-type-step-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
}

.account-type-card {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 14px;
    padding: 0.875rem 1.125rem;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.account-type-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.07);
}

.account-type-card-selected {
    border: 2px solid var(--antologa-primary) !important;
    background-color: rgba(7, 130, 130, 0.03) !important;
}

.account-type-step-card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
}

.account-type-step-card-icon {
    color: var(--antologa-primary) !important;
    font-size: 1.5rem !important;
    flex-shrink: 0;
}

.account-type-step-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.account-type-step-card-title {
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--antologa-dark);
}

.account-type-step-card-description {
    font-family: Nunito, sans-serif;
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.4;
}

.account-type-step-card-arrow {
    color: var(--antologa-primary) !important;
    font-size: 1.25rem !important;
    flex-shrink: 0;
}

/* ── Card grid (interests, regions, travel style) ─────────── */
.psetup-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.625rem !important;
    width: 100%;
}

.psetup-option-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    padding: 0.875rem 0.5rem;
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    min-height: 4.75rem;
}

.psetup-option-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.psetup-option-card--selected {
    border: 2px solid var(--antologa-primary) !important;
    background-color: rgba(7, 130, 130, 0.04) !important;
}

.psetup-option-card-icon-wrap {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 10px;
    background-color: rgba(7, 130, 130, 0.08);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
}

.psetup-option-card-icon {
    color: var(--antologa-primary) !important;
    font-size: 1.2rem !important;
}

.psetup-option-card-label {
    font-family: Nunito, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--antologa-dark);
    line-height: 1.3;
}

/* ── Business type grid ───────────────────────────────────── */
.psetup-type-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.625rem !important;
    width: 100%;
}

.psetup-type-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.psetup-type-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.psetup-type-card--selected {
    border: 2px solid var(--antologa-primary) !important;
    background-color: rgba(7, 130, 130, 0.04) !important;
}

.psetup-type-card-icon {
    color: var(--antologa-primary) !important;
    font-size: 1.75rem !important;
}

.psetup-type-card-label {
    font-family: Nunito, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--antologa-dark);
}

/* ── Category list (languages) ────────────────────────────── */
.psetup-category-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.psetup-category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1.5px solid #eef2f6;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.psetup-category-item:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.psetup-category-item--selected {
    border: 2px solid var(--antologa-primary) !important;
    background-color: rgba(7, 130, 130, 0.04) !important;
}

.psetup-category-item-label {
    font-family: Nunito, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--antologa-dark);
}

.psetup-category-item-check {
    color: var(--antologa-primary) !important;
    font-size: 1.125rem !important;
}

.psetup-category-item-radio {
    color: #cbd5e1 !important;
    font-size: 1.125rem !important;
}

/* ── Field groups & labels ────────────────────────────────── */
.psetup-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    position: relative;
}

.psetup-field-label {
    font-family: Inter, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--antologa-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.psetup-required-tag {
    font-family: Nunito, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--antologa-primary);
    background-color: rgba(7, 130, 130, 0.08);
    padding: 0.125rem 0.4rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Document upload areas ────────────────────────────────── */
.psetup-doc-upload {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.psetup-doc-upload:hover {
    border-color: var(--antologa-primary);
    background-color: rgba(7, 130, 130, 0.02);
}

.psetup-doc-upload--done {
    border-color: var(--antologa-primary) !important;
    border-style: solid !important;
    background-color: rgba(7, 130, 130, 0.04) !important;
}

.psetup-doc-upload-icon {
    color: #94a3b8 !important;
    font-size: 1.5rem !important;
    flex-shrink: 0;
}

.psetup-doc-hint {
    font-family: Nunito, sans-serif;
    font-size: 0.82rem;
    color: #94a3b8;
    flex: 1;
}

.psetup-doc-done-icon {
    color: var(--antologa-primary) !important;
    font-size: 1.25rem !important;
    flex-shrink: 0;
}

.psetup-doc-filename {
    font-family: Nunito, sans-serif;
    font-size: 0.82rem;
    color: var(--antologa-dark);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.psetup-doc-remove-btn {
    margin-left: auto;
    flex-shrink: 0;
}

/* ── Hidden native file input ─────────────────────────────── */
.psetup-hidden-input {
    position: fixed !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* ── Photo upload (traveler / guide) ──────────────────────── */
.psetup-photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #eef2f6;
}

.psetup-photo-avatar-preview {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background-color: #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.psetup-photo-avatar-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.psetup-photo-avatar-placeholder-icon {
    color: #94a3b8 !important;
    font-size: 3rem !important;
}

.psetup-photo-upload-btn {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: none !important;
    border-radius: 0.625rem !important;
}

.psetup-photo-remove-btn {
    font-family: Nunito, sans-serif;
    font-size: 0.8rem;
    color: #94a3b8 !important;
    text-transform: none !important;
}

.psetup-photo-hint {
    font-family: Nunito, sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

/* ── Logo preview box (Business / Agency) ─────────────────── */
.psetup-logo-preview-box {
    width: 5rem;
    height: 5rem;
    border-radius: 12px;
    background-color: #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid #e2e8f0;
}

.psetup-logo-preview-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* ── Registration success screen ──────────────────────────── */
.registration-success-container {
    animation: ob-fade-in 0.4s ease both;
}

.registration-success-icon-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.registration-success-icon {
    font-size: 4rem !important;
    color: var(--antologa-primary) !important;
}

.registration-success-title-section {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
}

.registration-success-title {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--antologa-primary);
    letter-spacing: -0.02em;
}

.registration-success-subtitle {
    font-family: Nunito, sans-serif;
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

.registration-success-message-box {
    background-color: #f8fafc !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    border: 1px solid #eef2f6 !important;
}

.registration-success-message-title {
    font-family: Inter, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--antologa-dark);
    padding-bottom: 0.5rem;
}

.registration-success-list-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.25rem 0;
}

.registration-success-list-icon {
    font-size: 0.825rem !important;
    color: var(--antologa-primary) !important;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.registration-success-list-text {
    font-family: Nunito, sans-serif;
    font-size: 0.875rem;
    color: var(--antologa-dark);
    line-height: 1.5;
}

.registration-success-primary-button {
    font-family: Inter, sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: none !important;
    border-radius: 0.75rem !important;
    height: auto !important;
    padding: 0.875rem 1.5rem !important;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
    .ob-shell-image-col {
        display: none !important;
    }

    .ob-shell-content-col {
        grid-column: 1 / 13 !important;
    }

    .ob-shell-content {
        padding: 1.75rem 1.5rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .ob-nav-btn {
        min-width: 6rem;
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }

    .ob-verify-code-row {
        gap: 0.375rem;
    }

    .ob-code-input input {
        font-size: 1.25rem;
        height: 3rem;
    }

    .ob-cover-preview {
        height: 6rem;
    }

    .register-flow .mud-stepper-content {
        max-height: 62vh;
    }

    .psetup-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .psetup-type-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .psetup-photo-avatar-preview {
        width: 5.5rem;
        height: 5.5rem;
    }
}
