/*
 * Profile tab: keep layout.css offsets for chrome UI.
 * - Desktop: .tab-content { margin-left: 36px } clears fixed left rail (layout.css, ≥768px).
 *   Do NOT set margin: 0 on #profile or it overrides that and content sits under the rail.
 * - Mobile: fixed .bottom-nav (layout.css) — bottom padding is on .tab-content in layout.css.
 * - Extra padding-top below header + safe-area; overflow-x clips grid blowout past viewport.
 */
#profile {
    /* width:auto: desktop .tab-content has margin-left:36px; width:100% overflows (same as #settings) */
    width: auto;
    max-width: none;
    align-self: stretch;
    box-sizing: border-box;
    flex: 1;
    /* Let the tab grow with content so #main-content (overflow-y: auto) scrolls the full page */
    min-height: min-content;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: var(--theme-profile-page-text);
    padding-top: calc(clamp(16px, 3vh, 28px) + env(safe-area-inset-top, 0px));
    /* Bottom padding: mobile from layout.css .tab-content (clears fixed bottom nav); desktop below */
    overflow-x: clip;
}

/* Mobile: height follows content; bottom clearance comes from layout.css .tab-content padding */
@media (max-width: 767.98px) {
    #profile {
        flex: 0 0 auto;
        flex-grow: 0;
    }

    #profile .profile-page {
        flex: 0 0 auto;
        flex-grow: 0;
        min-height: min-content;
    }
}

/* Desktop sidebar rail — match .tab-content padding-bottom: 40px from layout.css */
@media (min-width: 768px) {
    #profile {
        padding-bottom: max(24px, 40px);
        /* Mirror layout.css .tab-content margin-left: 36px so left/right gutters match */
        padding-right: calc(36px + clamp(12px, 4vw, 24px) + env(safe-area-inset-right, 0px));
    }
}

/* Full width within tab padding (left rail + .tab-content gutters) */
.profile-page {
    width: 100%;
    max-width: 100%;
    flex: 1;
    min-height: min-content;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
    padding-left: clamp(4px, 1.5vw, 16px);
    padding-right: clamp(4px, 1.5vw, 16px);
    box-sizing: border-box;
    overflow-x: clip;
}

/* Layout shells only — page gradient shows through; opaque surfaces stay on .profile-panel / .profile-banner-card / .profile-login-card */
#profile,
#profile .profile-page,
#profile .profile-sub-panel,
#profile .profile-layout,
#profile .profile-main-stack,
#profile .profile-aside-banner {
    background: transparent;
    box-shadow: none;
}

#profile .profile-login-message {
    background: transparent;
    box-shadow: none;
}

/* Two columns: aside (banner + identity) left | main (markets + reviews) right */
.profile-layout {
    display: grid;
    grid-template-columns: clamp(260px, 24vw, 420px) minmax(0, 1fr);
    /* auto row height so stacked panels extend page scroll (1fr caps height and hides content behind chrome) */
    grid-template-rows: auto;
    gap: clamp(16px, 3vw, 28px);
    /* Left user card stays its natural height; do not stretch to match the tall main column */
    align-items: start;
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    min-height: min-content;
    min-width: 0;
    margin: 0 auto;
}

.profile-aside-banner {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    align-self: start;
    width: 100%;
}

.profile-main-stack {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    max-width: 100%;
    min-height: min-content;
    overflow-x: hidden;
    /* Shared cap for reviews + collections scroll regions */
    --profile-scroll-panel-max: clamp(200px, 28vh, 360px);
}

.profile-banner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 420px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--theme-profile-banner-border);
    background: var(--theme-profile-banner-bg);
    box-shadow: var(--theme-profile-banner-shadow);
}

.profile-cover {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
}

