/* ============================================================
   Auth Styles – I Love That Track
   ============================================================ */

/* ── Sign In button (header) ─────────────────────────────────── */
.btn-sign-in {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.btn-sign-in:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

/* ── Avatar + User Menu ──────────────────────────────────────── */
.auth-user {
    position: relative;
}

.auth-avatar-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.auth-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.auth-nav-label {
    display: none;
}

.auth-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: none;
}

.auth-user.open .auth-user-dropdown {
    display: block;
}

.auth-user-dropdown a {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.auth-user-dropdown a:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.auth-user-info {
    padding: 8px 12px 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4px;
    word-break: break-all;
}

/* ── Pending Registration Banner ────────────────────────────── */
.pending-reg-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 10px 16px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pending-reg-text strong {
    color: var(--text-primary);
}

.pending-reg-banner a {
    color: var(--accent-primary);
    white-space: nowrap;
}

.pending-reg-close:hover {
    color: var(--text-primary);
}

/* ── Guest Promo (unified limit + benefits) ─────────────────── */
.guest-promo {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.07) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.22);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.guest-promo--exhausted {
    border-color: rgba(239, 68, 68, 0.4);
}

.guest-promo__limit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.guest-promo__counter {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.guest-promo__counter strong {
    color: var(--text-primary);
}

.guest-promo__track {
    height: 5px;
    background: var(--border-color);
    border-radius: 3px;
    margin-bottom: 12px;
}

.guest-promo__fill {
    height: 100%;
    border-radius: 3px;
    background: var(--accent-gradient);
    transition: width 0.4s ease;
}

.guest-promo--exhausted .guest-promo__fill {
    background: #ef4444;
}

.guest-promo__limit--ai {
    margin-top: 8px;
}

.guest-promo__track--ai {
    margin-bottom: 12px;
}

.guest-promo__benefits {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.guest-promo__benefit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.guest-promo__benefit svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.guest-promo__soon {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-primary);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
}

.guest-promo__cta {
    display: block;
    width: 100%;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.2s;
}

.guest-promo__cta:hover {
    opacity: 0.88;
}

/* ── Auth Modal ──────────────────────────────────────────────── */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal[hidden] {
    display: none;
}

.auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.auth-modal-dialog {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.auth-modal-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.auth-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ── Auth Steps ──────────────────────────────────────────────── */
.auth-step[hidden] {
    display: none;
}

/* ── Auth Tabs ───────────────────────────────────────────────── */
.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    gap: 0;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    margin-bottom: -1px;
}

.auth-tab:hover {
    color: var(--text-primary);
}

.auth-tab.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent-primary);
    font-weight: 600;
}

.auth-tab-panel[hidden] {
    display: none;
}

/* ── Email Chip (set-password / reset-password pages) ────────── */
.auth-email-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.auth-email-chip svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* ── Google Button ───────────────────────────────────────────── */
.auth-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.auth-google-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.auth-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── Divider ─────────────────────────────────────────────────── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* ── Auth Form ───────────────────────────────────────────────── */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: var(--accent-primary);
    background: var(--bg-card-hover);
}

.auth-input::placeholder {
    color: var(--text-muted);
}

.auth-error {
    color: #f87171;
    font-size: 0.85rem;
    display: none;
}

.auth-error.visible {
    display: block;
}

.auth-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.auth-legal a {
    color: var(--accent-primary);
}

/* ── Check Email Step ────────────────────────────────────────── */
.auth-check-email__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.auth-check-email__email {
    color: var(--accent-primary);
    font-weight: 500;
}

/* ── Back Button ─────────────────────────────────────────────── */
.auth-back {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition-fast);
}

.auth-back:hover {
    color: var(--text-primary);
}

/* ── Marketing Consent Modal ─────────────────────────────────── */
.auth-consent-actions {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.btn-consent-yes {
    flex: 1;
    padding: 12px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-lg);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.btn-consent-no {
    flex: 1;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-consent-no:hover {
    color: var(--text-primary);
}

/* ── Set/Reset Password pages ───────────────────────────────── */
.setpw-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 14px;
}

.setpw-notice::before {
    content: '👉';
    flex-shrink: 0;
}

@keyframes setpwFlash {
    0%   { border-color: var(--border-color); box-shadow: none; }
    40%  { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
    100% { border-color: var(--border-color); box-shadow: none; }
}

.setpw-card-flash {
    animation: setpwFlash 0.7s ease forwards;
}

/* ── Profile Page ────────────────────────────────────────────── */
.profile-page {
}

.profile-page .header {
    margin-bottom: 32px;
}

.profile-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-bottom: 16px;
}

.profile-section--danger {
    border-color: rgba(239, 68, 68, 0.25);
}

.profile-section__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.profile-section--danger .profile-section__title {
    color: #f87171;
}

/* ── User Info ───────────────────────────────────────────────── */
.profile-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-user-info {
    flex: 1;
    min-width: 0;
}

.profile-user-email {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-all;
}

.profile-user-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.profile-user-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.profile-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 2px 8px;
}

