/**
 * PT Account Hubs — Tab Navigation Styles
 * Loaded on is_account_page() only.
 */

/* ── Hub wrapper ──────────────────────────────────────────────────────────── */
.pt-hub-tabs {
    width: 100%;
}

/* ── Tab nav strip ────────────────────────────────────────────────────────── */
.pt-hub-tab-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    background: #fff;
    margin: 0 0 28px;
    padding: 0;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.pt-hub-tab-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* ── Individual tab links ─────────────────────────────────────────────────── */
.pt-hub-tab-link {
    display: inline-block;
    padding: 12px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.pt-hub-tab-link:hover {
    color: #111;
    text-decoration: none;
}

.pt-hub-tab-link--active {
    color: #111;
    font-weight: 700;
    border-bottom-color: #111;
    pointer-events: none;
}

/* ── Tab content area ─────────────────────────────────────────────────────── */
.pt-hub-tab-content {
    width: 100%;
}

/* ── Link card (Login & Password / Addresses tabs) ────────────────────────── */
.pt-hub-link-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 480px;
}

.pt-hub-link-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.pt-hub-link-card__desc {
    font-size: 0.85rem;
    color: #777;
    margin: 0 0 20px;
    line-height: 1.5;
}

.pt-hub-link-card__btn {
    display: inline-block;
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.pt-hub-link-card__btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .pt-hub-tab-link {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .pt-hub-link-card {
        padding: 20px;
    }
}