.profile-aside-inner {
    position: relative;
    z-index: 1;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.profile-avatar-wrap {
    position: relative;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.profile-joined-row {
    margin-top: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.profile-joined-text {
    font-size: 0.88rem;
    color: var(--theme-text-muted);
    line-height: 1.4;
}

.profile-joined-text i {
    margin-right: 6px;
    color: var(--theme-accent-primary);
}

/* Collections panel: title + stats row, full-width underline like other profile panels */
.profile-collections-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    width: 100%;
    border-bottom: 2px solid var(--theme-profile-collections-header-border);
    padding-bottom: 4px;
    margin-bottom: 6px;
    box-sizing: border-box;
}

.profile-collections-title-link {
    margin-bottom: 0 !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    flex: 0 1 auto;
}

.profile-collections-header-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
}

.profile-eng-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--theme-profile-eng-stat-text);
    white-space: nowrap;
}

.profile-eng-stat i {
    color: var(--theme-profile-eng-icon);
    font-size: 0.88rem;
    width: 1em;
    text-align: center;
}

.profile-collections-header-stats .profile-eng-stat:nth-child(1) i {
    color: var(--theme-profile-stat-icon-up);
}

.profile-collections-header-stats .profile-eng-stat:nth-child(2) i {
    color: var(--theme-profile-stat-icon-down);
}

.profile-collections-header-stats .profile-eng-stat:nth-child(3) i {
    color: var(--theme-profile-stat-icon-star);
}

.profile-panel-reviews .profile-collections-header-stats .profile-eng-stat:nth-child(1) i {
    color: var(--theme-profile-stat-icon-up);
}

.profile-panel-reviews .profile-collections-header-stats .profile-eng-stat:nth-child(2) i {
    color: var(--theme-profile-stat-icon-down);
}

.profile-eng-stat-value {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    min-width: 1.1em;
}

.profile-eng-stat-label {
    font-size: 0.72rem;
    color: var(--theme-text-muted);
    font-weight: 500;
    text-transform: lowercase;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--theme-profile-avatar-ring);
    object-fit: cover;
    background: var(--theme-profile-avatar-bg);
    display: block;
}

.profile-identity {
    width: 100%;
    max-width: 320px;
}

.profile-field-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--theme-text-muted);
    margin: 12px 0 6px;
    text-align: left;
}

.profile-field-label:first-of-type {
    margin-top: 0;
}

.profile-field-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: var(--theme-profile-input-text);
    background: var(--theme-profile-input-bg);
    border: 1px solid var(--theme-profile-input-border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.profile-field-input:focus {
    border-color: var(--theme-profile-input-focus-border);
}

.profile-select {
    cursor: pointer;
}

.profile-field-display {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--theme-profile-display-text);
    text-align: left;
    padding: 4px 0;
}

.profile-field-display + .profile-field-label {
    margin-top: 14px;
}

#profileAccolades {
    padding-top: 10px;
}

/* Subscription plan chip — top-right of banner card (own profile only; .profile-edit-only) */
.profile-plan-corner {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    outline: none;
    border-radius: 8px;
    transition: transform 0.15s ease, filter 0.15s ease;
    max-width: calc(100% - 24px);
    justify-content: flex-end;
}

.profile-plan-corner:hover {
    transform: translateY(-1px);
    filter: brightness(1.07);
}

.profile-plan-corner:focus-visible {
    outline: 2px solid var(--theme-profile-input-focus-border);
    outline-offset: 2px;
}

.profile-plan-chip {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
}