/* ── Stats ───────────────────────────────────────────────────── */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.profile-stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
}

.profile-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.profile-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.profile-stat-total {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ── Empty history state ─────────────────────────────────────── */
.profile-empty-history {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 40px 24px;
    color: var(--text-muted);
    text-align: center;
}
.profile-empty-history svg { opacity: 0.35; }
.profile-empty-history p { font-size: 0.9rem; margin: 0; }
.profile-empty-cta {
    display: inline-block;
    margin-top: 4px;
    padding: 7px 20px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}
.profile-empty-cta:hover { opacity: 0.9; }

/* ── Search History ─────────────────────────────────────────── */
.profile-section--history { padding: 0; overflow: clip; }
.profile-section--history .profile-section__title { padding: 20px 24px 16px; }

/* Pill tabs */
.profile-history-tabs {
    display: flex;
    gap: 6px;
    padding: 0 24px 16px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
}
.profile-history-tabs::-webkit-scrollbar { display: none; }

.profile-history-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.profile-history-tab:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}
.profile-history-tab.active {
    background: rgba(99, 102, 241, 0.15);
    color: #a78bfa;
    border-color: rgba(99, 102, 241, 0.35);
}
.profile-history-tab-count {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 0.72rem;
    font-weight: 700;
    color: inherit;
    opacity: 0.8;
}
.profile-history-tab.active .profile-history-tab-count {
    background: rgba(139, 92, 246, 0.25);
    opacity: 1;
}

/* History table */
.profile-history-panel { padding: 0; }
.profile-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.profile-history-table thead th {
    padding: 10px 16px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}
.profile-history-table thead th:last-child { text-align: right; }
.profile-history-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.1s;
}
.profile-history-table tbody tr:last-child { border-bottom: none; }
.profile-history-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.profile-history-table td { padding: 11px 16px; vertical-align: middle; }

.profile-history-query {
    color: var(--text-primary);
    font-weight: 500;
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.profile-history-datetime {
    color: var(--text-muted);
    white-space: nowrap;
    text-align: right;
}
.history-date { display: block; font-size: 0.82rem; }
.history-time { display: block; font-size: 0.75rem; color: var(--text-muted); opacity: 0.7; }
.history-tz { font-size: 0.68rem; opacity: 0.6; }
.profile-history-action { width: 1%; white-space: nowrap; padding-right: 8px; }
.profile-history-btn {
    display: inline-block;
    padding: 5px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.profile-history-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}

/* ── Country Picker ──────────────────────────────────────────── */
.country-picker {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    align-self: flex-start;
}

.country-picker__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}
.country-picker__btn:hover,
.country-picker.open .country-picker__btn {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}
.country-picker__chevron {
    opacity: 0.5;
    transition: transform 0.15s;
    flex-shrink: 0;
}
.country-picker.open .country-picker__chevron { transform: rotate(180deg); opacity: 0.8; }

.country-picker__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 300;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.country-picker__dropdown[hidden] { display: none; }

.country-picker__list {
    max-height: 220px;
    overflow-y: auto;
    padding: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}
.country-picker__list::-webkit-scrollbar { width: 4px; }
.country-picker__list::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 2px; }

.country-picker__option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
}
.country-picker__option:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.country-picker__option.active { color: var(--accent-primary); font-weight: 600; }
.country-picker__option-sub { color: var(--text-muted); font-size: 0.8rem; }
.country-picker__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    padding-left: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: default;
    color: var(--text-muted);
    opacity: 0.7;
}
.profile-tooltip:hover { opacity: 1; }
.profile-tooltip__text {
    display: none;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
    pointer-events: none;
}
.profile-tooltip:hover .profile-tooltip__text,
.profile-tooltip:focus .profile-tooltip__text { display: block; }

/* ── Change Password Form ────────────────────────────────────── */
.profile-pw-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-pw-success {
    font-size: 0.85rem;
    color: #4ade80;
    display: none;
}

.profile-pw-success.visible {
    display: block;
}

.profile-pw-error {
    font-size: 0.85rem;
    color: #f87171;
    display: none;
}

.profile-pw-error.visible {
    display: block;
}

/* ── Delete Account ──────────────────────────────────────────── */
.profile-delete-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-danger {
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: var(--radius-lg);
    color: #f87171;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-danger:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.6);
}

/* ── Delete Confirm Modal (inline) ──────────────────────────── */
.profile-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.profile-confirm-overlay[hidden] {
    display: none;
}

.profile-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.profile-confirm-dialog {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 100%;
    max-width: 360px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.profile-confirm-dialog p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.profile-confirm-actions {
    display: flex;
    gap: 8px;
}

.btn-confirm-delete {
    flex: 1;
    padding: 12px;
    background: #ef4444;
    border: none;
    border-radius: var(--radius-lg);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.btn-confirm-delete:hover {
    background: #dc2626;
}

.btn-confirm-cancel {
    flex: 1;
    padding: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-confirm-cancel:hover {
    color: var(--text-primary);
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .signup-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-modal-dialog {
        padding: 24px;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