.profile-plan-chip--pro {
    background: var(--theme-ach-premium-gradient);
    color: var(--theme-ach-premium-text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.profile-plan-chip--free {
    color: var(--theme-text-secondary);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-meta {
    margin-top: 14px;
    color: var(--theme-text-muted);
    font-size: 0.88rem;
    text-align: left;
}

.profile-meta i {
    margin-right: 6px;
    color: var(--theme-accent-primary);
}

.profile-theme-row {
    margin-top: 8px;
}

.profile-password-btn {
    margin-top: 14px;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--theme-profile-password-text);
    background: transparent;
    border: 1px solid var(--theme-profile-password-border);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.profile-password-btn:hover {
    background: var(--theme-profile-password-hover-bg);
    border-color: var(--theme-profile-password-hover-border);
    color: var(--theme-profile-password-hover-text);
}

.profile-country-select {
    cursor: pointer;
}

.profile-password-soon-msg {
    font-size: 0.9rem;
    color: var(--theme-text-muted);
    margin: 0 0 16px;
    line-height: 1.45;
}

.profile-save-btn {
    display: none;
    margin-top: 12px;
    width: 100%;
    padding: 11px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--theme-profile-save-text);
    background: linear-gradient(180deg, var(--theme-profile-save-gradient-start), var(--theme-profile-save-gradient-end));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: filter 0.2s, transform 0.1s;
}

.profile-save-btn.profile-save-btn--visible {
    display: block;
}

.profile-save-btn:hover {
    filter: brightness(1.06);
}

.profile-save-btn:active {
    transform: translateY(1px);
}

/* Read-only public profile: hide edit controls and achievement sub-tabs */
.profile-page.profile-readonly .profile-edit-only {
    display: none !important;
}

.profile-page.profile-readonly .profile-subtabs {
    display: none !important;
}

.profile-page:not(.profile-readonly) .profile-readonly-only {
    display: none !important;
}

.profile-page.profile-readonly .profile-readonly-only {
    display: block !important;
}

/* Stacked panels (left column) */
.profile-panel {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--theme-profile-panel-bg);
    border-radius: var(--theme-tab-surface-radius, 12px);
    border: 1px solid var(--theme-profile-panel-border);
    padding: 18px 20px 16px;
    box-shadow: var(--theme-profile-panel-shadow);
}

.profile-panel-markets {
    flex: 0 1 auto;
}

.profile-panel-reviews {
    flex: 0 0 auto;
}

.profile-panel-collections {
    flex: 0 0 auto;
}

/* Match cover theme on right-column panels (Markets / Reviews / Collections) */
#profileContent[data-profile-cover="blue"] .profile-main-stack .profile-panel {
    background: linear-gradient(145deg, #0a1a24 0%, #0c3d5c 50%, #065a7a 100%);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

#profileContent[data-profile-cover="blue"] .profile-main-stack .profile-panel-title-link {
    color: #7dd3fc;
    border-bottom-color: rgba(125, 211, 252, 0.45);
}

#profileContent[data-profile-cover="blue"] .profile-main-stack .profile-panel-title-link:hover {
    color: #e0f2fe;
    border-bottom-color: rgba(224, 242, 254, 0.65);
}

#profileContent[data-profile-cover="purple"] .profile-main-stack .profile-panel {
    background: linear-gradient(145deg, #1a0f24 0%, #3d2460 50%, #5b2d86 100%);
    border-color: rgba(186, 104, 200, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

#profileContent[data-profile-cover="purple"] .profile-main-stack .profile-panel-title-link {
    color: #e9d5ff;
    border-bottom-color: rgba(233, 213, 255, 0.45);
}

#profileContent[data-profile-cover="purple"] .profile-main-stack .profile-panel-title-link:hover {
    color: #faf5ff;
    border-bottom-color: rgba(250, 245, 255, 0.65);
}

#profileContent[data-profile-cover="aurora"] .profile-main-stack .profile-panel {
    background: linear-gradient(145deg, #12101c 0%, #1e2a44 45%, #3d1f2e 100%);
    border-color: rgba(233, 69, 96, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

#profileContent[data-profile-cover="aurora"] .profile-main-stack .profile-panel-title-link {
    color: #fda4af;
    border-bottom-color: rgba(253, 164, 175, 0.45);
}

#profileContent[data-profile-cover="aurora"] .profile-main-stack .profile-panel-title-link:hover {
    color: #ffe4e6;
    border-bottom-color: rgba(255, 228, 230, 0.65);
}

#profileContent[data-profile-cover="ember"] .profile-main-stack .profile-panel {
    background: linear-gradient(145deg, #1c0f0a 0%, #4a1a0a 40%, #6b2a12 100%);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

#profileContent[data-profile-cover="ember"] .profile-main-stack .profile-panel-title-link {
    color: #fdba74;
    border-bottom-color: rgba(253, 186, 116, 0.45);
}

#profileContent[data-profile-cover="ember"] .profile-main-stack .profile-panel-title-link:hover {
    color: #ffedd5;
    border-bottom-color: rgba(255, 237, 213, 0.65);
}

#profileContent[data-profile-cover="gold"] .profile-main-stack .profile-panel {
    background: linear-gradient(145deg, #1a1508 0%, #4a3a12 42%, #6e5818 100%);
    border-color: rgba(255, 215, 0, 0.32);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

#profileContent[data-profile-cover="gold"] .profile-main-stack .profile-panel-title-link {
    color: #fde68a;
    border-bottom-color: rgba(253, 230, 138, 0.5);
}

#profileContent[data-profile-cover="gold"] .profile-main-stack .profile-panel-title-link:hover {
    color: #fef9c3;
    border-bottom-color: rgba(254, 249, 195, 0.7);
}

#profileContent[data-profile-cover="gold"] .profile-main-stack .profile-empty-hint,
#profileContent[data-profile-cover="gold"] .profile-main-stack .profile-panel-subtitle {
    color: rgba(254, 243, 199, 0.82);
}

#profileContent[data-profile-cover="blue"] .profile-main-stack .profile-empty-hint,
#profileContent[data-profile-cover="blue"] .profile-main-stack .profile-panel-subtitle,
#profileContent[data-profile-cover="purple"] .profile-main-stack .profile-empty-hint,
#profileContent[data-profile-cover="purple"] .profile-main-stack .profile-panel-subtitle,
#profileContent[data-profile-cover="aurora"] .profile-main-stack .profile-empty-hint,
#profileContent[data-profile-cover="aurora"] .profile-main-stack .profile-panel-subtitle,
#profileContent[data-profile-cover="ember"] .profile-main-stack .profile-empty-hint,
#profileContent[data-profile-cover="ember"] .profile-main-stack .profile-panel-subtitle {
    color: rgba(255, 255, 255, 0.72);
}

#profileContent[data-profile-cover="gold"] .profile-main-stack .profile-collections-header-row {
    border-bottom-color: rgba(255, 215, 0, 0.35);
}

#profileContent[data-profile-cover="blue"] .profile-main-stack .profile-collections-header-row {
    border-bottom-color: rgba(0, 212, 255, 0.35);
}

#profileContent[data-profile-cover="purple"] .profile-main-stack .profile-collections-header-row {
    border-bottom-color: rgba(186, 104, 200, 0.35);
}

#profileContent[data-profile-cover="aurora"] .profile-main-stack .profile-collections-header-row {
    border-bottom-color: rgba(233, 69, 96, 0.35);
}

#profileContent[data-profile-cover="ember"] .profile-main-stack .profile-collections-header-row {
    border-bottom-color: rgba(255, 107, 53, 0.35);
}

/* Fixed max height: scroll inside body only when content exceeds */
.profile-panel-reviews > .profile-panel-body,
.profile-panel-collections > .profile-panel-body.profile-collections-list {
    flex: 0 1 auto;
    max-height: var(--profile-scroll-panel-max, clamp(200px, 28vh, 360px));
    min-height: 72px;
    overflow-x: hidden;
    overflow-y: auto;
}

.profile-panel-collections .profile-collections-header-row,
.profile-panel-reviews .profile-collections-header-row,
.profile-panel-collections .profile-panel-subtitle,
.profile-panel-collections .profile-collections-manage {
    flex-shrink: 0;
}

.profile-panel-title-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--theme-profile-panel-link);
    text-decoration: none;
    border-bottom: 2px solid var(--theme-profile-panel-link-border);
    padding-bottom: 4px;
    margin-bottom: 6px;
    transition: color 0.2s, border-color 0.2s;
}

.profile-panel-title-link:hover {
    color: var(--theme-profile-panel-link-hover);
    border-bottom-color: var(--theme-profile-panel-link-border-hover);
}

.profile-panel-subtitle {
    margin: 0 0 12px 0;
    font-size: 0.8rem;
    color: var(--theme-text-muted);
    line-height: 1.4;
}

.profile-panel-body {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.profile-empty-hint {
    margin: 0;
    color: var(--theme-text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.profile-empty-hint a {
    color: var(--theme-profile-panel-link);
    font-style: normal;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.profile-empty-hint a:hover {
    color: var(--theme-profile-panel-link-hover);
}

.profile-reviews-loading {
    text-align: center;
}

/* Reviews List */
.profile-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-review-item {
    background: var(--theme-profile-review-item-bg);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--theme-profile-review-item-border);
}

.p-review-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 5px;
    min-width: 0;
}

.p-review-product {
    font-weight: bold;
    color: var(--theme-profile-review-product);
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.p-review-product {
    cursor: pointer;
    text-decoration: underline;
    color: var(--theme-accent-primary);
    font-weight: 600;
}

.p-review-product:hover {
    color: var(--theme-accent-hover, var(--theme-accent-primary));
}

.p-review-rating {
    color: var(--theme-profile-review-rating);
}

.p-review-rating .review-star-half {
    opacity: 0.52;
    display: inline-block;
}

.delete-review-btn {
    background: transparent;
    border: none;
    color: var(--theme-text-panel-subtitle);
    cursor: pointer;
    font-size: 1.1em;
    padding: 0 5px;
    transition: color 0.2s;
}

.delete-review-btn:hover {
    color: var(--theme-profile-delete-hover);
}

.p-review-comment {
    color: var(--theme-profile-review-comment);
    font-size: 0.95em;
    margin-bottom: 8px;
    font-style: italic;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.p-review-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: var(--theme-profile-review-meta);
}

/* Pinned Markets */
.profile-pinned-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pinned-market-chip {
    background: var(--theme-profile-chip-bg);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.88em;
    color: var(--theme-profile-chip-text);
    border: 1px solid var(--theme-profile-chip-border);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    padding-right: 30px; /* room for ✕ button */
}

.pinned-market-chip:hover {
    background: var(--theme-profile-chip-hover-bg);
    border-color: var(--theme-profile-chip-hover-border);
}

.pinned-chip-x {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #718096;
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.pinned-chip-x:hover {
    color: #fc8181;
}

@media (max-width: 960px) {
    .profile-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .profile-aside-banner {
        grid-column: 1;
        grid-row: auto;
        order: -1;
    }

    .profile-main-stack {
        grid-column: 1;
        grid-row: auto;
    }

    .profile-banner-card {
        min-height: 360px;
    }
}

#profileLoginMessage {
    display: none;
}

.profile-login-message {
    padding: 40px 20px;
}

.profile-login-card {
    max-width: 420px;
    margin: 40px auto;
    padding: 32px 24px;
    background: var(--theme-profile-login-card-bg);
    border-radius: 12px;
    border: 1px solid var(--theme-profile-login-card-border);
    box-shadow: var(--theme-profile-login-card-shadow);
    text-align: center;
}

.profile-login-card h2 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}

.profile-login-subtitle {
    margin: 0 0 20px 0;
    color: var(--theme-profile-login-subtitle);
    font-size: 0.95rem;
}

.auth-btn.profile-login-button {
    background: var(--theme-profile-login-btn-bg);
    border: none;
    color: var(--theme-text-on-filled-primary);
    padding: 10px 30px;
    border-radius: 24px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--theme-profile-login-btn-shadow);
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.auth-btn.profile-login-button:hover {
    background: var(--theme-profile-login-btn-hover-bg);
    transform: translateY(-1px);
    box-shadow: var(--theme-profile-login-btn-shadow-hover);
}

.auth-btn.profile-login-button:active {
    transform: translateY(0);
    box-shadow: var(--theme-profile-login-btn-shadow-active);
}
